*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

:root{
    --nav-height:112px;
    --accent:#f1b631;
    --accent-dark:#e09d12;
    --text-dark:#1f1f1f;
    --text-soft:#5b5b5b;
    --light-bg:#f7f5f2;
}

html, body{
    width:100%;
    overflow-x:hidden;
    background:#fff;
}

body{
    background:#fff;
    color:#fff;
    padding-top:var(--nav-height);
}

/* NAVBAR */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:var(--nav-height);
    padding:0 60px;
    background:#ffffff;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    gap:30px;
}

.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.logo img{
    height:90px;
    width:auto;
    display:block;
}

/* MENU CENTRO */

.nav-menu{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:42px;
    flex:1;
    position:relative;
}

.nav-main-link{
    text-decoration:none;
    color:#202020;
    font-size:17px;
    font-weight:600;
    letter-spacing:0.3px;
    transition:color 0.25s ease;
    white-space:nowrap;
    display:inline-flex;
    align-items:center;
    height:var(--nav-height);
    position:relative;
}

.nav-main-link:hover{
    color:#e67e22;
}

.nav-main-link.active{
    color:#e67e22;
}

.nav-dropdown{
    position:relative;
    display:flex;
    align-items:center;
    height:var(--nav-height);
}

.nav-dropdown-menu{
    position:absolute;
    top:calc(100% - 14px);
    left:50%;
    transform:translateX(-50%) translateY(14px);
    width:220px;
    min-width:220px;
    max-width:220px;
    background:#ffffff;
    border-radius:14px;
    padding:6px;
    box-shadow:0 14px 30px rgba(0,0,0,0.12);
    border:1px solid rgba(0,0,0,0.05);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:
        opacity 0.24s ease,
        transform 0.24s ease,
        visibility 0.24s ease;
    z-index:1300;
    overflow:hidden;
}

.nav-dropdown::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:100%;
    height:18px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateX(-50%) translateY(0);
}

.nav-dropdown-menu a{
    display:block;
    text-decoration:none;
    color:#222;
    font-size:14px;
    font-weight:500;
    line-height:1.35;
    padding:10px 16px;
    white-space:normal;
    border-radius:10px;
    margin:2px 0;
    background:#ffffff;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}

.nav-dropdown-menu a:hover{
    color:#ffffff;
    background:#f4511e;
    padding-left:20px;
}

/* PILLS DERECHA */

.nav-pills{
    display:flex;
    align-items:center;
    gap:14px;
    flex-shrink:0;
}

.pill-dropdown{
    position:relative;
}

.pill-btn{
    border:none;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:13px 28px;
    border-radius:30px;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:0.25s ease;
    white-space:nowrap;
}

.pill-blue{
    background:#0d5d8c;
    color:#fff;
}

.pill-blue:hover{
    background:#094c72;
}

.pill-orange{
    background:#f4511e;
    color:#fff;
}

.pill-orange:hover{
    background:#d84315;
}

.pill-dropdown-menu{
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    width:210px;
    min-width:210px;
    max-width:210px;
    background:#ffffff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 14px 28px rgba(0,0,0,0.14);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:0.25s ease;
    z-index:1200;
    border:1px solid rgba(0,0,0,0.06);
    padding:6px;
}

.pill-dropdown::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:100%;
    height:16px;
}

.pill-dropdown.active .pill-dropdown-menu,
.pill-dropdown:hover .pill-dropdown-menu,
.pill-dropdown:focus-within .pill-dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.pill-dropdown-menu a{
    display:block;
    color:#1f1f1f;
    text-decoration:none;
    padding:10px 16px;
    font-size:14px;
    font-weight:600;
    border-bottom:none;
    border-radius:10px;
    margin:2px 0;
    background:#fff;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        padding-left 0.25s ease;
}

.pill-dropdown-menu a:last-child{
    border-bottom:none;
}

/* ORIENTACION MIGRATORIA EN AZUL */
.pill-dropdown-menu a:hover{
    background:#0d5d8c;
    color:#ffffff;
    padding-left:20px;
}

/* LOGIN */

.login-btn{
    background:#e84545;
    color:#fff;
    border:none;
    padding:12px 28px;
    border-radius:30px;
    cursor:pointer;
    font-weight:700;
    font-size:15px;
    transition:0.3s;
    white-space:nowrap;
}

