

 .card-color{
    height: 100px;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    font-size: 1rem;
    /*font-weight: bold;*/
}

.color1{ background:#2196F3; }
.color2{ background:#1565C0; }
.color3{ background:#00BFA5; }
.color4{ background:#7CB342; }
.color5{ background:#FFD600; color:#333; }
.color6{ background:#FF5722; }
.color7{ background:#8E24AA; }
.color8{ background:#7E57C2; }
.color9{ background:#D81B60; }
 
/*******TABLAS*******/
.schedule-container{
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.day-title{
    text-align: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 4px;

    background: linear-gradient(
        90deg,
        #000000,
        #000c5f,
        #3f51b5
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin-bottom: 20px;
}

.schedule-table{
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.schedule-table th,
.schedule-table td{
    border: 1px solid #444;
    text-align: center;
    padding: 10px;
    font-family: Arial, sans-serif;
}

.program-title{
    background: #ffff00;
    color: #000;
    font-size: 1rem;
    font-weight: bold;
    font-family: "Times New Roman", serif;
    padding: 15px !important;
}

.schedule-table td{
    font-size: 1 rem;
}
/***************/
 
        :root{
            --primary-dark: #001A72;
            --primary-light: #4158C9;
        }

        .navbar-custom{
            background: linear-gradient(
                90deg,
                var(--primary-dark),
                var(--primary-light)
            );
        }

        .navbar-brand{
            font-weight: 700;
            color: white !important;
        }

        .navbar-nav .nav-link{
            color: rgba(255,255,255,.9) !important;
            font-weight: 500;
            margin-left: 10px;
            transition: .3s;
        }

        .navbar-nav .nav-link:hover{
            color: #fff !important;
            transform: translateY(-2px);
        }

        .btn-login{
            border: 2px solid white;
            color: white;
        }

        .btn-login:hover{
            background: white;
            color: var(--primary-dark);
        }
        
        
        :root{
    --primary-dark: #001A72;
    --primary-light: #4158C9;
}

.hero-section{
    background: url('img/imghero-academy.jpg') center center/cover no-repeat;
    min-height: 450px;
    position: relative;
}

.hero-overlay{
    background: linear-gradient(
        rgba(0, 26, 114, 0.65),
        rgba(65, 88, 201, 0.55)
    );

    min-height: 450px;
    display: flex;
    align-items: center;
}

.min-vh-75{
    min-height: 75vh;
}

.hero-badge{
    display: inline-block;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-title{
    color: white;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
}

.hero-description{
    color: rgba(255,255,255,.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 20px;
}

.hero-descrip{
    color: rgba(255,255,255,.9) !important;
    font-size: 2rem !important;
    max-width: 600px !important;
    margin-bottom: 20px !important;
}

.btn-primary-custom{
    background: white;
    color: var(--primary-dark);
    border: none;
    font-weight: 600;
    padding: 12px 28px;
}



@media (max-width: 768px){

    .hero-section,
    .hero-overlay{
        min-height: 600px;
    }

    .hero-title{
        font-size: 2.5rem;
    }

    .hero-description{
        font-size: 1rem;
    }
}
/*****footer***/

.footer-custom{
    background: #001033;
    padding: 25px 0;
}

.footer-box{
    background: #04163f;
    color: #8c8c8c;
    text-align: center;
    padding: 22px;
    border-radius: 10px;
    font-size: 1.1rem;
     position: absolute;
     visibility:hidden;
      bottom:0;
}

.btn-top{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);

    width: 50px;
    height: 50px;

    background: white;
    color: #333;

    border-radius: 4px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    box-shadow: 0 0 20px rgba(255,255,255,.5);
}

.btn-top:hover{
    color: #001A72;
}


/**banner*/
@media (max-width: 768px){
   .footer-custom{
        display:block;
    }
    .btn-mobile{
        font-size: 0.8rem;
        padding: 8px 6px;
    }

}
.btn-primary-custom:hover{
    background-color: red;
    color: white;
    border-color: red;
}
/*
.btn-primary-custom:hover{
    background: #f2f2f2;
    color: var(--primary-dark);
}
*/
