/*=========================================
=               NAVBAR                    =
=========================================*/

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:rgba(247,248,252,.92);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(21,26,99,.06);
    transition:.35s ease;
    padding:5px;
}

.nav-wrapper{
    height:60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:50px;
}

/* Menú desktop */


.nav-menu{
    gap:28px;
}

.nav-menu a{
    font-size:15px;
    font-weight:600;
}



.nav-menu a:hover,
.nav-menu a.active{
    color:#18B7B3;
}

.nav-button{
    padding:8px 22px;
    font-size:15px;
}

/* Hamburguesa */

.hamburger{
    display:none;
    width:44px;
    height:44px;
    border:none;
    background:transparent;
    cursor:pointer;
    position:relative;
}

.hamburger span{
    position:absolute;
    left:10px;
    width:24px;
    height:2px;
    background:#151A63;
    transition:.3s;
}

.hamburger span:nth-child(1){
    top:14px;
}

.hamburger span:nth-child(2){
    top:21px;
}

.hamburger span:nth-child(3){
    top:28px;
}

/* Animación X */

.hamburger.active span:nth-child(1){
    transform:rotate(45deg);
    top:21px;
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:rotate(-45deg);
    top:21px;
}

/* Espacio para navbar fijo */

body{
    padding-top:60px;
}

/*=========================================
=            RESPONSIVE                   =
=========================================*/

@media (max-width:992px){

    .nav-wrapper{
        height:68px;
    }

    .logo img{
        height:45px;
    }

    .nav-button{
        display:none;
    }

    .hamburger{
        display:flex;
        width:40px;
        height:40px;
        align-items:center;
        justify-content:center;
        position:relative;
        border:none;
        background:transparent;
        cursor:pointer;
        z-index:1002;
    }

    .hamburger span{
        position:absolute;
        width:22px;
        height:2px;
        background:#151A63;
        border-radius:10px;
        transition:.3s ease;
    }

    .hamburger span:nth-child(1){transform:translateY(-7px);}
    .hamburger span:nth-child(2){transform:translateY(0);}
    .hamburger span:nth-child(3){transform:translateY(7px);}

    /* X */

    .hamburger.active span:nth-child(1){
        transform:rotate(45deg);
    }

    .hamburger.active span:nth-child(2){
        opacity:0;
    }

    .hamburger.active span:nth-child(3){
        transform:rotate(-45deg);
    }

    /* MENÚ */

    .nav-menu{
        position:fixed;
        top:68px;
        left:0;
        right:0;

        width:100%;
        height:calc(100vh - 68px);

        display:flex;
        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-start;

        background:#F7F8FC;

        transform:translateY(-100%);
        opacity:0;
        visibility:hidden;

        padding:22px 0;

        transition:.35s ease;

        z-index:1001;
    }

    .nav-menu.active{
        transform:translateY(0);
        opacity:1;
        visibility:visible;
    }

    .nav-menu a{
        width:100%;
        padding:18px 26px;
        font-size:18px;
        font-weight:600;
        border-bottom:1px solid rgba(21,26,99,.06);
    }

    .nav-menu a.active{
        color:#18B7B3;
    }

    /* evita scroll cuando abre */

    body.menu-open{
        overflow:hidden;
    }

}

/* ==========================================
   ABOUT PREMIUM
========================================== */

.about-premium{
    display:grid;
    grid-template-columns:1.45fr repeat(3,1fr);
    gap:18px;
    padding:72px 0;
    align-items:stretch;
}

/* Card izquierda */