.login-btn:hover{
    background:#c93030;
}

/* HAMBURGUESA */

.menu-toggle{
    display:none;
    width:42px;
    height:42px;
    background:transparent;
    border:none;
    cursor:pointer;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
}

.menu-toggle span{
    display:block;
    width:24px;
    height:2px;
    background:#333;
    border-radius:2px;
}

/* MENU MOVIL */

.mobile-menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.35);
    opacity:0;
    visibility:hidden;
    transition:0.3s ease;
    z-index:1098;
}

.mobile-menu{
    position:fixed;
    top:0;
    right:-320px;
    width:300px;
    max-width:85%;
    height:100vh;
    background:#4a4a4a;
    color:#fff;
    z-index:1099;
    transition:right 0.35s ease;
    padding:26px 24px 40px;
    overflow-y:auto;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu-overlay.active{
    opacity:1;
    visibility:visible;
}

.mobile-menu-close{
    background:none;
    border:none;
    color:#fff;
    font-size:38px;
    line-height:1;
    cursor:pointer;
    display:block;
    margin-left:auto;
    margin-bottom:25px;
}

.mobile-nav-links{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.mobile-nav-links > a,
.mobile-nav-group > a{
    text-decoration:none;
    color:#fff;
    font-size:20px;
    font-weight:500;
    line-height:1.3;
    transition:0.25s ease;
    display:block;
}

.mobile-nav-links > a:hover,
.mobile-nav-group > a:hover{
    color:#f1b631;
}

.mobile-nav-group{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.mobile-submenu{
    display:flex;
    flex-direction:column;
    gap:8px;
    padding-left:14px;
    border-left:2px solid rgba(241,182,49,0.5);
}

.mobile-submenu a{
    text-decoration:none;
    color:rgba(255,255,255,0.82);
    font-size:15px;
    line-height:1.35;
    transition:0.25s ease;
}

.mobile-submenu a:hover{
    color:#f1b631;
}

/* SECCIONES */

.about-hero{
    position:relative;
    width:100%;
    min-height:520px;
    padding:80px 0;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.about-hero img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.about-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.about-hero .overlay.dark-strong{
    background:rgba(0,0,0,0.58);
}

.about-content{
    position:relative;
    z-index:2;
    width:100%;
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:0 90px;
}

.about-content.right{
    justify-content:flex-end;
}

.about-content.left{
    justify-content:flex-start;
}

.about-text{
    max-width:560px;
}

.about-text h1,
.about-text h2{
    font-size:54px;
    line-height:1;
    font-weight:700;
    margin-bottom:26px;
    text-transform:uppercase;
}

.about-text p{
    font-size:22px;
    line-height:1.7;
    margin-bottom:18px;
    color:rgba(255,255,255,0.95);
    text-align:justify;
    text-justify:inter-word;
}

.about-text h2.mt{
    margin-top:26px;
}

.accent-line{
    width:4px;
    min-height:220px;
    background:var(--accent);
    border-radius:3px;
    margin-top:6px;
    flex-shrink:0;
}

.right-text .about-content{
    justify-content:flex-end;
}

.left-text .about-content{
    justify-content:flex-start;
}

/* SECCION DONDE ESTAMOS */

.where-section{
    width:100%;
    background:#ffffff;
    padding:55px 20px 70px;
}

.where-container{
    width:min(1480px, 94%);
    margin:0 auto;
}

.where-title{
    text-align:center;
    font-size:64px;
    font-weight:800;
    color:#0b5d8b;
    text-transform:uppercase;
    margin-bottom:28px;
}

.map-interactive{
    position:relative;
    width:100%;
    max-width:1280px;
    margin:0 auto;
    background:#f5f5f5;
    overflow:visible;
    line-height:0;
}

.map-interactive .where-map{
    width:100%;
    display:block;
    height:auto;
    object-fit:contain;
    user-select:none;
    -webkit-user-drag:none;
}

.map-marker{
    position:absolute;
    transform:translate(-50%, -100%);
    z-index:5;
}

.marker-btn{
    width:13px;
    height:13px;
    border:none;
    cursor:pointer;
    background:#f25a22;
    border-radius:50% 50% 50% 0;
    transform:rotate(-45deg);
    position:relative;
    box-shadow:0 0 0 5px rgba(214,219,224,0.78);
    transition:transform 0.18s ease, box-shadow 0.18s ease;
}

.marker-btn::after{
    content:"";
    position:absolute;
    inset:2px;
    background:#f25a22;
    border-radius:50% 50% 50% 0;
}

.marker-btn:hover{
    transform:rotate(-45deg) scale(1.05);
    box-shadow:0 0 0 6px rgba(214,219,224,0.90);
}

/* BURBUJA */

.map-popup{
    position:absolute;
    min-width:110px;
    max-width:170px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 24px rgba(0,0,0,0.16);
    padding:10px 14px;
    z-index:20;
    display:none;
    transform:translate(-50%, -122%);
}

.map-popup.show{
    display:block;
}

.map-popup::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-6px;
    transform:translateX(-50%) rotate(45deg);
    width:12px;
    height:12px;
    background:#fff;
}

.map-popup a{
    color:#1b5fd1;
    font-size:13px;
    font-weight:700;
    text-decoration:underline;
    line-height:1.3;
    word-break:break-word;
}

/* HERO OBJETIVOS */

.objetivos-hero .about-content{
    align-items:flex-start;
}

.objetivos-text{
    max-width:920px;
}

.objetivos-text h2{
    max-width:700px;
    margin-bottom:34px;
}

.objetivos-list{
    display:grid;
    grid-template-columns:repeat(2, minmax(280px, 1fr));
    gap:26px 42px;
    max-width:920px;
}

.objetivo-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
}

.objetivo-num{
    color:var(--accent);
    font-size:60px;
    font-weight:800;
    line-height:0.95;
    min-width:78px;
    display:block;
}

.objetivo-item p{
    margin:0;
    font-size:23px;
    line-height:1.38;
    text-align:left;
    color:#fff;
    font-weight:600;
}

/* DETALLE OBJETIVOS */

.objetivos-detalle{
    background:var(--light-bg);
    color:var(--text-dark);
    padding:90px 90px 100px;
}

.objetivos-detalle-container{
    max-width:1320px;
    margin:0 auto;
}

.objetivos-detalle h2{
    text-align:center;
    font-size:56px;
    font-weight:800;
    color:var(--text-dark);
    margin-bottom:60px;
}

.objetivos-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:40px 44px;
}

.detalle-card{
    background:transparent;
    border-left:3px solid rgba(241, 182, 49, 0.85);
    padding:0 12px 0 26px;
}

.detalle-head{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:18px;
}

.detalle-num{
    color:var(--accent-dark);
    font-size:52px;
    font-weight:800;
    line-height:0.95;
    min-width:64px;
}

.detalle-card h3{
    font-size:24px;
    line-height:1.28;
    color:var(--text-dark);
    font-weight:800;
    margin-top:4px;
}

.detalle-card p{
    color:#333;
    font-size:21px;
    line-height:1.7;
    text-align:left;
}

/* FOOTER COMPACTO BLANCO */

.site-footer{
    width:100%;
    margin-top:0;
    background:
        linear-gradient(
            90deg,
            rgba(11,93,139,0.08) 0%,
            rgba(11,93,139,0.05) 30%,
            rgba(246,163,0,0.06) 60%,
            rgba(255,74,31,0.07) 100%
        ),
        #ffffff;
    color:#1f1f1f;
    position:relative;
    overflow:hidden;
    border-top:1px solid rgba(0,0,0,0.08);
}

.footer-stripe{
    height:4px;
    background:linear-gradient(
        90deg,
        #0b5d8b 0%,
        #0b5d8b 35%,
        #f6a300 65%,
        #ff4a1f 100%
    );
}

.stripe-blue{
    background:#0b5d8b;
}

.stripe-orange{
    background:#f6a300;
}

.stripe-red{
    background:#ff4a1f;
}

.footer-main{
    width:min(1200px, 92%);
    margin:0 auto;
    padding:32px 0 22px;
    display:grid;
    grid-template-columns:1.25fr 0.75fr;
    gap:40px;
    align-items:center;
}

.footer-main-compact{
    grid-template-columns:1.25fr 0.75fr;
}

.footer-brand{
    position:relative;
}

.compact-brand{
    display:flex;
    align-items:center;
    gap:22px;
}

.footer-logo-box{
    width:260px;
    background:#ffffff;
    border-radius:20px;
    padding:14px 16px;
    box-shadow:0 10px 24px rgba(0,0,0,0.10);
    margin-bottom:0;
    flex-shrink:0;
    border:1px solid rgba(0,0,0,0.06);
}

.footer-logo-box img{
    width:100%;
    display:block;
}

.footer-brand-text{
    max-width:560px;
}

.footer-brand p{
    font-size:15px;
    line-height:1.7;
    color:#555;
    max-width:none;
}

.footer-contact h3{
    font-size:21px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:14px;
    color:#1f1f1f;
}

.footer-contact a{
    display:block;
    color:#333;
    text-decoration:none;
    font-size:15px;
    line-height:1.7;
    margin-bottom:5px;
    transition:all 0.25s ease;
}

.footer-contact a:hover{
    color:#ff6a00;
}

.footer-social{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:14px;
}

.footer-social a{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:rgba(11,93,139,0.08);
    color:#0b5d8b;
    font-size:16px;
    transition:all 0.25s ease;
}

.footer-social a:hover{
    background:#ff6a00;
    color:#fff;
    transform:translateY(-2px);
}

.footer-bottom{
    width:min(1200px, 92%);
    margin:0 auto;
    padding:14px 0 18px;
    border-top:1px solid rgba(0,0,0,0.10);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.footer-bottom p{
    font-size:14px;
    color:#666;
}

.footer-bottom-links{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.footer-bottom-links a{
    color:#444;
    text-decoration:none;
    font-size:14px;
    transition:color 0.25s ease;
}

.footer-bottom-links a:hover{
    color:#ff6a00;
}

.site-footer::before,
.site-footer::after{
    display:none;
}

/* TABLET */

@media (max-width: 1100px){
    :root{
        --nav-height:92px;
    }

    .navbar{
        padding:0 30px;
        gap:18px;
    }

    .logo img{
        height:70px;
    }

    .nav-menu{
        gap:24px;
    }

    .nav-main-link{
        font-size:15px;
    }

    .nav-dropdown-menu{
        width:220px;
        min-width:220px;
        max-width:220px;
        padding:6px;
    }

    .pill-btn,
    .login-btn{
        padding:11px 20px;
        font-size:14px;
    }

    .about-content{
        padding:0 36px;
        gap:16px;
    }

    .about-text{
        max-width:500px;
    }

    .about-text h1,
    .about-text h2{
        font-size:40px;
        line-height:1.02;
        margin-bottom:20px;
    }

    .about-text p{
        font-size:20px;
        line-height:1.65;
    }

    .accent-line{
        min-height:180px;
    }

    .where-section{
        padding:46px 16px 58px;
    }

    .where-container{
        width:min(1500px, 96%);
    }

    .where-title{
        font-size:46px;
        margin-bottom:24px;
    }

    .map-interactive{
        max-width:1100px;
    }

    .marker-btn{
        width:12px;
        height:12px;
        box-shadow:0 0 0 5px rgba(214,219,224,0.82);
    }

    .marker-btn::after{
        inset:2px;
    }

    .marker-btn:hover{
        box-shadow:0 0 0 6px rgba(214,219,224,0.90);
    }

    .objetivos-text{
        max-width:100%;
    }

    .objetivos-list{
        grid-template-columns:1fr 1fr;
        gap:22px 26px;
    }

    .objetivo-num{
        font-size:46px;
        min-width:58px;
    }

    .objetivo-item p{
        font-size:19px;
    }

    .objetivos-detalle{
        padding:70px 36px 80px;
    }

    .objetivos-detalle h2{
        font-size:42px;
        margin-bottom:42px;
    }

    .objetivos-grid{
        gap:34px 28px;
    }

    .detalle-num{
        font-size:42px;
        min-width:52px;
    }

    .detalle-card h3{
        font-size:21px;
    }

    .detalle-card p{
        font-size:18px;
        line-height:1.65;
    }

    .footer-main{
        grid-template-columns:1fr;
        gap:26px;
        align-items:start;
    }

    .compact-brand{
        align-items:flex-start;
    }

    .footer-brand-text{
        max-width:100%;
    }
}

@media (max-width: 900px){
    .footer-main-compact{
        grid-template-columns:1fr;
    }
}

/* MOVIL */

@media (max-width: 768px){
    :root{
        --nav-height:76px;
    }

    .navbar{
        padding:0 16px;
        gap:12px;
        box-shadow:none;
    }

    .logo img{
        height:48px;
    }

    .nav-menu,
    .nav-pills{
        display:none;
    }

    .menu-toggle{
        display:flex;
        margin-left:auto;
    }

    .about-hero{
        min-height:420px;
        padding:54px 0;
        align-items:flex-end;
    }

    .about-content{
        padding:0 20px;
        gap:12px;
        align-items:flex-start;
    }

    .about-text{
        max-width:100%;
    }

    .about-text h1,
    .about-text h2{
        font-size:30px;
        line-height:1.05;
        margin-bottom:16px;
    }

    .about-text p{
        font-size:17px;
        line-height:1.56;
        margin-bottom:12px;
    }

    .accent-line{
        min-height:135px;
        margin-top:4px;
    }

    .mobile-nav-links > a,
    .mobile-nav-group > a{
        font-size:18px;
    }

    .mobile-submenu a{
        font-size:14px;
    }

    .where-section{
        padding:40px 8px 50px;
    }

    .where-container{
        width:100%;
    }

    .where-title{
        font-size:34px;
        margin-bottom:18px;
    }

    .map-interactive{
        max-width:none;
        width:100%;
    }

    .marker-btn{
        width:10px;
        height:10px;
        box-shadow:0 0 0 4px rgba(214,219,224,0.80);
    }

    .marker-btn::after{
        inset:2px;
    }

    .marker-btn:hover{
        box-shadow:0 0 0 5px rgba(214,219,224,0.90);
    }

    .map-popup{
        min-width:92px;
        max-width:130px;
        padding:9px 12px;
    }

    .map-popup a{
        font-size:12px;
    }

    .objetivos-hero{
        min-height:auto;
        padding-top:70px;
        padding-bottom:40px;
    }

    .objetivos-list{
        grid-template-columns:1fr;
        gap:18px;
    }

    .objetivo-item{
        gap:12px;
    }

    .objetivo-num{
        font-size:34px;
        min-width:42px;
    }

    .objetivo-item p{
        font-size:17px;
        line-height:1.4;
    }

    .objetivos-detalle{
        padding:54px 20px 60px;
    }

    .objetivos-detalle h2{
        font-size:32px;
        margin-bottom:30px;
    }

    .objetivos-grid{
        grid-template-columns:1fr;
        gap:28px;
    }

    .detalle-card{
        padding-left:18px;
    }

    .detalle-head{
        gap:12px;
        margin-bottom:12px;
    }

    .detalle-num{
        font-size:34px;
        min-width:42px;
    }

    .detalle-card h3{
        font-size:18px;
        line-height:1.3;
    }

    .detalle-card p{
        font-size:15px;
        line-height:1.6;
    }

    .site-footer{
        margin-top:0;
    }

    .footer-stripe{
        height:4px;
    }

    .footer-main{
        width:100%;
        padding:24px 20px 18px;
        gap:20px;
    }

    .compact-brand{
        flex-direction:column;
        align-items:flex-start;
        gap:14px;
    }

    .footer-logo-box{
        width:120px;
        border-radius:16px;
        padding:10px 12px;
        margin-bottom:0;
    }

    .footer-brand p{
        font-size:14px;
        line-height:1.6;
    }

    .footer-contact h3{
        font-size:19px;
        margin-bottom:10px;
    }

    .footer-contact a{
        font-size:14px;
        margin-bottom:4px;
    }

    .footer-social{
        gap:8px;
        margin-top:12px;
    }

    .footer-social a{
        width:36px;
        height:36px;
        font-size:15px;
    }

    .footer-bottom{
        width:100%;
        padding:12px 20px 16px;
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .footer-bottom p,
    .footer-bottom-links a{
        font-size:13px;
    }
}

/* MOVIL PEQUEÑO */

@media (max-width: 480px){
    :root{
        --nav-height:68px;
    }

    .navbar{
        padding:0 14px;
    }

    .logo img{
        height:40px;
    }

    .menu-toggle{
        width:40px;
        height:40px;
    }

    .menu-toggle span{
        width:22px;
    }

    .about-hero{
        min-height:360px;
        padding:42px 0;
    }

    .about-content{
        padding:0 16px;
        gap:10px;
    }

    .about-text h1,
    .about-text h2{
        font-size:24px;
        line-height:1.05;
        margin-bottom:14px;
    }

    .about-text p{
        font-size:16px;
        line-height:1.5;
        margin-bottom:10px;
    }

    .accent-line{
        min-height:118px;
        width:3px;
    }

    .mobile-menu{
        width:280px;
        padding:22px 20px 34px;
    }

    .mobile-nav-links > a,
    .mobile-nav-group > a{
        font-size:18px;
    }

    .mobile-submenu a{
        font-size:13px;
    }

    .where-section{
        padding:34px 4px 42px;
    }

    .where-title{
        font-size:26px;
        margin-bottom:14px;
    }

    .marker-btn{
        width:9px;
        height:9px;
        box-shadow:0 0 0 3px rgba(214,219,224,0.82);
    }

    .marker-btn::after{
        inset:2px;
    }

    .marker-btn:hover{
        box-shadow:0 0 0 4px rgba(214,219,224,0.90);
    }

    .map-popup{
        min-width:82px;
        max-width:110px;
        padding:8px 10px;
    }

    .map-popup a{
        font-size:11px;
    }

    .objetivos-hero{
        padding-top:60px;
        padding-bottom:32px;
    }

    .objetivos-text h2{
        margin-bottom:22px;
    }

    .objetivo-num{
        font-size:30px;
        min-width:38px;
    }

    .objetivo-item p{
        font-size:15px;
    }

    .objetivos-detalle{
        padding:46px 16px 50px;
    }

    .objetivos-detalle h2{
        font-size:27px;
        margin-bottom:24px;
    }

    .detalle-num{
        font-size:30px;
        min-width:38px;
    }

    .detalle-card h3{
        font-size:16px;
    }

    .detalle-card p{
        font-size:14px;
        line-height:1.55;
    }

    .footer-main{
        padding:22px 16px 16px;
    }

    .footer-logo-box{
        width:110px;
    }

    .footer-brand p{
        font-size:13px;
    }

    .footer-contact h3{
        font-size:18px;
    }

    .footer-contact a{
        font-size:13px;
    }

    .footer-bottom{
        padding:10px 16px 14px;
    }
}

/* REDES SOCIALES */

.social-bar{
    position:fixed;
    top:154px;
    left:0;
    display:flex;
    flex-direction:column;
    z-index:999;

    opacity:1;
    visibility:visible;
    transform:translateX(0);

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease,
        transform 0.8s ease;
}

.social-bar.hidden{
    opacity:0;
    visibility:hidden;
    transform:translateX(-30px) scale(0.95);
    pointer-events:none;
}

.social-btn{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:all 0.3s ease;
}

.social-btn i{
    color:#ffffff;
    font-size:26px;
}

.social-btn.facebook{ background:#8da6c2; }
.social-btn.tiktok{ background:#3a3a3a; }
.social-btn.youtube{ background:#e7b1b1; }
.social-btn.instagram{ background:#c9a7c7; }

.social-btn.facebook:hover{ background:#1877f2; }
.social-btn.tiktok:hover{ background:#000000; }
.social-btn.youtube:hover{ background:#ff0000; }
.social-btn.instagram:hover{ background:linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7); }

.social-btn:hover{
    transform:translateX(3px);
}

/* REDES SOCIALES RESPONSIVE */

@media (max-width: 768px){

    .social-bar{
        top:92px;
    }

    .social-btn{
        width:38px;
        height:38px;
    }

    .social-btn i{
        font-size:20px;
    }
}

@media (max-width: 480px){

    .social-bar{
        top:86px;
    }

    .social-btn{
        width:34px;
        height:34px;
    }

    .social-btn i{
        font-size:18px;
    }
}

/* =====================================================
   NAVBAR CON LOGIN
===================================================== */

.navbar {
    display: grid;
    grid-template-columns: 250px minmax(420px, 1fr) auto;
    align-items: center;

    width: 100%;
    height: var(--nav-height);

    padding: 0 38px;
    column-gap: 18px;

    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);

    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    box-sizing: border-box;
}


/* El menú central permanece centrado */

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 42px;

    width: max-content;
    max-width: 100%;

    margin: 0 auto;

    transform: none;
}


/* =====================================================
   ZONA LOGIN + ORIENTACIÓN MIGRATORIA
===================================================== */

.nav-pills {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 12px;

    margin: 0;

    flex-shrink: 0;
}


/* La hamburguesa no debe ocupar espacio en escritorio */

.nav-actions {
    display: none;
}


/* =====================================================
   BOTÓN LOGIN
===================================================== */

.navbar-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 46px;
    padding: 0 23px;

    background: #f58220;
    color: #ffffff;

    border: none;
    border-radius: 30px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    white-space: nowrap;
    flex-shrink: 0;

    box-shadow: 0 5px 14px rgba(245, 130, 32, 0.22);

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.navbar-login-btn i {
    font-size: 14px;
}


.navbar-login-btn:hover {
    background: #dc6d10;
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 8px 18px rgba(245, 130, 32, 0.32);
}


/* Botón azul ligeramente más compacto */

.nav-pills .pill-btn {
    padding-left: 22px;
    padding-right: 22px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1200px) {

    .navbar {
        grid-template-columns: 210px minmax(350px, 1fr) auto;

        padding: 0 24px;
        column-gap: 12px;
    }


    .nav-menu {
        gap: 25px;
    }


    .nav-main-link {
        font-size: 15px;
    }


    .navbar-login-btn {
        min-height: 42px;

        padding: 0 17px;

        font-size: 14px;
    }


    .nav-pills {
        gap: 8px;
    }


    .nav-pills .pill-btn {
        padding-left: 17px;
        padding-right: 17px;

        font-size: 14px;
    }

}


/* =====================================================
   TELÉFONO
===================================================== */

@media (max-width: 768px) {

    .navbar {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        width: 100% !important;

        padding: 0 14px !important;

        gap: 7px !important;

        box-sizing: border-box !important;
    }


    /* Logo a la izquierda */

    .logo {
        margin-right: auto;

        flex-shrink: 0;
    }


    /* Ocultar navegación de escritorio */

    .nav-menu {
        display: none !important;
    }


    /* Zona derecha */

    .nav-pills {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;

        margin: 0 !important;

        gap: 0 !important;

        flex-shrink: 0;
    }


    /* Ocultar Orientación Migratoria en móvil */

    .nav-pills .pill-dropdown {
        display: none !important;
    }


    /* Login visible */

    .navbar-login-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;

        min-height: 38px;

        padding: 0 15px;

        border-radius: 22px;

        font-size: 13px;

        gap: 6px;

        box-shadow: none;

        flex-shrink: 0;
    }


    .navbar-login-btn i {
        font-size: 12px;
    }


    /* Hamburguesa al lado del login */

    .nav-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        margin: 0 !important;
        padding: 0 !important;

        flex-shrink: 0;
    }


    .menu-toggle {
        display: flex !important;

        width: 40px;
        height: 40px;

        padding: 0 !important;
        margin: 0 !important;

        align-items: center;
        justify-content: center;

        flex-direction: column;

        gap: 5px;

        flex-shrink: 0;
    }


    .menu-toggle span {
        display: block;

        width: 24px;
        height: 2px;

        margin: 0;

        background: #333333;

        border-radius: 2px;
    }

}


/* =====================================================
   TELÉFONOS PEQUEÑOS
===================================================== */

@media (max-width: 480px) {

    .navbar {
        padding: 0 10px !important;

        gap: 3px !important;
    }


    .navbar-login-btn {
        min-height: 35px;

        padding: 0 12px;

        font-size: 12px;

        gap: 5px;
    }


    .navbar-login-btn i {
        font-size: 11px;
    }


    .menu-toggle {
        width: 37px;
        height: 37px;
    }


    .menu-toggle span {
        width: 22px;
    }

}


/* =====================================================
   TELÉFONOS MUY ESTRECHOS
===================================================== */

@media (max-width: 370px) {

    .navbar {
        padding: 0 8px !important;
    }


    .navbar-login-btn {
        min-height: 34px;

        padding: 0 10px;

        font-size: 11px;
    }


    .navbar-login-btn i {
        display: none;
    }


    .menu-toggle {
        width: 34px;
        height: 34px;
    }


    .menu-toggle span {
        width: 20px;
    }

}