:root{
    --primary-gold:#d4af37;
    --soft-gold:#e7c85b;
    --deep-blue:#5c84c3;
    --dark-blue:#2e4f7f;
    --teal:#2f9c95;
    --soft-teal:#6bbab4;
    --light-bg:#f8f9fb;
    --text-dark:#243142;
    --text-muted:#5f6b7a;
    --white:#ffffff;
    --border:#e8ebef;
    --shadow:0 20px 40px rgba(31, 50, 81, 0.08);
    --radius:22px;
}

*{
    scroll-behavior:smooth;
}
body{
    font-family:'Inter', sans-serif;
    color:var(--text-dark);
    background:var(--white);
}
h1,h2,h3,h4,.brand-title{
    font-family:'Merriweather', serif;
}
.topbar{
    background:linear-gradient(90deg, var(--dark-blue), var(--deep-blue));
    color:#fff;
    font-size:14px;
}
.topbar a{
    color:#fff;
    text-decoration:none;
}
.lang-switch .btn{
    border-radius:50px;
    padding:.35rem .9rem;
    font-size:.85rem;
    border:1px solid rgba(255,255,255,.35);
    color:#fff;
}
.lang-switch .btn.active,
.lang-switch .btn:hover{
    background:#fff;
    color:var(--dark-blue);
}

.main-header{
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(8px);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}
.navbar-brand img{
    width:120px;
    height:120px;
    object-fit:contain;
    border-radius:50%;
    background:#fff;
}
.brand-wrap{
    display:flex;
    align-items:center;
    gap:14px;
}
.brand-title{
    font-size:2rem;
    line-height:1.3;
    color:var(--dark-blue);
    margin:0;
}
.brand-subtitle{
    color:var(--text-muted);
    font-size:.88rem;
    margin:0;
    font-weight: 500;
}
.nav-link{
    color:var(--text-dark);
    font-weight:600;
    margin:0 .3rem;
    position:relative;
}
.nav-link:hover,
.nav-link.active{
    color:var(--dark-blue);
}
.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:linear-gradient(90deg,var(--primary-gold),var(--teal));
    transition:.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}
.dropdown-toggle::after{
    margin-left:.45rem;
    vertical-align:.15em;
}
.dropdown-menu{
    border:none;
    border-radius:18px;
    padding:.8rem;
    box-shadow:0 18px 40px rgba(31, 50, 81, 0.12);
    border-top:3px solid var(--primary-gold);
    overflow-y: scroll;
    max-height: 75vh;
    width: 21rem;
}
.dropdown-item{
    border-radius:12px;
    padding:.75rem 1rem;
    font-weight:600;
    color:var(--text-dark);
    transition:.25s ease;
}
.dropdown-item:hover,
.dropdown-item:focus{
    background:linear-gradient(135deg, rgba(212,175,55,.12), rgba(47,156,149,.12));
    color:var(--dark-blue);
}
.dropdown-subtitle{
    font-size: .7rem;
    text-transform: uppercase;

    color: var(--bs-nav-link-hover-color);
    font-weight: 700;
    padding: 0px;
    text-decoration: navajowhite;
    margin-bottom: 12.4rem;
}


.hero-section{
    background:linear-gradient(135deg, rgba(248,249,251,.95), rgba(255,255,255,.98));
    padding:2rem 0 0;
}
.hero-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:var(--shadow);
    border:1px solid rgba(212,175,55,.15);
}
.carousel-item{
    height:72vh;
    min-height:520px;
    position:relative;
}
.carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(.62);
}
.carousel-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(24,44,70,.75), rgba(24,44,70,.25));
}
.carousel-caption{
    text-align:left;
    left:8%;
    right:8%;
    bottom:16%;
    z-index:3;
}
.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,.15);
    color:#fff;
    padding:.65rem 1rem;
    border-radius:50px;
    font-size:.92rem;
    font-weight:600;
    backdrop-filter:blur(8px);
    margin-bottom:1rem;
    border:1px solid rgba(255,255,255,.2);
}
.carousel-caption h1{
    font-size:clamp(2rem,4vw,4rem);
    line-height:1.2;
    margin-bottom:1rem;
}
.carousel-caption p{
    max-width:760px;
    font-size:1.05rem;
    color:rgba(255,255,255,.92);
    line-height:1.8;
}
.hero-actions .btn{
    border-radius:50px;
    padding:.9rem 1.4rem;
    font-weight:700;
}
.btn-gold{
    background:linear-gradient(135deg,var(--primary-gold),var(--soft-gold));
    color:#fff;
    border:none;
    box-shadow:0 12px 24px rgba(212,175,55,.28);
}
.btn-gold:hover{
    color:#fff;
    transform:translateY(-1px);
}
.btn-outline-light-custom{
    background:transparent;
    color:#fff;
    border:1px solid rgba(255,255,255,.45);
}

