*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

:root{
    --azul:#0d6efd;
    --azul-oscuro:#082c5c;
    --negro:#111827;
    --gris:#f5f5f5;
    --blanco:#ffffff;
}

/* TOPBAR */

.topbar{
    background: var(--azul-oscuro);
    padding: 10px 0;
}

.topbar-content{
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.topbar-item{
    color: white;
    font-size: 14px;
}

.topbar-item i{
    margin-right: 8px;
}

/* NAVBAR */

.navbar-custom{
    background: white;
    padding: 3px 0;
}
.navbar-brand img{
    height: 90px;
}

.navbar-nav{
    gap: 20px;
}

.nav-link{
    color: var(--negro);
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover{
    color: var(--azul);
}

.nav-link.active{
    color: var(--azul);
}
/* HERO */

.hero{
    height: 90vh;

    background-image:
    linear-gradient(
    90deg,
    rgba(255,255,255,0.68) 12%,
    rgba(255,255,255,0.15) 40%,
    rgba(0,0,0,0.22) 100%
    ),
    url('../img/banners/banner.jpg');

    background-size: cover;

    /* MOVER CAMIÓN MÁS A LA DERECHA */
    background-position: left center;

    background-repeat: no-repeat;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;
}

/* EFECTO CINEMATOGRÁFICO */

.hero::before{
    content: '';

    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        rgba(0,0,0,0.06),
        rgba(0,0,0,0.06)
    );

    backdrop-filter:
    saturate(1.8)
    contrast(1.15)
    brightness(1.02);

    z-index: 1;
}

/* CONTENIDO */

.hero-content{
    position: relative;
    z-index: 2;

    max-width: 650px;
}

/* TITULO */

.hero-content h1{
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;

    color: #111827;
}

.hero-content h1 span{
    color: #0d6efd;
}

/* TEXTO */

.hero-content p{
    margin-top: 30px;

    font-size: 1.5rem;

    color: #555;

    line-height: 1.6;
}

/* BOTONES */

.hero-buttons{
    display: flex;
    gap: 20px;

    margin-top: 40px;
}

/* BOTON AZUL */

.btn-hero-primary{
    background: #0d6efd;

    color: white;

    padding: 16px 38px;

    border-radius: 50px;

    font-weight: 600;

    transition: 0.3s;
}

.btn-hero-primary:hover{
    background: #082c5c;

    transform: translateY(-3px);
}

/* BOTON OUTLINE */

.btn-hero-outline{
    border: 2px solid #d4d4d4;

    color: #111827;

    padding: 16px 38px;

    border-radius: 50px;

    font-weight: 600;

    transition: 0.3s;

    background: rgba(255,255,255,0.55);

    backdrop-filter: blur(5px);
}

.btn-hero-outline:hover{
    background: #111827;

    color: white;

    transform: translateY(-3px);
}
/* BENEFITS */

.benefits{
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.benefits-wrapper{
    background: linear-gradient(
        135deg,
        #082c5c,
        #0b3d7a
    );

    border-radius: 22px;

    padding: 35px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.benefit-item{
    display: flex;
    align-items: flex-start;
    gap: 18px;

    width: 25%;

    padding-right: 25px;

    border-right: 1px solid rgba(255,255,255,0.15);
}

.no-border{
    border-right: none;
}

.benefit-icon i{
    color: white;
    font-size: 2.2rem;
}

.benefit-text h4{
    color: white;

    font-size: 1rem;

    font-weight: 700;

    margin-bottom: 10px;
}

.benefit-text p{
    color: rgba(255,255,255,0.75);

    font-size: 0.9rem;

    line-height: 1.5;

    margin: 0;
}

/* =========================================
   VALUES
========================================= */

.values{
    padding: 120px 0;

    background: #f8fafc;
}

/* GRID */

.values-grid{
    display: flex;

    flex-direction: column;

    gap: 35px;

    margin-top: 70px;

    max-width: 1000px;

    margin-inline: auto;
}

/* CARD */

.value-card{
    background: white;

    padding: 45px 50px;

    border-radius: 25px;

    display: flex;

    align-items: flex-start;

    gap: 35px;

    transition: 0.35s;

    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.value-card:hover{
    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* ICON */

.value-icon{
    width: 90px;
    height: 90px;

    margin: 0 auto 30px;

    border-radius: 50%;

    background: #eff6ff;

    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i{
    font-size: 2.2rem;

    color: #0d6efd;
}

/* TITLE */

.value-card h3{
    font-size: 1.8rem;

    font-weight: 700;

    margin-bottom: 20px;

    color: #111827;
}

/* TEXT */

.value-card p{
    color: #666;

    line-height: 1.8;

    margin: 0;
}
.value-card-content h3{
    font-size: 1.8rem;

    font-weight: 700;

    margin-bottom: 15px;

    color: #111827;
}

.value-card-content p{
    color: #666;

    line-height: 1.8;

    margin: 0;
}
/* COURSES */

.courses{
    padding: 10px 0 100px;
}

.section-title{
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2{
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
}

.section-title h2 span{
    color: #0d6efd;
}

/* GRID */

.courses-grid{
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

/* CARD */

.course-card{
    background: white;

    border-radius: 18px;

    overflow: hidden;

    transition: 0.35s;

    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.course-card:hover{
    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}
/* COURSE LIST */

.course-list{
    margin-bottom: 25px;
}

.course-list li{
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 12px;

    color: #666;

    line-height: 1.5;

    font-size: 0.95rem;
}

.course-list li i{
    color: #0d6efd;

    margin-top: 4px;

    font-size: 0.8rem;
}
/* CAPACITACION CARD */

.capacitacion-wrapper{
    display: flex;

    justify-content: center;

    margin-top: 50px;
}

.capacitacion-card{
    width: 700px;

    display: flex;

    align-items: stretch;

    overflow: hidden;
}

.capacitacion-card .course-image{
    width: 45%;

    height: auto;
}

.capacitacion-card .course-content{
    width: 55%;
}

/* IMAGE */

.course-image{
    height: 220px;

    overflow: hidden;
}

.course-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: 0.4s;
}

.course-card:hover .course-image img{
    transform: scale(1.08);
}

/* CONTENT */

.course-content{
    padding: 30px 25px;
}

.course-content h3{
    font-size: 1.5rem;

    font-weight: 700;

    margin-bottom: 15px;

    color: #111827;
}

.course-content p{
    color: #666;

    line-height: 1.6;

    margin-bottom: 25px;
}

/* BUTTON */

.course-btn{
    display: inline-block;

    background: #0d6efd;

    color: white;

    padding: 12px 25px;

    border-radius: 40px;

    font-size: 0.9rem;

    font-weight: 600;

    transition: 0.3s;
}

.course-btn:hover{
    background: #082c5c;

    transform: translateY(-3px);
}
/* =========================================
   COURSE MODAL
========================================= */

.course-modal{
    border: none;

    border-radius: 35px;

    overflow: hidden;

    position: relative;

    background: white;
}

/* CLOSE BUTTON */

.course-close{
    position: absolute;

    top: 25px;
    right: 25px;

    z-index: 20;

    background: white;

    border-radius: 50%;

    padding: 10px;

    opacity: 1;
}

/* GRID */

.course-modal-grid{
    display: grid;

    grid-template-columns: 42% 58%;

    min-height: 700px;
}

/* =========================================
   IMAGE
========================================= */

.course-modal-image{
    height: 100%;
}

.course-modal-image img{
    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* =========================================
   CONTENT
========================================= */

.course-modal-content{
    padding: 60px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

/* BADGE */

.course-badge{
    display: inline-flex;

    align-items: center;

    width: fit-content;

    background:
    rgba(13,110,253,0.10);

    color: #0d6efd;

    padding: 10px 22px;

    border-radius: 50px;

    font-size: 0.85rem;

    font-weight: 700;

    margin-bottom: 25px;

    letter-spacing: 0.5px;
}

/* TITLE */

.course-modal-content h2{
    font-size: 3.2rem;

    font-weight: 800;

    line-height: 1.05;

    color: #111827;

    margin-bottom: 28px;
}

/* DESCRIPTION */

.course-modal-description{
    font-size: 1.05rem;

    line-height: 1.9;

    color: #64748b;

    margin-bottom: 40px;
}

/* =========================================
   INFO BOXES
========================================= */

.course-modal-info{
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 20px;

    margin-bottom: 45px;
}

/* ITEM */

.course-info-item{
    background:
    linear-gradient(
        180deg,
        #f8fafc 0%,
        #ffffff 100%
    );

    border-radius: 22px;

    padding: 24px;

    border: 1px solid #edf2f7;

    box-shadow:
    0 10px 20px rgba(0,0,0,0.03);
}

/* TITLE */

.course-info-item strong{
    display: block;

    margin-bottom: 10px;

    font-size: 0.95rem;

    color: #111827;
}

/* TEXT */

.course-info-item span{
    color: #64748b;

    line-height: 1.7;
}

/* =========================================
   REQUISITOS
========================================= */

.course-requirements{
    margin-bottom: 45px;
}

.course-requirements h4{
    font-size: 1.2rem;

    font-weight: 700;

    color: #111827;

    margin-bottom: 20px;
}

.course-requirements p{
    color: #64748b;

    line-height: 1.9;

    margin: 0;
}

/* =========================================
   BUTTON
========================================= */

.course-modal-btn{
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: fit-content;

    padding: 18px 34px;

    border-radius: 60px;

    background:
    linear-gradient(
        135deg,
        #0d6efd,
        #2563eb
    );

    color: white;

    font-weight: 700;

    transition: 0.35s;

    box-shadow:
    0 15px 30px rgba(13,110,253,0.25);
}

.course-modal-btn:hover{
    transform: translateY(-5px);

    color: white;

    box-shadow:
    0 25px 45px rgba(13,110,253,0.35);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 991px){

    .course-modal-grid{
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .course-modal-image{
        height: 350px;
    }

    .course-modal-info{
        grid-template-columns: 1fr;
    }

}

@media(max-width: 768px){

    .course-modal-content{
        padding: 35px 25px;
    }

    .course-modal-content h2{
        font-size: 2.2rem;
    }

    .course-modal-description{
        font-size: 1rem;
    }

    .course-modal-btn{
        width: 100%;
    }

}
/* =========================================
   MODAL OTEC
========================================= */

.otec-modal{
    border: none;

    border-radius: 35px;

    overflow: hidden;

    position: relative;
}

/* CLOSE */

.otec-close{
    position: absolute;

    top: 25px;
    right: 25px;

    z-index: 20;
}

/* GRID */

.otec-modal-grid{
    display: grid;

    grid-template-columns: 42% 58%;
}

/* IMAGE */

.otec-modal-image{
    height: 100%;
}

.otec-modal-image img{
    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* CONTENT */

.otec-modal-content{
    padding: 60px;
}

/* BADGE */

.otec-badge{
    display: inline-block;

    background: rgba(13,110,253,0.10);

    color: #0d6efd;

    padding: 10px 20px;

    border-radius: 50px;

    font-size: 0.85rem;

    font-weight: 700;

    margin-bottom: 25px;
}

/* TITLE */

.otec-modal-content h3{
    font-size: 3rem;

    font-weight: 800;

    line-height: 1.05;

    color: #111827;

    margin-bottom: 30px;
}

.otec-modal-content h3 span{
    color: #0d6efd;
}

/* DESCRIPTION */

.otec-description{
    color: #64748b;

    line-height: 1.9;

    margin-bottom: 35px;

    font-size: 1rem;
}

/* SECTION */

.otec-section{
    margin-top: 35px;
}

.otec-section h4{
    font-size: 1.15rem;

    font-weight: 700;

    margin-bottom: 22px;

    color: #111827;
}

/* LIST */

.otec-list{
    display: flex;

    flex-direction: column;

    gap: 16px;
}

/* 2 COLUMNS */

.two-columns{
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 15px 25px;
}

/* ITEM */

.otec-item{
    display: flex;

    align-items: flex-start;

    gap: 12px;

    color: #374151;

    line-height: 1.6;
}

.otec-item i{
    color: #0d6efd;

    margin-top: 4px;
}

/* BUTTON */

.otec-btn{
    display: inline-flex;

    margin-top: 45px;

    background:
    linear-gradient(
        135deg,
        #0d6efd,
        #2563eb
    );

    color: white;

    padding: 16px 32px;

    border-radius: 60px;

    font-weight: 700;

    transition: 0.35s;
}

.otec-btn:hover{
    transform: translateY(-4px);

    color: white;
}

/* =========================================
   PSICOTECNICO
========================================= */

.psico{
    padding: 10px 0;

    background:
    linear-gradient(
        180deg,
        #f8fbff 0%,
        #ffffff 100%
    );

    overflow: hidden;
}

/* WRAPPER */

.psico-wrapper{
    display: flex;

    align-items: center;

    gap: 90px;
}

/* CONTENT */

.psico-content{
    width: 55%;
}

/* TITLE */

.psico-content h2{
    font-size: 4rem;

    font-weight: 800;

    line-height: 1.05;

    color: #111827;

    margin-bottom: 30px;
}

.psico-content h2 span{
    color: #0d6efd;
}

/* TEXT */

.psico-content p{
    color: #64748b;

    line-height: 1.9;

    margin-bottom: 20px;

    font-size: 1.05rem;
}

/* FEATURES */

.psico-features{
    margin-top: 45px;

    display: flex;

    flex-direction: column;

    gap: 22px;
}

/* ITEM */

.psico-item{
    display: flex;

    align-items: flex-start;

    gap: 18px;

    background: white;

    border-radius: 22px;

    padding: 22px;

    border: 1px solid #edf2f7;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.04);

    transition: 0.35s;
}

.psico-item:hover{
    transform: translateY(-5px);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.08);
}

/* ICON */

.psico-icon{
    min-width: 55px;
    height: 55px;

    border-radius: 16px;

    background:
    linear-gradient(
        135deg,
        #0d6efd,
        #2563eb
    );

    display: flex;
    align-items: center;
    justify-content: center;
}

.psico-icon i{
    color: white;

    font-size: 1.2rem;
}

/* TEXT */

.psico-text h4{
    font-size: 1.1rem;

    font-weight: 700;

    margin-bottom: 8px;

    color: #111827;
}

.psico-text p{
    margin: 0;

    color: #64748b;

    font-size: 0.95rem;
}

/* BUTTON */

.psico-btn{
    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-top: 45px;

    background:
    linear-gradient(
        135deg,
        #25D366,
        #1eb858
    );

    color: white;

    padding: 18px 34px;

    border-radius: 60px;

    font-weight: 700;

    transition: 0.35s;

    box-shadow:
    0 15px 30px rgba(37,211,102,0.25);
}

.psico-btn:hover{
    transform: translateY(-5px);

    color: white;
}

/* =========================================
   PSICO VIDEO
========================================= */

.psico-video{
    width: 45%;

    position: relative;

    cursor: pointer;
}

/* IMAGE */

.psico-video video{
    width: 100%;

    height: 650px;

    object-fit: cover;

    border-radius: 35px;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.10);
}

/* PLAY BUTTON */

.play-button{
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 100px;
    height: 100px;

    border-radius: 50%;

    background:
    rgba(255,255,255,0.18);

    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.35s;
}

.play-button i{
    color: white;

    font-size: 2rem;

    margin-left: 5px;
}

/* HOVER */

.psico-video:hover .play-button{
    transform:
    translate(-50%, -50%)
    scale(1.08);

    background:
    rgba(13,110,253,0.85);
}

/* =========================================
   E-LEARNING
========================================= */

.elearning{
    padding: 40px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fbff 100%
    );

    overflow: hidden;

    position: relative;
}

/* WRAPPER */

.elearning-wrapper{
    display: flex;

    align-items: flex-start;

    gap: 90px;
}

/* =========================================
   IMAGE
========================================= */

.elearning-image{
    width: 50%;

    position: relative;
}

.elearning-image::before{
    content: '';

    position: absolute;

    width: 450px;
    height: 450px;

    background: rgba(13,110,253,0.08);

    border-radius: 50%;

    top: -80px;
    right: -80px;

    z-index: 1;
}

.elearning-image img{
    width: 100%;

    border-radius: 35px;

    position: relative;

    z-index: 2;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.10);

    transition: 0.4s;
}

.elearning-image img:hover{
    transform: translateY(-8px);
}

/* =========================================
   CONTENT
========================================= */

.elearning-content{
    width: 50%;

    position: relative;

    z-index: 2;
}
/* =========================================
   HEADER
========================================= */

.elearning-header{
    max-width: 850px;

    margin-bottom: 70px;
}

.elearning-header h2{
    font-size: 4.5rem;

    font-weight: 800;

    line-height: 1.05;

    color: #111827;

    margin-bottom: 30px;
}

.elearning-header h2 span{
    color: #0d6efd;
}

.elearning-header p{
    font-size: 1.08rem;

    line-height: 1.9;

    color: #64748b;

    margin-bottom: 18px;
}

/* BADGE */

.section-badge{
    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: rgba(13,110,253,0.08);

    color: #0d6efd;

    padding: 12px 24px;

    border-radius: 50px;

    font-size: 0.9rem;

    font-weight: 700;

    letter-spacing: 0.5px;

    margin-bottom: 28px;
}

/* =========================================
   HEADER
========================================= */

.elearning-header{
    width: 100%;

    margin-bottom: 70px;
}

/* TITLE */

.elearning-header h2{
    font-size: 5rem;

    font-weight: 800;

    line-height: 1.05;

    color: #111827;



    width: 100%;
}

.elearning-header h2 span{
    color: #0d6efd;
}

/* TEXT */

.elearning-header p{
    font-size: 1.08rem;

    line-height: 1.9;

    color: #64748b;

    margin-bottom: 22px;

    width: 100%;

    max-width: 1100px;
}

/* =========================================
   FEATURES
========================================= */

.elearning-features{
    margin-top: 45px;

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 22px;
}

/* ITEM */

.feature-item{
    background: white;

    border-radius: 22px;

    padding: 24px;

    display: flex;

    align-items: flex-start;

    gap: 18px;

    transition: 0.35s;

    border: 1px solid #edf2f7;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.04);
}

.feature-item:hover{
    transform: translateY(-6px);

    box-shadow:
    0 20px 45px rgba(0,0,0,0.08);
}

/* ICON */

.feature-icon{
    min-width: 60px;
    height: 60px;

    border-radius: 18px;

    background:
    linear-gradient(
        135deg,
        #0d6efd,
        #3b82f6
    );

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
    0 10px 20px rgba(13,110,253,0.25);
}

.feature-icon i{
    color: white;

    font-size: 1.4rem;
}

/* FEATURE TEXT */

.feature-text h4{
    font-size: 1.1rem;

    font-weight: 700;

    color: #111827;

    margin-bottom: 8px;
}

.feature-text p{
    margin: 0;

    font-size: 0.95rem;

    line-height: 1.7;

    color: #64748b;
}

/* =========================================
   BUTTON
========================================= */

.elearning-btn{
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 45px;

    background:
    linear-gradient(
        135deg,
        #25D366,
        #1eb858
    );

    color: white;

    padding: 18px 34px;

    border-radius: 60px;

    font-weight: 700;

    transition: 0.35s;

    box-shadow:
    0 15px 30px rgba(37,211,102,0.25);
}

.elearning-btn:hover{
    transform: translateY(-5px);

    color: white;

    box-shadow:
    0 25px 45px rgba(37,211,102,0.35);
}

/* INSTRUCTORS */

.instructors{
    padding: 100px 0;

    background: #f8fafc;
}

/* SUBTITULO */

.section-title p{
    margin-top: 20px;

    color: #666;

    font-size: 1.1rem;
}

/* GRID */

.instructors-grid{
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 35px;

    margin-top: 70px;
}

/* CARD */

.instructor-card{
    background: white;

    border-radius: 22px;

    overflow: hidden;

    transition: 0.35s;

    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.instructor-card:hover{
    transform: translateY(-12px);

    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* IMAGE */

.instructor-image{
    height: 340px;

    overflow: hidden;
}

.instructor-image img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.4s;
}

.instructor-card:hover .instructor-image img{
    transform: scale(1.05);
}

/* CONTENT */

.instructor-content{
    padding: 35px 30px;
}

.instructor-content h3{
    font-size: 1.6rem;

    font-weight: 700;

    margin-bottom: 10px;

    color: #111827;
}

.instructor-content span{
    display: inline-block;

    color: #0d6efd;

    font-weight: 600;

    margin-bottom: 20px;
}

.instructor-content p{
    color: #666;

    line-height: 1.7;

    margin-bottom: 25px;
}

/* ICONOS */

.instructor-icons{
    display: flex;

    gap: 15px;
}

.instructor-icons i{
    width: 45px;
    height: 45px;

    background: #eff6ff;

    color: #0d6efd;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.1rem;
}
/* =========================================
   BENEFITS
========================================= */

.benefits{
    padding: 10px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fbff 100%
    );

    overflow: hidden;
}

/* HEADER */

.benefits-header{
    max-width: 1100px;

    margin-bottom: 70px;
}

.benefits-header h2{
    font-size: 4.2rem;

    font-weight: 800;

    line-height: 1.05;

    color: #111827;

    margin-bottom: 30px;
}

.benefits-header h2 span{
    color: #0d6efd;
}

.benefits-header p{
    font-size: 1.08rem;

    line-height: 1.9;

    color: #64748b;

    max-width: 900px;
}

/* GRID */

.benefits-grid{
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 30px;
}

/* CARD */

.benefit-card{
    background: white;

    border-radius: 30px;

    padding: 40px;

    border: 1px solid #edf2f7;

    transition: 0.35s;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

.benefit-card:hover{
    transform: translateY(-8px);

    box-shadow:
    0 25px 50px rgba(0,0,0,0.10);
}

/* ICON */

.benefit-icon{
    width: 75px;
    height: 75px;

    border-radius: 22px;

    background:
    linear-gradient(
        135deg,
        #0d6efd,
        #2563eb
    );

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    box-shadow:
    0 15px 30px rgba(13,110,253,0.25);
}

.benefit-icon i{
    color: white;

    font-size: 1.7rem;
}

/* TITLE */

.benefit-card h3{
    font-size: 1.5rem;

    font-weight: 700;

    color: #111827;

    margin-bottom: 18px;

    line-height: 1.3;
}

/* TEXT */

.benefit-card p{
    color: #64748b;

    line-height: 1.9;

    margin: 0;
}

/* BUTTON */

.benefits-button{
    margin-top: 60px;

    text-align: center;
}

.benefits-btn{
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 18px 38px;

    border-radius: 60px;

    background:
    linear-gradient(
        135deg,
        #0d6efd,
        #2563eb
    );

    color: white;

    font-weight: 700;

    transition: 0.35s;

    box-shadow:
    0 15px 30px rgba(13,110,253,0.25);
}

.benefits-btn:hover{
    transform: translateY(-5px);

    color: white;
}


/* CTA */

.cta{
    position: relative;

    padding: 140px 0;

    background-image: url('../img/banners/cta.jpg');

    background-size: cover;

    background-position: center;

    overflow: hidden;
}

/* OVERLAY */

.cta-overlay{
    position: absolute;

    inset: 0;

    background:
    linear-gradient(
        135deg,
        rgba(8,44,92,0.92),
        rgba(13,110,253,0.75)
    );
}

/* CONTENT */

.cta-content{
    position: relative;

    z-index: 2;

    max-width: 750px;
}

/* SUBTITLE */

.cta-content span{
    display: inline-block;

    color: rgba(255,255,255,0.8);

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 25px;
}

/* TITLE */

.cta-content h2{
    font-size: 4rem;

    font-weight: 700;

    line-height: 1.1;

    color: white;

    margin-bottom: 30px;
}

/* TEXT */

.cta-content p{
    font-size: 1.2rem;

    line-height: 1.8;

    color: rgba(255,255,255,0.85);

    margin-bottom: 45px;

    max-width: 650px;
}

/* BUTTONS */

.cta-buttons{
    display: flex;

    gap: 20px;
}

/* PRIMARY */

.cta-btn-primary{
    display: inline-block;

    background: white;

    color: #0d6efd;

    padding: 16px 38px;

    border-radius: 50px;

    font-weight: 700;

    transition: 0.3s;
}

.cta-btn-primary:hover{
    transform: translateY(-4px);

    background: #f3f4f6;
}

/* OUTLINE */

.cta-btn-outline{
    display: inline-block;

    border: 2px solid rgba(255,255,255,0.4);

    color: white;


    padding: 16px 38px;

    border-radius: 50px;

    font-weight: 600;

    transition: 0.3s;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(6px);
}

.cta-btn-outline:hover{
    background: white;

    color: #0d6efd;

    transform: translateY(-4px);
}
/* =========================================
   FAQ
========================================= */

.faq{
    padding: 140px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fbff 100%
    );
}

/* HEADER */

.faq-header{
    max-width: 900px;

    margin-bottom: 70px;
}

.faq-header h2{
    font-size: 4rem;

    font-weight: 800;

    line-height: 1.05;

    color: #111827;

    margin-bottom: 25px;
}

.faq-header h2 span{
    color: #0d6efd;
}

.faq-header p{
    font-size: 1.08rem;

    line-height: 1.9;

    color: #64748b;
}

/* ACCORDION */

.faq-accordion{
    display: flex;

    flex-direction: column;

    gap: 22px;
}

/* ITEM */

.faq-item{
    border: none;

    border-radius: 25px !important;

    overflow: hidden;

    background: white;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

/* BUTTON */

.faq-item .accordion-button{
    background: white;

    padding: 28px 35px;

    font-size: 1.15rem;

    font-weight: 700;

    color: #111827;

    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed){
    background: #0d6efd;

    color: white;
}

/* BODY */

.faq-item .accordion-body{
    padding: 30px 35px;

    line-height: 1.9;

    color: #64748b;

    font-size: 1rem;
}

.faq-item ul{
    margin-top: 15px;
}

.faq-item li{
    margin-bottom: 10px;
}

/* BUTTON CTA */

.faq-button{
    margin-top: 60px;

    text-align: center;
}

.faq-btn{
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 18px 38px;

    border-radius: 60px;

    background:
    linear-gradient(
        135deg,
        #0d6efd,
        #2563eb
    );

    color: white;

    font-weight: 700;

    transition: 0.35s;

    box-shadow:
    0 15px 30px rgba(13,110,253,0.25);
}

.faq-btn:hover{
    transform: translateY(-5px);

    color: white;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 991px){

    .faq{
        padding: 100px 0;
    }

    .faq-header h2{
        font-size: 3rem;
    }

}

@media(max-width: 768px){

    .faq{
        padding: 80px 0;
    }

    .faq-header h2{
        font-size: 2.3rem;
    }

    .faq-item .accordion-button{
        padding: 24px;
    }

    .faq-item .accordion-body{
        padding: 24px;
    }

    .faq-btn{
        width: 100%;
    }

}
/* =========================================
   FOOTER
========================================= */

.footer{
    padding-top: 110px;

    background:
    linear-gradient(
        180deg,
        #0f172a 0%,
        #020617 100%
    );

    color: white;

    overflow: hidden;
}

/* WRAPPER */

.footer-wrapper{
    display: grid;

    grid-template-columns:
    1.3fr
    1fr
    1.1fr
    1fr;

    gap: 60px;

    padding-bottom: 70px;
}

/* LOGO */

.footer-logo{
    height: 85px;

    margin-bottom: 30px;
}

/* TEXT */

.footer-column p{
    color: rgba(255,255,255,0.70);

    line-height: 1.9;

    margin: 0;
}

/* TITLES */

.footer-column h3{
    font-size: 1.3rem;

    font-weight: 700;

    margin-bottom: 30px;

    color: white;
}

/* LINKS */

.footer-column ul{
    padding: 0;

    margin: 0;

    list-style: none;
}

.footer-column ul li{
    margin-bottom: 16px;
}

.footer-column ul li a{
    color: rgba(255,255,255,0.70);

    transition: 0.3s;
}

.footer-column ul li a:hover{
    color: #3b82f6;

    padding-left: 6px;
}

/* CONTACT */

.footer-contact{
    display: flex;

    flex-direction: column;

    gap: 22px;
}

.footer-contact-item{
    display: flex;

    align-items: flex-start;

    gap: 15px;

    color: rgba(255,255,255,0.75);

    line-height: 1.7;
}

.footer-contact-item i{
    color: #3b82f6;

    margin-top: 4px;
}

/* HOURS */

.footer-hours{
    display: flex;

    flex-direction: column;

    gap: 25px;
}

.footer-hours-item{
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.footer-hours-item strong{
    color: white;

    font-size: 1rem;
}

.footer-hours-item span{
    color: rgba(255,255,255,0.70);

    line-height: 1.8;
}

/* BOTTOM */

.footer-bottom{
    border-top:
    1px solid rgba(255,255,255,0.08);

    padding: 30px 0;

    text-align: center;
}

.footer-bottom p{
    margin: 0;

    color: rgba(255,255,255,0.55);

    font-size: 0.95rem;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 991px){

    .footer{
        padding-top: 90px;
    }

    .footer-wrapper{
        grid-template-columns:
        repeat(2,1fr);

        gap: 50px;
    }

}

@media(max-width: 768px){

    .footer{
        padding-top: 70px;
    }

    .footer-wrapper{
        grid-template-columns: 1fr;
    }

    .footer-logo{
        height: 70px;
    }

}
/* =========================================
   INSTITUCIONES
========================================= */

.instituciones{
    padding: 110px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fafc 100%
    );
}

/* HEADER */

.instituciones-header{
    text-align: center;

    max-width: 850px;

    margin: 0 auto 70px;
}

.instituciones-header h2{
    font-size: 3.5rem;

    font-weight: 800;

    line-height: 1.1;

    color: #111827;

    margin-bottom: 25px;
}

.instituciones-header h2 span{
    color: #0d6efd;
}

.instituciones-header p{
    font-size: 1.08rem;

    line-height: 1.9;

    color: #64748b;
}

/* GRID */

.instituciones-grid{
    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 30px;
}

/* ITEM */

.institucion-item{
    height: 170px;

    background: white;

    border-radius: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 35px;

    border: 1px solid #edf2f7;

    transition: 0.35s;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.04);
}

.institucion-item:hover{
    transform: translateY(-8px);

    box-shadow:
    0 20px 45px rgba(0,0,0,0.08);
}

/* IMAGE */

.institucion-item img{
    width: auto;

    height: auto;

    max-width: 160px;

    max-height: 55px;

    object-fit: contain;

    filter: grayscale(100%);

    opacity: 0.8;

    transition: 0.35s;
}

.institucion-item:hover img{
    filter: grayscale(0%);

    opacity: 1;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 991px){

    .instituciones-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width: 768px){

    .instituciones{
        padding: 80px 0;
    }

    .instituciones-header{
        margin-bottom: 45px;
    }

    .instituciones-header h2{
        font-size: 2.2rem;
    }

    .instituciones-grid{
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .institucion-item{
        height: 140px;
    }

    .institucion-item img{
        max-height: 60px;
    }

}