.about-info-card{
    position:relative;
    background:linear-gradient(180deg,#ffffff 0%,#fcfcff 100%);
    border:1.5px solid transparent;
    background-clip:padding-box;
    border-radius:26px;
    padding:34px 28px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(25,25,112,.06);

    min-height:430px;

    display:flex;
    flex-direction:column;
}

.about-info-card::before{

    content:"";

    position:absolute;
    inset:0;

    border-radius:26px;
    padding:1.5px;

    background:linear-gradient(135deg,#18B9B5,#A85BFF);

    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;
}

.about-info-card h2{
    font-size:1.75rem;
    line-height:1.08;
    margin-bottom:16px;
    color:#191970;
}

.about-info-card h2 span{

    display:block;
    color:#18B9B5;
}

.tag-line{

    width:48px;
    height:4px;

    background:#18B9B5;
    border-radius:30px;

    margin:18px 0 26px;
}

.about-info-card p{
    color:#60708C;
    line-height:1.6;
    font-size:.96rem;
    margin-bottom:14px;
}

.about-link{
    margin-top:auto;
    display:inline-block;
    color:#21156D;
    font-weight:700;
}

.dna-decoration{
    position:absolute;
    right:-25px;
    bottom:-18px;

    width:190px;
    height:115px;

    background:url("../assets/images/dna-lines.png") no-repeat center;
    background-size:contain;

    opacity:.65;
    pointer-events:none;
}

/* Cards */

.feature-card{
    position:relative;
    background:linear-gradient(180deg,#ffffff 0%,#fcfcff 100%);
    border-radius:24px;
    box-shadow:0 12px 35px rgba(25,25,112,.06);
    transition:.35s;

    min-height:430px;

    display:flex;
    flex-direction:column;

    /* Aquí está el cambio importante */
    padding:36px 22px 18px;
}

.feature-card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(25,25,112,.12);
}

.icon-circle{
    width:64px;
    height:64px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:28px;   /* antes 20px */
}

.icon-circle.purple{

    background:linear-gradient(135deg,#5A3BFF,#8A5CFF);
}

.icon-circle.teal{

    background:linear-gradient(135deg,#00C8C8,#18B9B5);
}

.dots{

    position:absolute;

    top:52px;
    right:30px;

    width:62px;
    height:42px;

    background-image:radial-gradient(#D6C8FF 1.8px, transparent 1.8px);
    background-size:10px 10px;

    opacity:.45;
}

.feature-card h3{
    font-size:1.18rem;
    line-height:1.25;
    margin-bottom:14px;
    color:#191970;
}

.line{

    width:36px;
    height:4px;

    background:#18B9B5;

    border-radius:20px;

    margin-bottom:20px;
}

.feature-card p{
    color:#61708C;
    line-height:1.65;
    font-size:.95rem;
}

.card-footer{
    margin-top:auto;
    padding-top:18px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    border-top:1px solid rgba(106,74,255,.06);
}

.card-footer a{

    color:#4A2BBF;
    font-weight:700;
}

.arrow-btn{
    width:44px;
    height:44px;
    border:none;
    border-radius:50%;
    background:#EEE8FF;
    color:#4A2BBF;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.arrow-btn:hover{
    background:#4A2BBF;
    color:#fff;
}

/* Responsive */

@media(max-width:1200px){

    .about-premium{

        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .about-premium{

        grid-template-columns:1fr;
    }

    .feature-card{

        min-height:260px;
    }
}

/*=========================================
=            MISSION SECTION              =
=========================================*/

.mission-section{
    padding:90px 0;
    background:#F7F8FC;
}

.mission-card{

    position:relative;
    overflow:hidden;

    display:grid;
    grid-template-columns:260px 1fr;

    gap:55px;

    padding:60px;

    border-radius:30px;

   background:
        linear-gradient(
        90deg,
        rgba(255,255,255,.99) 0%,
        rgba(255,255,255,.97) 24%,
        rgba(255,255,255,.92) 48%,
        rgba(255,255,255,.55) 72%,
        rgba(255,255,255,.08) 100%
        ),
        url("../assets/images/mission-background.png");

    background-size:cover;
    background-position:center right;
    background-repeat:no-repeat;

    box-shadow:0 20px 60px rgba(19,23,90,.06);

}

/* Línea molecular inferior */

.mission-card::after{

content:"";

position:absolute;

bottom:-40px;

left:260px;

width:420px;

height:180px;

background:url("../assets/images/mission-wave.png") no-repeat center;

background-size:contain;

opacity:.35;

pointer-events:none;

}

/* Navegación izquierda */

.mission-nav{

padding-right:35px;

border-right:2px solid #E6EAF5;

display:flex;

flex-direction:column;

}

.section-label{

font-size:14px;

font-weight:700;

letter-spacing:3px;

color:#19B7B5;

margin-bottom:35px;

}

.mission-timeline{

display:flex;

flex-direction:column;

gap:34px;

position:relative;

}

.mission-timeline::before{

content:"";

position:absolute;

left:17px;

top:18px;

bottom:18px;

width:2px;

background:#D7DCEF;

}

.timeline-item{

display:flex;

gap:22px;

position:relative;

z-index:1;

}

.timeline-item .dot{

width:18px;

height:18px;

border-radius:50%;

background:white;

border:2px solid #C7CCE2;

flex-shrink:0;

margin-top:4px;

}

.timeline-item.active .dot{

background:#5B3DF5;

border-color:#5B3DF5;

box-shadow:0 0 0 10px rgba(91,61,245,.12);

}

.timeline-item h4{

font-size:22px;

font-weight:700;

color:#151A63;

margin-bottom:8px;

}

.timeline-item p{

font-size:16px;

line-height:1.6;

color:#667089;

}

/* Contenido */

.mission-content{
    max-width:680px;
}

.mission-title-small{

font-size:14px;

font-weight:700;

letter-spacing:3px;

color:#2B1E88;

display:block;

margin-bottom:18px;

}

.mission-content h2{
    font-size:54px;
}

.mission-content h2 span{

background:linear-gradient(90deg,#18B7B3,#32D0A9);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

background-clip:text;

}

.mission-content p{

font-size:18px;

line-height:1.8;

color:#667089;

margin-bottom:22px;

max-width:650px;

}

/* Responsive */

@media(max-width:992px){

.mission-card{
    grid-template-columns:240px minmax(720px,1fr);
    gap:48px;
    padding:64px;
    min-height:560px;
}

.mission-nav{

border-right:none;

border-bottom:2px solid #E6EAF5;

padding-bottom:35px;

padding-right:0;

}

.mission-card::after{

display:none;

}

.mission-content h2{

font-size:42px;

}

}

@media(max-width:576px){

.mission-content h2{

font-size:34px;

}

.timeline-item h4{

font-size:18px;

}

.mission-content p{

font-size:16px;

}

}
/*=========================================
=         RESEARCH PORTFOLIO SECTION       =
=========================================*/

.projects-section{
    padding:85px 0;
    background:#F7F8FC;
    position:relative;
    overflow:hidden;
}

/* Decoración */

.projects-section::before{
    content:"";
    position:absolute;
    top:50px;
    right:40px;
    width:120px;
    height:120px;
    background:radial-gradient(circle,#C8BCFF 2px,transparent 2px);
    background-size:14px 14px;
    opacity:.25;
}

.projects-section::after{
    content:"";
    position:absolute;
    bottom:40px;
    left:30px;
    width:100px;
    height:100px;
    background:radial-gradient(circle,#C8BCFF 2px,transparent 2px);
    background-size:14px 14px;
    opacity:.18;
}

/*==========================
Encabezado
==========================*/

.projects-header{
    max-width:760px;
    margin:0 auto 55px;
    text-align:center;
    position:relative;
    z-index:2;
}

.projects-header .section-label{
    display:inline-block;
    margin-bottom:18px;

    font-size:13px;
    font-weight:700;
    letter-spacing:3px;

    color:#18B7B3;
}

.projects-header h2{
    font-size:58px;
    line-height:.95;
    letter-spacing:-2px;
    font-weight:800;

    color:#151A63;
    margin-bottom:18px;
}

.projects-header h2 span{
    background:linear-gradient(90deg,#18B7B3,#31D0A8);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.projects-header p{
    font-size:18px;
    line-height:1.8;
    color:#667089;
}

/*==========================
Layout
==========================*/

.projects-layout{
    display:flex;
    flex-direction:column;
    gap:24px;
    position:relative;
    z-index:2;
}

/*==========================
Proyecto principal
==========================*/

.featured-project{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 22px 55px rgba(19,23,90,.08);
    transition:.35s ease;
}

.featured-project:hover{
    transform:translateY(-5px);
    box-shadow:0 30px 65px rgba(19,23,90,.12);
}

.featured-project img{
    width:100%;
    height:360px;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.featured-project:hover img{
    transform:scale(1.03);
}

.featured-project::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        120deg,
        rgba(16,22,90,.82) 0%,
        rgba(40,28,140,.55) 45%,
        rgba(24,183,179,.08) 100%
    );
}

/* Overlay */

.project-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:36px;
    z-index:2;
}

.project-status{
    align-self:flex-start;

    padding:9px 18px;
    margin-bottom:18px;

    border-radius:999px;

    background:linear-gradient(90deg,#18B7B3,#5B3DF5);

    color:white;

    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
}

.project-overlay h3{
    font-size:44px;
    line-height:1;
    letter-spacing:-1px;
    color:white;
    margin-bottom:18px;
}

/* Chips */

.project-tags{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.project-tags span{
    padding:8px 14px;

    border-radius:999px;

    background:rgba(255,255,255,.14);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(8px);

    color:white;

    font-size:13px;
}

/*==========================
Tarjetas inferiores
==========================*/

.projects-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.project-card{
    position:relative;
    overflow:hidden;

    background:white;
    border-radius:24px;

    box-shadow:0 18px 45px rgba(19,23,90,.05);

    transition:.35s ease;
}

.project-card:hover{
    transform:translateY(-6px);
    box-shadow:0 28px 55px rgba(19,23,90,.10);
}

.project-card img{
    width:100%;
    height:210px;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}

.project-card:hover img{
    transform:scale(1.03);
}

/* Glow */

.project-card::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    right:-60px;
    bottom:-60px;
    border-radius:50%;
    background:radial-gradient(rgba(24,183,179,.10),transparent 70%);
}

.project-content{
    padding:24px;
    position:relative;
    z-index:2;
}

.project-type{
    display:inline-block;
    margin-bottom:14px;

    font-size:12px;
    font-weight:700;
    letter-spacing:2px;

    color:#18B7B3;
}

.project-content h3{
    font-size:24px;
    line-height:1.3;
    font-weight:700;
    color:#151A63;
}

/*==========================
Responsive
==========================*/

@media(max-width:992px){

.projects-header h2{
    font-size:42px;
}

.projects-header p{
    font-size:17px;
}

.featured-project img{
    height:280px;
}

.project-overlay{
    padding:28px;
}

.project-overlay h3{
    font-size:34px;
}

.projects-grid{
    grid-template-columns:1fr;
}

.project-card img{
    height:200px;
}

}

@media(max-width:576px){

.projects-section{
    padding:70px 0;
}

.projects-header h2{
    font-size:34px;
}

.featured-project img{
    height:230px;
}

.project-overlay{
    padding:22px;
}

.project-overlay h3{
    font-size:28px;
}

.project-tags span{
    font-size:12px;
    padding:7px 12px;
}

.project-content{
    padding:20px;
}

.project-content h3{
    font-size:20px;
}

}

/*=========================================
=      BIOLOGICAL SAMPLES SECTION         =
=========================================*/

.samples-section{
    padding:100px 0;
    background:#F7F8FC;
    position:relative;
    overflow:hidden;
}

/* Decoración */

.samples-section::before{
    content:"";
    position:absolute;
    top:30px;
    right:30px;
    width:120px;
    height:120px;
    background:
      radial-gradient(circle,#C9BCFF 2px,transparent 2px);
    background-size:14px 14px;
    opacity:.35;
}

.samples-section::after{
    content:"";
    position:absolute;
    bottom:40px;
    left:20px;
    width:120px;
    height:120px;
    background:
      radial-gradient(circle,#C9BCFF 2px,transparent 2px);
    background-size:14px 14px;
    opacity:.25;
}

/*==========================
Header
==========================*/

.samples-header{
    max-width:900px;
    margin:0 auto 55px;
    text-align:center;
}

.samples-header .section-label{
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    color:#18B7B3;
    display:inline-block;
}

.samples-header .section-label::after{
    content:"";
    display:block;
    width:42px;
    height:3px;
    background:#18B7B3;
    margin:18px auto 0;
    border-radius:20px;
}

.samples-header h2{
    margin-top:30px;
    font-size:64px;
    line-height:.95;
    letter-spacing:-2px;
    color:#151A63;
}

.samples-header h2 span{
    background:linear-gradient(90deg,#18B7B3,#31D0A8);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.samples-header p{
    margin-top:22px;
    font-size:20px;
    line-height:1.8;
    color:#667089;
}

/*==========================
Cards
==========================*/

.samples-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.sample-card{
    background:white;
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(19,23,90,.06);
    transition:.35s ease;
    position:relative;
}

.sample-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 60px rgba(19,23,90,.12);
}

.sample-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.sample-card:hover img{
    transform:scale(1.04);
}

.sample-content{
    padding:30px;
    position:relative;
}

.sample-content::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    right:-70px;
    bottom:-70px;
    border-radius:50%;
    background:
      radial-gradient(rgba(24,183,179,.12),transparent 70%);
}

.sample-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    position:relative;
    z-index:2;
    box-shadow:0 10px 24px rgba(20,25,90,.05);
}

.sample-icon svg{
    width:26px;
    height:26px;
}

.blood{
    background:#FFF0F2;
}

.saliva{
    background:#EAF7FF;
}

.tissue{
    background:#F2EEFF;
}

.sample-content h3{
    font-size:34px;
    line-height:1;
    color:#151A63;
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

.sample-content p{
    font-size:17px;
    line-height:1.8;
    color:#667089;
    margin-bottom:24px;
    position:relative;
    z-index:2;
}

.sample-content a{
    color:#4B2AD6;
    text-decoration:none;
    font-weight:700;
    position:relative;
    z-index:2;
}

/*==========================
Feature Bar
==========================*/

.samples-features{
    margin-top:50px;
    background:
      linear-gradient(90deg,#F6FFFE,#F3F5FF);
    border:1.5px solid rgba(24,183,179,.45);
    border-radius:28px;
    padding:28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:16px;
    flex:1;
}

.feature-circle{
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:white;
    box-shadow:0 10px 30px rgba(19,23,90,.06);
    flex-shrink:0;
}

.feature-circle svg{
    width:26px;
    height:26px;
}

.feature-item span{
    font-size:17px;
    font-weight:600;
    color:#2A2E73;
    line-height:1.5;
}

.feature-divider{
    width:1px;
    height:55px;
    background:#DCE5F3;
}

/*==========================
Signature
==========================*/

.samples-signature{
    margin-top:18px;
    text-align:right;
    font-size:34px;
    line-height:1;
    color:#C8C9E7;
    font-style:italic;
    font-family:cursive;
}

/*==========================
Responsive
==========================*/

@media(max-width:1100px){

.samples-grid{
    grid-template-columns:1fr;
}

.samples-features{
    flex-direction:column;
    align-items:flex-start;
}

.feature-divider{
    display:none;
}

}

@media(max-width:768px){

.samples-header h2{
    font-size:46px;
}

.samples-header p{
    font-size:17px;
}

.sample-content h3{
    font-size:28px;
}

.samples-signature{
    font-size:26px;
    text-align:center;
}

}


/*=========================================
=         PARTNERS SECTION
=========================================*/

.partners-section{
    padding:100px 0;
    background:#F7F8FC;
    position:relative;
    overflow:hidden;
}

/* Decoración */

.partners-section::before{
    content:"";
    position:absolute;
    top:70px;
    right:80px;
    width:120px;
    height:120px;
    background:
      radial-gradient(circle,#C8B8FF 2px,transparent 2px);
    background-size:14px 14px;
    opacity:.25;
}

/* Encabezado */

.partners-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.partners-header h2{
    font-size:58px;
    line-height:.95;
    font-weight:800;
    letter-spacing:-2px;
    color:#151A63;
    margin:20px 0 24px;
}

.partners-header h2 span{
    background:linear-gradient(90deg,#18B7B3,#32D0A9);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.partners-header p{
    font-size:20px;
    line-height:1.8;
    color:#667089;
}

/* Showcase */

.partners-showcase{
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:30px;
    align-items:stretch;
    margin-bottom:40px;
}

/* Imagen principal */

.partners-image{
    height: 520px;      /* antes ~420px */
    border-radius: 26px;
    overflow: hidden;
}

.partners-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.partners-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(19,23,90,.30),
        rgba(43,30,136,.12),
        transparent
    );
}

/* Logos */

.partners-logos{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}

.partner-card{
    background:white;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:35px;
    min-height:190px;
    box-shadow:0 18px 45px rgba(19,23,90,.05);
    transition:.35s ease;
    border:1px solid rgba(24,183,179,.06);
}

.partner-card:hover{
    transform:translateY(-6px);
    box-shadow:0 28px 55px rgba(19,23,90,.10);
}

.partner-card img{
    max-width:140px;
    max-height:70px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.85;
    transition:.3s ease;
}

.partner-card:hover img{
    filter:none;
    opacity:1;
    transform:scale(1.05);
}

/* Franja inferior */

.partners-trust{
    background:white;
    border:1px solid rgba(24,183,179,.35);
    border-radius:26px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    overflow:hidden;
    box-shadow:0 18px 45px rgba(19,23,90,.04);
}

.trust-item{
    padding:30px 24px;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
    position:relative;
}

.trust-item:not(:last-child){
    border-right:1px solid #E7ECF7;
}

.trust-item strong{
    font-size:20px;
    color:#151A63;
}

.trust-item span{
    font-size:15px;
    color:#667089;
    line-height:1.5;
}

/* Responsive */

@media(max-width:992px){

.partners-showcase{
    grid-template-columns:1fr;
}

.partners-logos{
    grid-template-columns:1fr 1fr;
}

.partners-trust{
    grid-template-columns:1fr 1fr;
}

.partners-header h2{
    font-size:44px;
}

}

@media(max-width:576px){

.partners-header h2{
    font-size:34px;
}

.partners-header p{
    font-size:17px;
}

.partners-logos{
    grid-template-columns:1fr;
}

.partners-trust{
    grid-template-columns:1fr;
}

.trust-item:not(:last-child){
    border-right:none;
    border-bottom:1px solid #E7ECF7;
}

}

/*=========================================
=         COVERAGE SECTION
=========================================*/

.coverage-section{
    padding:90px 0;
    background:#F7F8FC;
    position:relative;
    overflow:hidden;
}

/* decoración */

.coverage-section::before{
    content:"";
    position:absolute;
    top:50px;
    left:-60px;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(24,183,179,.05);
}

.coverage-section::after{
    content:"";
    position:absolute;
    top:30px;
    right:30px;
    width:120px;
    height:120px;
    background:
        radial-gradient(circle,#C8B8FF 2px,transparent 2px);
    background-size:14px 14px;
    opacity:.35;
}

/* encabezado */

.coverage-header{
    text-align:center;
    max-width:820px;
    margin:0 auto 55px;
}

.coverage-header .section-label{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    color:#18B7B3;
}

.coverage-header .section-label::after{
    content:"";
    display:block;
    width:42px;
    height:3px;
    background:#18B7B3;
    margin:14px auto 0;
    border-radius:20px;
}

.coverage-header h2{
    margin-top:24px;
    font-size:64px;
    line-height:.92;
    letter-spacing:-2px;
    font-weight:800;
    color:#151A63;
}

.coverage-header h2 span{
    display:block;
    background:linear-gradient(90deg,#18B7B3,#32D0A9);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.coverage-header p{
    margin-top:24px;
    font-size:20px;
    line-height:1.8;
    color:#667089;
}

/* contenedor principal */

.coverage-card{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:28px;
    margin-bottom:30px;
}

/* columna izquierda */

.coverage-info{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.coverage-item,
.coverage-highlight{
    background:white;
    border-radius:24px;
    padding:26px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:0 18px 45px rgba(19,23,90,.05);
    transition:.35s ease;
}

.coverage-item:hover,
.coverage-highlight:hover{
    transform:translateY(-6px);
}

.coverage-icon{
    width:72px;
    height:72px;
    border-radius:22px;
    background:#E8FAF9;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    color:#18B7B3;
    flex-shrink:0;
}

.coverage-item:nth-child(2) .coverage-icon{
    background:#F0EBFF;
    color:#5B3DF5;
}

.coverage-highlight{
    background:linear-gradient(135deg,#151A63,#4B2AD6);
    color:white;
    margin-top:8px;
}

.coverage-highlight-icon{
    width:72px;
    height:72px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
}

.coverage-item h3,
.coverage-highlight h3{
    font-size:28px;
    margin-bottom:8px;
}

.coverage-item p{
    color:#667089;
    line-height:1.7;
}

.coverage-highlight p{
    color:rgba(255,255,255,.85);
}

/* mapa */

.coverage-map{
    position:relative;
    border-radius:28px;
    overflow:hidden;
    background:linear-gradient(180deg,#F8FAFF,#EEF5FF);
    min-height:620px;
}

.coverage-map img{
    width:100%;
    height:560px;
    object-fit:contain;      /* muestra el mapa completo */
    object-position:center;
    display:block;
    background:#F7F8FC;
}

.coverage-map::before{
    content:"";
    position:absolute;
    inset:0;
    background:
      radial-gradient(circle at center,rgba(24,183,179,.08),transparent 60%);
}

.coverage-map-badge{
    position:absolute;
    top:110px;
    left:54%;
    transform:translateX(-50%);
    background:#18B7B3;
    color:white;
    padding:10px 18px;
    border-radius:999px;
    font-weight:700;
    box-shadow:0 10px 30px rgba(24,183,179,.4);
}

.coverage-quote{
    position:absolute;
    top:36px;
    right:34px;
    width:180px;
    font-size:22px;
    line-height:1.4;
    color:#4B2AD6;
    font-weight:600;
}

.coverage-quote::after{
    content:"";
    display:block;
    width:40px;
    height:3px;
    background:#4B2AD6;
    margin-top:12px;
}

.coverage-stats{
    position:absolute;
    right:28px;
    bottom:120px;
    display:flex;
    flex-direction:column;
    gap:28px;
}

.coverage-stats strong{
    display:block;
    font-size:50px;
    color:#151A63;
}

.coverage-stats span{
    display:block;
    color:#667089;
    line-height:1.4;
}

.coverage-legend{
    position:absolute;
    left:24px;
    bottom:24px;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(10px);
    border-radius:18px;
    padding:20px;
    z-index:3;
}

.coverage-legend div{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    color:#667089;
}

.coverage-legend div:last-child{
    margin-bottom:0;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
}

.headquarters{
    background:#18B7B3;
}

.partner{
    background:#2E8DF7;
}

.research{
    background:#8B6CFF;
}

.line{
    width:24px;
    height:2px;
    background:#BFD1F3;
}

/* barra inferior */

.coverage-metrics{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:white;
    border:1px solid rgba(24,183,179,.25);
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(19,23,90,.05);
}

.metric{
    display:flex;
    align-items:center;
    gap:18px;
    padding:28px;
}

.metric:not(:last-child){
    border-right:1px solid #E6EAF5;
}

.metric-icon{
    width:56px;
    height:56px;
    border-radius:50%;
    background:#E8FAF9;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    color:#18B7B3;
}

.metric strong{
    display:block;
    font-size:34px;
    color:#151A63;
}

.metric span{
    color:#667089;
}

.coverage-footer-text{
    text-align:right;
    margin-top:22px;
    font-size:34px;
    color:#C5B8E8;
    font-style:italic;
}

/* responsive */

@media(max-width:1100px){

.coverage-card{
    grid-template-columns:1fr;
}

.coverage-map img{
    height:460px;
}

.coverage-metrics{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.coverage-header h2{
    font-size:46px;
}

.coverage-header p{
    font-size:18px;
}

.coverage-stats{
    position:relative;
    right:auto;
    bottom:auto;
    flex-direction:row;
    justify-content:space-around;
    background:white;
    padding:22px;
}

.coverage-quote{
    display:none;
}

.coverage-metrics{
    grid-template-columns:1fr;
}

.metric:not(:last-child){
    border-right:none;
    border-bottom:1px solid #E6EAF5;
}

.coverage-footer-text{
    text-align:center;
    font-size:26px;
}

}

/*=========================================
=            FOOTER CTA                  =
=========================================*/

.footer-cta{
    background:#F7F8FC;
    margin-top:40px;
}

.footer-cta-bg{

    position:relative;
    overflow:hidden;

    width:100%;

    background:linear-gradient(90deg,#2B1E88 0%,#16235F 100%);

}

/* ADN decorativo */

.footer-cta-bg::after{

    content:"";

    position:absolute;

    right:-30px;
    bottom:-25px;

    width:260px;
    height:170px;

    background:url("../assets/images/dna-overlay-footer.png") no-repeat center;

    background-size:contain;

    opacity:.15;

}

.footer-cta-content{

    min-height:140px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:40px;

    padding:34px 0;

}

.footer-text h2{

    font-size:44px;
    color:white;
    margin-bottom:10px;
    font-weight:800;

}

.footer-text p{

    color:rgba(255,255,255,.82);

    max-width:560px;

    line-height:1.8;

    font-size:17px;

}

.footer-cta-btn{

    display:flex;
    align-items:center;
    gap:12px;

    padding:18px 30px;

    border:2px solid rgba(255,255,255,.35);

    border-radius:16px;

    color:white;
    text-decoration:none;
    font-weight:700;

    transition:.3s;

}

.footer-cta-btn:hover{

    background:white;
    color:#151A63;

}

@media(max-width:992px){

.footer-cta-content{

flex-direction:column;
text-align:center;

padding:42px 0;

}

}

/*=========================================
=               FOOTER                  =
=========================================*/

.site-footer{

    background:#07154A;

    color:white;

}

.site-footer .container{

    padding:54px 0 26px;

}

.footer-grid{

    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;

    gap:46px;

}

.footer-brand img{

    width:190px;

    margin-bottom:22px;

}

.footer-brand p{

    color:#B8C5EA;

    line-height:1.8;

    margin-bottom:26px;

    font-size:15px;

}

.footer-social{

    display:flex;
    gap:14px;

}

.footer-social a{

    width:42px;
    height:42px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.2);

    color:white;

    text-decoration:none;

    transition:.3s;

}

.footer-social a:hover{

    background:#18B7B3;

    border-color:#18B7B3;

}

.footer-links h4,
.footer-contact h4{

    font-size:18px;

    margin-bottom:22px;

}

.footer-links{

    display:flex;
    flex-direction:column;
    gap:12px;

}

.footer-links a{

    color:#B8C5EA;

    text-decoration:none;

    transition:.25s;

}

.footer-links a:hover{

    color:#39D0C6;

}

.footer-contact p{

    display:flex;
    align-items:center;
    gap:10px;

    color:#B8C5EA;

    margin-bottom:16px;

    line-height:1.6;

}

.footer-bottom{

    margin-top:46px;
    padding-top:24px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;
    justify-content:space-between;
    align-items:center;

    flex-wrap:wrap;
    gap:18px;

}

.footer-bottom span{

    color:#93A3D5;

    font-size:14px;

}

.footer-bottom div{

    display:flex;
    gap:26px;

}

.footer-bottom a{

    color:#93A3D5;

    text-decoration:none;

    font-size:14px;

}

.footer-bottom a:hover{

    color:white;

}

/*=========================================
=              RESPONSIVE               =
=========================================*/

@media(max-width:992px){

.footer-cta-content{

flex-direction:column;
text-align:center;

}

.footer-grid{

grid-template-columns:1fr 1fr;

}

.footer-bottom{

flex-direction:column;
text-align:center;

}

}

@media(max-width:576px){

.footer-grid{

grid-template-columns:1fr;

}

.footer-text h2{

font-size:34px;

}

.footer-cta-btn{

width:100%;
justify-content:center;

}

}


/*=========================================
=          MOBILE NAVIGATION              =
=========================================*/

.hamburger{
    display:none;
    width:42px;
    height:42px;
    background:none;
    border:none;
    cursor:pointer;
    padding:0;
    position:relative;
    z-index:1002;
}

.hamburger span{
    display:block;
    width:24px;
    height:2px;
    background:#151A63;
    margin:5px auto;
    border-radius:2px;
    transition:.3s ease;
}

/* Animación X */

.hamburger.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

/* Responsive */

@media(max-width:992px){

    .hamburger{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
    }

    .nav-menu{
        position:fixed;
        top:66px;              /* misma altura del navbar */
        left:0;
        width:100%;

        background:rgba(255,255,255,.97);
        backdrop-filter:blur(20px);

        display:flex;
        flex-direction:column;
        align-items:center;
        gap:24px;

        padding:35px 20px;

        transform:translateY(-120%);
        opacity:0;
        visibility:hidden;

        transition:.35s ease;

        border-bottom:1px solid rgba(21,26,99,.06);
    }

    .nav-menu.active{
        transform:translateY(0);
        opacity:1;
        visibility:visible;
    }

    .nav-button{
        display:none;
    }

    .nav-menu a{
        font-size:18px;
        font-weight:600;
    }

}