.section{
    padding:90px 0;
}
.section-light{
    background:var(--light-bg);
}
.section-title-wrap{
    max-width:760px;
    margin:0 auto 3rem;
    text-align:center;
}
.section-kicker{
    color:var(--teal);
    font-weight:800;
    letter-spacing:.14em;
    text-transform:uppercase;
    font-size:.8rem;
    display:block;
    margin-bottom:.8rem;
}
.section-title{
    font-size:clamp(1.9rem,3.2vw,3rem);
    color:var(--dark-blue);
    margin-bottom:1rem;
}
.section-desc{
    color:var(--text-muted);
    font-size:1.02rem;
    line-height:1.9;
}

.info-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:2rem;
    height:100%;
    box-shadow:0 14px 30px rgba(36,49,66,.05);
    transition:.3s ease;
}
.info-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(36,49,66,.08);
}
.icon-box{
    width:68px;
    height:68px;
    display:grid;
    place-items:center;
    border-radius:18px;
    background:linear-gradient(135deg, rgba(212,175,55,.16), rgba(47,156,149,.18));
    color:var(--dark-blue);
    font-size:1.6rem;
    margin-bottom:1.3rem;
}
.info-card h3{
    font-size:1.35rem;
    margin-bottom:1rem;
    color:var(--dark-blue);
}
.info-card p{
    color:var(--text-muted);
    line-height:1.9;
    margin-bottom:0;
}

.news-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid var(--border);
    box-shadow:0 15px 35px rgba(36,49,66,.06);
    height:100%;
    transition:.3s ease;
}
.news-card:hover{
    transform:translateY(-8px);
}
.news-image{
    height:230px;
    overflow:hidden;
}
.news-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .45s ease;
}
.news-card:hover .news-image img{
    transform:scale(1.06);
}
.news-body{
    padding:1.6rem;
}
.news-meta{
    display:flex;
    gap:1rem;
    flex-wrap:wrap;
    font-size:.9rem;
    color:var(--text-muted);
    margin-bottom:.9rem;
}
.news-meta a{
    color: #6d6d6d;
    text-decoration: none;
    text-transform: uppercase;
}
.news-body h3{
    font-size:1.2rem;
    line-height:1.5;
    color:var(--dark-blue);
    margin-bottom:.8rem;
}
.news-body p{
    color:var(--text-muted);
    margin-bottom:1.2rem;
    line-height:1.8;
}
.news-link{
    color:var(--dark-blue);
    text-decoration:none;
    font-weight:700;
}

