:root {
    --gold: #ad8411;
    --dark: #231f20;
    --blue: #244482;
    --light-bg: #fdfdfd;
    --white: #ffffff;
    --shadow: 0 15px 35px rgba(0,0,0,0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --dots1: #A0CCFF;
    --dots2: #FFFF99;
    --dots3: #A9D599;
    --dots4: #A28A60;
    --dots5: #84F89F;
    --dots6: #C68EDB;
}

body {
    font-family: 'Georgia', serif;
    background-color: var(--light-bg);
    color: var(--dark);
    margin: 0;
    overflow-x: hidden;
    padding-top: 140px;
}

.body-content {
    margin-top: 0;
}

h1, h2, h3, .navbar-brand {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.body-content {
    padding-top: 40px;
    padding-bottom: 80px;
    min-height: 60vh;
    margin-top: 60px;
}

.site-header {
    background-color: var(--white);
    padding: 0;
    margin-bottom: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-bottom: 5px solid var(--gold);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-top-accent {
    height: 4px;
    background-color: rgba(0,0,0,0.2);
    width: 100%;
}

.header-main-content {
    padding: 0px 0;
    text-align: center;
}

.brand-title {
    font-family: 'Georgia', serif;
    font-size: clamp(2.2rem, 7vw, 4rem);
    font-weight: 900;
    color: var(--white) !important;
    text-decoration: none !important;
    letter-spacing: 5px;
    display: block;
    line-height: 1;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

    .brand-title:hover {
        transform: scale(1.02);
        color: var(--gold) !important;
    }

.brand-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 6px;
    margin-top: 15px;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gold-line {
    height: 1px;
    width: 40px;
    background-color: var(--gold);
    margin: 0 15px;
    display: inline-block;
    opacity: 0.5;
}

.navbar {
    background-color: var(--white);
    border-bottom: 4px solid var(--blue);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.btn-custom {
    background-color: var(--white);
    color: var(--gold);
    font-weight: bold;
    border: none;
    padding: 12px 25px;
    border-radius: 0;
    text-transform: uppercase;
    transition: 0.3s;
}

    .btn-custom:hover {
        background-color: var(--blue);
        color: var(--white);
    }

.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(36, 68, 130, 0.85), rgba(35, 31, 32, 0.6)), url('https://visitarhonduras.com/wp-content/uploads/2025/05/Cuando-viajar-a-Tegucigalpa-Informacion-util-y-clima.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: block;
    width: 100%;
    align-items: center;
    color: var(--white);
}

.hero-content {
    border-left: 8px solid var(--gold);
    padding-left: 30px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
}

.news-section {
    padding: 90px 0;
}

.section-badge {
    color: var(--gold);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    color: var(--blue);
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
}

.card-news {
    position: relative;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    height: 550px;
    background-color: var(--dark);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

    .card-news:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .card-news img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        opacity: 0.7;
        transition: transform 0.6s ease;
    }

    .card-news:hover img {
        transform: scale(1.05);
        opacity: 0.4;
    }

.news-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(36, 68, 130, 0.95));
    color: var(--white);
    padding: 40px 25px 25px;
    z-index: 2;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(173, 132, 17, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
    padding: 30px;
}

.card-news:hover .card-overlay {
    opacity: 1;
}

.embed-map-fixed, .embed-map-container, .embed-map-frame {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

.site-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 30px 0;
    border-top: 10px solid var(--blue);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.gold-text {
    color: var(--gold);
}

.footer-divider {
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 200px;
    margin: 20px auto;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .brand-title {
        letter-spacing: 2px;
    }

    .hero-section {
        height: 50vh;
    }
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(36, 68, 130, 0.7), rgba(35, 31, 32, 0.8)), url('https://visitarhonduras.com/wp-content/uploads/2025/05/Cuando-viajar-a-Tegucigalpa-Informacion-util-y-clima.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 10px solid var(--gold);
    padding: 60px;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.hero-title {
    font-size: clamp(rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
}

    .hero-title span {
        color: var(--gold);
        display: block;
    }

.hero-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.btn-hero {
    background-color: var(--gold);
    color: var(--white);
    padding: 18px 40px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 5px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

    .btn-hero:hover {
        background-color: var(--white);
        color: var(--blue);
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.hero-section {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

@media (max-width: 768px) {
    body {
        padding-top: 110px;
    }
}

.site-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 30px 0;
    border-top: 5px solid var(--gold);
    font-family: 'Arial', sans-serif;
}

.footer-logo-img {
    max-height: 60px;
    filter: brightness(0) invert(1);
}

.footer-about {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 300px;
}

.footer-heading {
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

    .footer-links a:hover {
        opacity: 1;
        color: var(--gold);
        padding-left: 5px;
    }

.footer-contact-info a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(173, 132, 17, 0.3);
}

    .social-icon:hover {
        background: var(--gold);
        color: var(--dark);
        transform: translateY(-3px);
    }

.footer-divider {
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 100%;
    margin: 40px 0 30px 0;
}

.footer-tagline {
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--gold);
    margin: 0;
}

.fixed-table-toolbar {
    padding: 15px 20px;
    background: var(--blue) !important;
    border-bottom: 2px solid var(--gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .fixed-table-toolbar .btn-secondary {
        background-color: rgba(255,255,255,0.1) !important;
        color: var(--white) !important;
        border: 1px solid var(--gold) !important;
    }

        .fixed-table-toolbar .btn-secondary:hover {
            background-color: var(--gold) !important;
            color: var(--white) !important;
        }

    .fixed-table-toolbar .search input {
        border: 1px solid var(--gold) !important;
        background: rgba(255,255,255,0.9);
    }

#table thead th {
    background-color: #1a3466 !important;
    color: var(--gold) !important;
    border: 1px solid var(--gold) !important;
}

#table tbody td {
    border: 1px solid rgba(173, 132, 17, 0.2) !important;
}

.fixed-table-pagination .pagination-detail {
    margin-left: 20px;
    color: var(--blue);
    font-weight: bold;
}

.fixed-table-toolbar button i {
    color: var(--white);
}

.fixed-table-toolbar {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    background: var(--blue) !important;
    padding: 10px 20px !important;
    border-bottom: 2px solid var(--gold);
}

    .fixed-table-toolbar .search {
        margin-left: 10px;
    }

#table .detail-icon,
#table .detail-view {
    display: none !important;
}

#table thead tr th.detail {
    display: none !important;
}

.table-bordered, .table-bordered td, .table-bordered th {
    border: 1px solid var(--gold) !important;
}

.fixed-table-pagination .pagination-detail {
    margin-left: auto;
    margin-right: 20px;
}

.carousel-item {
    padding: 15px;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
}

.card-news {
    margin: 0 auto;
}

.carousel-inner {
    padding: 20px 0;
}

.carousel-control-prev, .carousel-control-next {
    opacity: 1;
    z-index: 10;
}

    .carousel-control-prev:hover, .carousel-control-next:hover {
        transform: scale(1.1);
    }

@media (max-width: 1200px) {
    .carousel-control-prev {
        left: -30px;
    }

    .carousel-control-next {
        right: -30px;
    }
}

@media (max-width: 768px) {
    .carousel-control-prev, .carousel-control-next {
        display: none;
    }
}

.news-intro {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    opacity: 0.8;
}

.news-feature {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--dark);
    color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 12px;
    overflow: hidden;
}

    .news-feature img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.news-feature-content {
    padding: 50px;
}

.news-feature h3 {
    font-size: 2rem;
    margin: 15px 0;
}

.news-feature p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.news-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

    .news-card:hover {
        transform: translateY(-8px);
    }

    .news-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

.news-card-body {
    padding: 25px;
}

.news-card h5 {
    font-size: 1.2rem;
    margin: 10px 0;
}

.news-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.news-card a {
    color: var(--blue);
    font-weight: bold;
    text-decoration: none;
}

    .news-card a:hover {
        color: var(--gold);
    }

.news-category {
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-right: 10px;
}

.news-date {
    font-size: 0.75rem;
    opacity: 0.7;
}

@media (max-width: 992px) {
    .news-feature {
        grid-template-columns: 1fr;
    }

    .news-feature-content {
        padding: 35px;
    }
}

.news-card.framed {
    border: 2px solid var(--gold);
    position: relative;
}

    .news-card.framed::before {
        content: "";
        position: absolute;
        inset: 10px;
        border: 1px solid rgba(173, 132, 17, 0.35);
        pointer-events: none;
        border-radius: 8px;
    }

#secondaryNewsCarousel {
    padding: 20px 0;
}

    #secondaryNewsCarousel .carousel-item {
        padding: 15px;
    }

.carousel-item {
    transition: transform 0.9s ease-in-out;
}

@media (max-width: 768px) {
    #secondaryNewsCarousel .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.map-section-fluid {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: var(--dark);
    padding: 0;
    border-top: 4px solid var(--gold);
}

.map-header-institutional {
    background: linear-gradient(to bottom, var(--blue), #1a3466);
    padding: 20px 0 40px 0;
    text-align: center;
}

.institutional-divider {
    height: 3px;
    width: 80px;
    background: var(--gold);
    margin: 20px auto;
}

.map-subtitle {
    color: rgba(255,255,255,0.7);
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.map-full-container {
    position: relative;
    width: 100%;
    height: 950px;
    background: var(--dark);
    border-top: 1px solid var(--gold);
    border-bottom: 5px solid var(--gold);
    overflow: hidden;
}

.map-wrapper-large {
    width: 100%;
    height: 100%;
}

.map-frame-full {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2) contrast(1.1);
}

.map-legend-floating {
    position: absolute;
    top: 30px;
    right: 40px;
    background: rgba(35, 31, 32, 0.9);
    padding: 15px 25px;
    border-left: 5px solid var(--gold);
    color: var(--white);
    border-radius: 4px;
    z-index: 15;
    box-shadow: var(--shadow);
}

.legend-item {
    font-size: 0.85rem;
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

    .dot.active1 {
        background-color: var(--dots1);
        box-shadow: 0 0 10px #e74c3c;
    }
    .dot.active2 {
        background-color: var(--dots2);
        box-shadow: 0 0 10px #e74c3c;
    }
    .dot.active3 {
        background-color: var(--dots3);
        box-shadow: 0 0 10px #e74c3c;
    }
    .dot.active4 {
        background-color: var(--dots4);
        box-shadow: 0 0 10px #e74c3c;
    }
    .dot.active5 {
        background-color: var(--dots5);
        box-shadow: 0 0 10px #e74c3c;
    }
    .dot.active6 {
        background-color: var(--dots6);
        box-shadow: 0 0 10px #e74c3c;
    }

    .dot.planned {
        background-color: var(--gold);
    }

@media (max-width: 768px) {
    .map-full-container {
        height: 450px;
    }

    .map-legend-floating {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
    }
}

.map-frame-full {
    width: 100% !important;
    min-width: 100vw;
    height: 100%;
    filter: grayscale(0.2) contrast(1.1);
    border: none;
}

.section.stats {
    background-color: var(--dark);
    background-image: linear-gradient(135deg, var(--blue) 0%, #1a3466 100%);
    padding: 80px 0;
    position: relative;
    border-top: 5px solid var(--gold);
    border-bottom: 5px solid var(--gold);
    color: var(--white);
}

.stat {
    padding: 20px;
    transition: var(--transition);
    position: relative;
}

    .stat:hover {
        transform: translateY(-10px);
    }

    .stat h3 {
        font-family: 'Georgia', serif;
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        color: var(--white);
        margin-bottom: 10px;
        font-weight: 900;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .stat p {
        font-family: 'Arial', sans-serif;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: bold;
        font-size: 0.9rem;
        color: var(--gold);
        margin: 0;
    }

@media (min-width: 768px) {
    .stat:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: linear-gradient(to bottom, transparent, var(--gold), transparent);
        opacity: 0.5;
    }
}

@media (max-width: 767px) {
    .section.stats {
        padding: 50px 0;
    }

    .stat {
        margin-bottom: 40px;
    }

        .stat:last-child {
            margin-bottom: 0;
        }
}

.about-program {
    background: var(--light-bg);
    padding: 100px 0;
}

.about-header {
    margin-bottom: 60px;
}

.about-divider {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto 0 auto;
}

.about-grid {
    gap: 30px;
}

.about-card {
    height: 100%;
    padding: 45px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .about-card h4 {
        font-size: 1.4rem;
        color: var(--blue);
        margin-bottom: 20px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .about-card p {
        font-size: 1.05rem;
        line-height: 1.7;
        opacity: 0.9;
    }

    .about-card.highlight {
        border-left: 8px solid var(--gold);
        background: linear-gradient(135deg, #f9f9f9, #ffffff);
    }

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .about-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 14px;
        font-weight: 700;
        color: var(--blue);
    }

        .about-list li::before {
            content: "●";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--gold);
            font-size: 0.8rem;
        }

.about-note {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: bold;
}

@media (max-width: 992px) {
    .about-card {
        padding: 35px;
    }

    .about-program {
        padding: 70px 0;
    }
}

.about-program.institutional {
    background: var(--light-bg);
    padding: 50px 0;
}

.institutional-header {
    margin-bottom: 60px;
}

    .institutional-header .section-title {
        margin-bottom: 10px;
    }

.institutional-card {
    background: var(--white);
    padding: 55px 70px;
    border-top: 6px solid var(--gold);
    box-shadow: var(--shadow);
    margin-bottom: 70px;
}

.institutional-text {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 20px auto;
    opacity: 0.9;
}

.institutional-pillars {
    margin-top: 20px;
}

.pillar {
    padding: 35px 25px;
}

.pillar-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 15px;
}

.pillar h5 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 10px;
}

.pillar p {
    font-size: 0.95rem;
    opacity: 0.8;
    max-width: 260px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pillar:not(:last-child) {
        border-right: 1px solid rgba(0,0,0,0.08);
    }
}

@media (max-width: 992px) {
    .institutional-card {
        padding: 40px 30px;
    }

    .about-program.institutional {
        padding: 80px 0;
    }
}

.process {
    background: transparent;
    padding: 90px 0;
    position: relative;
}

.process-step {
    background: var(--white);
    border-radius: 14px;
    padding: 50px 5px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    border-top: 5px solid var(--gold);
    overflow: hidden;
    max-width: 400px; /* antes ~250 */
    width: 100%;
}

    .process-step:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 45px rgba(0,0,0,0.15);
    }

.step-number {
    display: inline-block;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    line-height: 1;
}

    .step-number::after {
        content: "";
        display: block;
        width: 40px;
        height: 3px;
        background: var(--gold);
        margin: 15px auto 0;
        opacity: 0.7;
    }

.process-step h5 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    margin-top: 20px;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
    max-width: 220px;
    margin: 0 auto;
    margin-bottom: 0;
}

.process-step::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(173, 132, 17, 0.08);
    border-radius: 50%;
}

.process .row > div {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .process-step {
        padding: 55px 35px;
    }

    .step-number {
        font-size: 2.6rem;
    }
}

.process .row {
    align-items: stretch;
}

.transparency-table {
    background: var(--light-bg);
    padding: 20px 0;
}

#table thead th {
    background-color: var(--blue) !important;
    color: var(--gold) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

#table tbody td {
    font-size: 0.9rem;
    vertical-align: middle;
}