.partner-card{
    background:#fff;
    border-radius:22px;
    padding:1.5rem 1.2rem;
    height:100%;
    border:1px solid var(--border);
    box-shadow:0 12px 28px rgba(36,49,66,.05);
    text-align:center;
    transition:.3s ease;
}
.partner-card:hover{
    transform:translateY(-6px);
    border-color:rgba(212,175,55,.35);
}
.partner-logo{
    width:120px;
    height:120px;
    border-radius:50%;
    margin:0 auto 1rem;
    background:linear-gradient(135deg,#fff,#f3f6f9);
    border:1px solid var(--border);
    display:grid;
    place-items:center;
    overflow:hidden;
}
.partner-logo img{
    width:100%;
    height:100%;
    object-fit:contain;

}
.partner-card h4{
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--dark-blue);
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.contact-card,
.map-card{
    background:#fff;
    border-radius:26px;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    height:100%;
}
.contact-card{
    padding:2rem;
}
.contact-item{
    display:flex;
    gap:1rem;
    margin-bottom:1.4rem;
    align-items:flex-start;
}
.contact-item:last-child{
    margin-bottom:0;
}
.contact-icon{
    min-width:52px;
    height:52px;
    border-radius:16px;
    background:linear-gradient(135deg, rgba(212,175,55,.18), rgba(92,132,195,.18));
    display:grid;
    place-items:center;
    color:var(--dark-blue);
    font-size:1.2rem;
}
.contact-item h5{
    font-size:1rem;
    margin-bottom:.3rem;
    color:var(--dark-blue);
    font-family:'Inter', sans-serif;
    font-weight:700;
}
.contact-item p,
.contact-item a{
    color:var(--text-muted);
    margin:0;
    text-decoration:none;
    line-height:1.8;
}
.map-frame{
    width:100%;
    height:100%;
    min-height:420px;
    border:0;
    border-radius:26px;
}

.footer{
    background:linear-gradient(135deg, #173251, #24476f);
    color:rgba(255,255,255,.84);
    padding:70px 0 25px;
}
.footer h5{
    color:#fff;
    margin-bottom:1.2rem;
    font-size:1.05rem;
    font-family:'Inter', sans-serif;
    font-weight:700;
}
.footer a{
    color:rgba(255,255,255,.82);
    text-decoration:none;
}
.footer a:hover{
    color:#fff;
}
.footer-logo{
    width:76px;
    height:76px;
    border-radius:50%;
    object-fit:contain;
    background:#fff;
    padding:4px;
    margin-bottom:1rem;
}
.footer-social{
    display:flex;
    gap:.75rem;
    margin-top:1.3rem;
}
.footer-social a{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    transition:.3s ease;
}
.footer-social a:hover{
    background:linear-gradient(135deg,var(--primary-gold),var(--teal));
    transform:translateY(-3px);
}
.footer-bottom{
    border-top:1px solid rgba(255,255,255,.14);
    margin-top:2rem;
    padding-top:1.3rem;
    font-size:.95rem;
    text-align:center;
}

/*Noticia INterna */
.news-page {
    padding: 48px 0 90px;
}

.news-title{
    font-size: 2.5rem;
    color: #1f2f45;
    margin-bottom: 1rem;
    line-height: 1.05;
    text-transform: uppercase;
    font-family: 'Oswald',sans-serif;
}
.location-bar{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:flex-end;
    gap:.55rem;
    font-size:.9rem;
    color:var(--blue-dark);
    font-weight:700;
    margin-bottom:.7rem;
}
.location-bar i{
    color:var(--gold);
}

.main-image-wrap{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    background:#fff;
}
.main-image-wrap img{
    width:100%;
    height:auto;
    display:block;
}
.image-caption{
    position:absolute;
    right:18px;
    bottom:14px;
    background:rgba(255,255,255,.92);
    color:var(--blue-dark);
    font-size:.84rem;
    font-weight:800;
    padding:.4rem .7rem;
    border-radius:10px;
    letter-spacing:.03em;
    text-transform:uppercase;
}

.content-toolbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:1rem;
    margin:1.6rem 0 1.2rem;
}
.content-label{
    font-family:'Oswald',sans-serif;
    text-transform:uppercase;
    font-size:1.3rem;
    color:#22364f;
    margin:0;
}
.share-group{
    display:flex;
    gap:.65rem;
    flex-wrap:wrap;
}
.share-btn{
    width:44px;
    height:44px;
    border-radius:10px;
    display:grid;
    place-items:center;
    background:#546b7d;
    color:#fff;
    text-decoration:none;
    font-size:1.2rem;
    transition:.25s ease;
    box-shadow:0 8px 20px rgba(50, 67, 85, .12);
}
.share-btn:hover{
    transform:translateY(-3px);
    background:linear-gradient(135deg,var(--blue-dark),var(--teal));
    color:#fff;
}

.article-content{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:2rem;
    box-shadow:0 16px 35px rgba(37, 51, 68, .05);
}
.article-lead{
    font-size:1.18rem;
    line-height:1.9;
    color:#27374a;
    margin-bottom:1.5rem;
}
.article-content p{
    color:#435160;
    line-height:2;
    font-size:1rem;
    margin-bottom:1.3rem;
}

.sidebar-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:1.5rem;
    box-shadow:0 14px 30px rgba(37, 51, 68, .05);
    margin-bottom:1.5rem;
}
.sidebar-title{
    font-size:2rem;
    line-height:1.05;
    color:#24364c;
    margin-bottom:1rem;
}
.search-block{
    margin-bottom:1.2rem;
}
.search-block:last-child{
    margin-bottom:0;
}
.search-block label{
    display:block;
    font-family:'Oswald',sans-serif;
    color:#23354b;
    font-size:1.2rem;
    margin-bottom:.8rem;
}
.search-row{
    display:flex;
    gap:.75rem;
}
.form-select-custom{
    height:54px;
    border-radius:10px;
    border:1px solid var(--border);
    color:#44515f;
    box-shadow:none;
}
.search-btn{
    min-width:54px;
    height:54px;
    border:none;
    border-radius:10px;
    background:#4a6679;
    color:#fff;
    font-size:1.25rem;
}

.interest-title{
    font-family:'Oswald',sans-serif;
    font-size:2rem;
    color:#23354b;
    margin-bottom:1rem;
    line-height:1.05;
}
.interest-card{
    border:1px solid var(--border);
    border-radius:16px;
    overflow:hidden;
    margin-bottom:1.25rem;
    background:#fff;
}
.interest-card:last-child{
    margin-bottom:0;
}
.interest-content{
    padding:1rem;
}
.interest-media{
    display:grid;
    grid-template-columns:140px 1fr;
    gap:1rem;
    align-items:center;
}
.interest-media img{
    width:100%;
    height:100px;
    object-fit:cover;
    border-radius:12px;
}
.interest-content h4{
    font-size:1.65rem;
    color:#24364c;
    line-height:1.05;
    margin-bottom:.4rem;
}
.interest-content p{
    color:var(--muted);
    margin-bottom:0;
    line-height:1.6;
    font-size:.96rem;
}
.interest-link{
    display:block;
    text-align:center;
    text-decoration:none;
    background:var(--dark-blue);
    color:#fff;
    font-weight:700;
    padding:.9rem 1rem;
    text-transform:uppercase;
    letter-spacing:.03em;
}
.interest-link:hover{
    color:#fff;
    background:var(--dark-blue);
}

.page-header {
    background: linear-gradient(180deg,#fbfcfd,#f5f7fa);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}
.breadcrumb-custom {
    font-size: .9rem;
    color: var(--muted);
    margin: 0;
    margin-bottom: 0px;
}
.breadcrumb-custom a {
    color: var(--blue-dark);
    text-decoration: none;
    font-weight: 600;
}

.search-block label {
    display: block;
    font-family: 'Oswald',sans-serif;
    color: #23354b;
    font-size: 1.2rem;
    margin-bottom: .8rem;
}

.interest-title {
    font-family: 'Oswald',sans-serif;
    font-size: 1.5rem;
    color: #23354b;
    margin-bottom: 1rem;
    line-height: 1.05;
}
.interest-content h4 {
    font-size: 1.3rem;
    color: #24364c;
    line-height: 1.05;
    margin-bottom: .4rem;
}

@media (max-width: 991.98px){
    .carousel-item{
        height:65vh;
        min-height:500px;
    }
    .navbar-collapse{
        background:#fff;
        border-radius:18px;
        padding:1rem;
        margin-top:1rem;
        box-shadow:0 16px 35px rgba(0,0,0,.08);
    }
    .dropdown-menu{
        box-shadow:none;
        border:1px solid var(--border);
        margin-top:.5rem;
    }
}
.navbar-collapse{
    background:#fff;
    border-radius:18px;
    padding:1rem;
    margin-top:1rem;
  /*  box-shadow:0 16px 35px rgba(0,0,0,.08);*/
}


@media (max-width: 767.98px){
    .topbar .d-flex{
        flex-direction:column;
        align-items:flex-start !important;
        gap:.7rem;
    }
    .brand-wrap{
        align-items:flex-start;
    }
    .brand-title{
        font-size:.92rem;
    }
    .brand-subtitle{
        font-size:.8rem;
    }
    .carousel-caption{
        bottom:10%;
    }
    .carousel-caption p{
        font-size:.96rem;
    }
    .hero-actions{
        display:flex;
        flex-direction:column;
        gap:.8rem;
    }
    .hero-actions .btn{
        width:100%;
    }
    .section{
        padding:70px 0;
    }
    .map-frame{
        min-height:320px;
    }
}