#table tbody tr:hover {
    background: rgba(36, 68, 130, 0.05);
}

.fixed-table-toolbar {
    background: var(--blue) !important;
    border-bottom: 3px solid var(--gold);
}

    .fixed-table-toolbar .search input {
        border-radius: 0;
        border: 1px solid var(--gold);
    }

.fixed-table-pagination {
    padding-top: 15px;
}

.institutional-pillars .pillar {
    border: 3px solid var(--gold);
    padding: 40px 25px;
    height: 100%;
    background-color: var(--white);
    transition: var(--transition);
    position: relative;
    margin-bottom: 20px;
    outline: 1px solid rgba(173, 132, 17, 0.3);
    outline-offset: -10px;
}

    .institutional-pillars .pillar:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
        background-color: #fcf9f2;
    }

@media (min-width: 768px) {
    .pillar:not(:last-child) {
        border-right: 3px solid var(--gold) !important;
    }
}

.pillar-number {
    color: var(--gold);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 0;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.stats-impact {
    background: radial-gradient(circle at top right, #1a3466, var(--dark));
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.stats-overlay::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: rgba(173, 132, 17, 0.05);
    border-radius: 50%;
    filter: blur(80px);
}

.section-badge-light {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.stats-main-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.institutional-divider-gold {
    width: 900px;
    height: 4px;
    background: var(--gold);
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    text-align: center;
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

    .stat-card:hover {
        background: rgba(255, 255, 255, 0.07);
        transform: translateY(-15px);
        border-color: var(--gold);
    }

.stat-icon-wrapper {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 25px;
    opacity: 0.9;
}

.stat-card h3 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

    .stat-card h3 span {
        font-size: 1.5rem;
        margin-left: 5px;
        color: var(--gold);
    }

.stat-card p {
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.stat-progress-bar {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}

.stat-card.featured {
    border-top: 5px solid var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.full-width-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 0;
    padding-right: 0;
}

.stats-impact {
    background: radial-gradient(circle at center, #244482 0%, #1a3466 50%, var(--dark) 100%);
    padding: 100px 0;
    border-top: 5px solid var(--gold);
    border-bottom: 5px solid var(--gold);
}

.stat-card {
    max-width: 500px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 80vh;
        padding: 40px 0;
        display: flex;
        align-items: center;
    }

    .hero-glass-card {
        padding: 30px 20px;
        border-radius: 0 15px 15px 0;
        margin-right: 15px;
        border-left-width: 6px;
    }

    .hero-title {
        font-size: 1.9rem !important;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .d-flex.flex-wrap.gap-3 {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero, .btn-outline-light {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 992px) {
    .hero-section {
        height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-glass-card {
        max-width: 990px;
    }
}

.hero-section {
    background-attachment: scroll;
}

@media (min-width: 992px) {
    .hero-section {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 110px !important;
    }

    .body-content {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .hero-section {
        margin-top: 0 !important;
        position: relative;
    }

}

.process .row {
    justify-content: center;
}

.institutional-image-container {
    background: var(--white);
    padding: 40px; 
    border-top: 6px solid var(--gold);
    box-shadow: var(--shadow);
    margin: 0 auto 50px auto;
    max-width: 1000px; 
    text-align: center;
    transition: var(--transition);
}

.img-institutional-fluid {
    width: 100%;
    height: auto;
    max-height: 600px; 
    object-fit: contain; 
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .institutional-image-container {
        padding: 15px; 
        margin: 0 15px 30px 15px;
        border-top-width: 4px;
    }

    .img-institutional-fluid {
        max-height: none; 
    }
}

.institutional-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

@supports (-webkit-touch-callout: none) {
    .hero-section

{
    min-height: 100svh;
    background-attachment: scroll;
}

}

/*no se aplico*/

.site-footer {
    padding: 60px 0 30px 0;
    overflow-x: hidden;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

@media (max-width: 991.98px) {
    .footer-brand,
    .footer-heading,
    .footer-contact-info,
    .footer-about {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center !important;
    }

    .footer-links {
        text-align: center;
    }

    .footer-bottom .row {
        flex-direction: column-reverse; 
        gap: 15px;
    }
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.footer-logo-img {
    transition: var(--transition);
}

    .footer-logo-img:hover {
        transform: scale(1.05);
    }

/* CONTADOR DE INTERVENCIONES */

.intervenciones-box {
    text-align: center;
    margin-top: 20px;
}

.intervenciones-label {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffffcc;
    margin-bottom: 6px;
}

.intervenciones-numero {
    font-size: 3em;
    font-weight: 700;
    color: #d4af37; 
    line-height: 1;
}

/* RESPONSIVE */

@media (max-width:768px) {

    .intervenciones-numero {
        font-size: 3em;
    }

    .intervenciones-label {
        font-size: 12px;
        letter-spacing: 1px;
    }
}