@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");

/* html {
     scroll-behavior: smooth;
 } */

:root {
    --blue-900: #0a3a78;
    /* titulos */
    --blue-500: #00aae6;
    /* subtitulos*/
    --text-500: #6d8089;
    /* Textos */
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes reveal {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes reveal-direct {
    from {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }

    to {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes simple-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtleZoom {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

@keyframes lineGrow {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Animaciones de Entrada Especiales */
.animate-text {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* El contenedor scroll-reveal ahora es solo un marcador estructural */
.scroll-reveal,
.animate-reveal {
    /* Sin animación en el contenedor para evitar blur/doble efecto */
    position: relative;
    overflow: visible;
}

/* Las secciones ahora se manejan de forma estática o con su animación fadeInUp original */
.scroll-reveal,
.animate-reveal {
    position: relative;
    overflow: visible;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
    pointer-events: none;
}

.scroll-indicator i {
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #ffffff;
    font-family: "Red Hat Display", sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-500);
    text-align: left;
}

strong {
    color: var(--blue-900);
    font-weight: bold;
}

p strong {
    color: var(--text-500);
}

li strong {
    color: var(--text-500);
}

.page {
    width: min(1250px, 96vw);
    margin: 0 auto;
    padding: 14px 16px 60px;
}

.logo {
    text-align: center;
    margin-bottom: 10px;
}

.logo img {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.logo .word {
    display: inline-block;
    font-weight: 800;
    color: var(--blue-900);
    line-height: 1;
    position: relative;
}

.logo .tag {
    color: var(--blue-500);
    font-weight: 600;
    margin-top: 8px;
}

.top-nav {
    border-top: 2px solid var(--blue-900);
    border-bottom: 2px solid var(--blue-900);
    background: #ffffff;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    text-align: center;
    margin-bottom: 18px;
}

.top-nav span {
    color: var(--blue-900);
    font-weight: 500;
    line-height: 1.05;
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    padding: 0 18px;
    position: relative;
}

.top-nav span:last-child {
    border-right: 0;
}

.top-nav span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 1.35em;
    background: var(--blue-900);
    opacity: 1;
}

.hero {
    border-radius: 40px;
    overflow: hidden;
    height: 480px;
    position: relative;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: reveal 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-wrap {
    position: relative;
    margin-bottom: 40px;
}

.hero-date-badge {
    position: absolute;
    top: 0;
    left: 30px;
    background: #fff;
    color: #00aae6;
    font-weight: 700;
    padding: 12px 60px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.hero-edition-badge {
    position: absolute;
    right: 60px;
    top: -40px;
    width: 160px;
    height: auto;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-edition-badge img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.badge {
    position: absolute;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    top: 25%;
    font-size: 32px;
    font-family: 'Montserrat', sans-serif;
}

.badge2 {
    position: absolute;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    top: 48%;
    font-size: 10px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    font-weight: 800;

    margin: 0 0 10px 0;
    color: #ffffff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    opacity: 0.95;
}

.hero-overlay {
    position: absolute;
    top: 0px;
    left: 40px;
    width: 320px;
    /* Más grande como solicitado */
    height: auto;
    background: #72cef4;
    padding: 15px 20px;
    border-radius: 0 0 35px 35px;
    /* Proporcionalmente más redondeado */
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-center-icon {
    position: absolute;
    top: -30px;
    right: 12%;
    width: 120px;
    height: auto;
    z-index: 15;
}

.hero-center-icon img {
    top: -0px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.share {
    position: absolute;
    right: 40px;
    bottom: -40px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    user-select: none;
}

.share__icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #00aae6;
    display: grid;
    place-items: center;
    box-shadow: 0 2px 6px rgba(0, 170, 230, 0.3);
}

.share__icon i {
    line-height: 1;
    color: #ffffff;
    font-size: 16px;
}

.share__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 10px;
    color: #0b3a78;
    letter-spacing: -0.01em;
}

.share__guide {
    position: absolute;
    right: 50px;
    bottom: -40px;
    background: var(--blue-500);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.share:hover .share__guide {
    opacity: 1;
    transform: translateY(0);

    .lead {
        width: min(92%, 1300px);
        margin: 0 auto 38px;
        text-justify: inter-word;
        color: #5e6f7d;
        line-height: 1.7;
        font-weight: 500;
    }

    .president-name {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 600;
        color: var(--blue-900);
        margin: 0 auto 30px;
        max-width: 600px;
    }

    line-height: 1.05;

    margin: 0 -16px 22px;
    padding: 0 16px;
}

.lead {
    width: min(960px, 92%);
    margin: 0 auto 38px;

    text-justify: inter-word;
    color: #5e6f7d;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 500;
}

.sponsor-card-wrapper {
    background: #00a9e61f;
    width: 100%;
    padding: 40px 0;
    margin: 30px 0;
}

.sponsor-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: visible;
    width: min(1100px, 94vw);
    box-shadow: none;
}

.sponsor-hero {
    position: relative;
    width: 100%;
    height: 350px;
    margin-bottom: 80px;
}

.sponsor-main-img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    display: block;
    border-radius: 60px;
    margin: auto;
}

.sponsor-badge {
    position: absolute;
    top: -10px;
    left: 80px;
    background: #72cef4;
    padding: 0 30px;
    border-radius: 0 0 30px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.sponsor-badge img {
    height: 100px;
    width: auto;
}

.sponsor-image-container {
    position: relative;
    width: 100%;
    height: 380px;
}

.sponsor-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


.sponsor-logo-badge img {
    height: 34px;
    width: auto;
}

.sponsor-copy {
    padding: 48px 60px 70px;
    text-align: justify;
    flex: 1.2;
}

.sponsor-copy h2 {
    margin: 18px;
    color: #0b4a8e;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
    max-width: 960px;
    text-align: center;
}

.sponsor-copy ul li {
    color: #0b4a8e;
}

.sponsor-copy li {
    line-height: 1.1;
}

.sponsor-subtitle {
    margin: 0 auto 65px;
    color: #1aa3cf;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    max-width: 960px;
    text-align: center;
}

.sponsor-text {
    max-width: 960px;
    margin: 0 auto;
    text-align: left;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 20px;
}

.sponsor-grid p {
    margin-bottom: 34px;
    line-height: 1.25;
}

.sponsor-text p {
    color: var(--blue-900);
    font-weight: 500;
    margin-bottom: 34px;

}

.sponsor-text strong {
    color: var(--blue-900);
    font-weight: 800;
    margin-bottom: 34px;

}

.sponsor-text h2 {
    color: var(--blue-900);
    font-size: 20px;
    font-style: italic;
    font-weight: 700;
    margin: 48px auto;
    max-width: 880px;
    letter-spacing: -0.01em;
}

.sponsor-copy h3 {
    color: var(--blue-900);
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.02em;
    max-width: 960px;
    text-align: justify;
}

.sponsor-copy .body-text {
    color: #3e6d96;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 34px;
    text-align: cen;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #72cef4;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 600;
    font-size: 20px;
    padding: 12px 24px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(114, 206, 244, 0.25);
}

.button__icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.button__icon i {
    font-size: 20px;
    line-height: 1;
    color: #ffffff;
}

.button__icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    display: block;
}

.button__divider {
    width: 2px;
    height: 1.7em;
    background: rgba(255, 255, 255, 0.65);
    flex: 0 0 auto;
}

.button__text {
    font-style: italic;
    font-weight: 600;
}

.photo-wrap {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.photo {
    width: 400px;
    height: 450px;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-caption {
    text-align: center;
    color: #0b4a8e;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
}

.button--outline {
    background: #ffffff;
    border: 2px solid #1aa3cf;
    border-radius: 20px;
    color: #1aa3cf;
    padding: 10px 24px;
    box-shadow: none;
    transition: all 0.3s ease;
    margin-top: 24px;
    display: inline-flex;
    align-self: center;
    /* Para centrarlo si el contenedor es flex/grid */
}

.button--outline:hover {
    background: #f0fbff;
    transform: translateY(-2px);
}

.button--outline .button__divider {
    background: #1aa3cf;
}

.button--outline .button__text {
    font-size: 20px;
    font-weight: 500;
}

.indices-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.indices {
    margin-bottom: 44px;
}

.indices-grid {
    width: 100%;
    margin: 0 auto;
}

.indices-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.main-index {
    background: #72cef4;
    border-radius: 22px;
    min-height: 190px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    padding: 64px 26px 30px;
    overflow: visible;
}

.chip {
    position: absolute;
    top: 0;
    left: 22px;
    transform: translateY(-60%);
    background: var(--blue-900);
    color: #fff;
    border-radius: 18px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 16px 28px rgba(3, 56, 92, 0.18);
    z-index: 2;
    width: fit-content;
}

.chip__icon {
    position: absolute;
    left: -66px;
    top: 50%;
    transform: translateY(-50%);
    width: 78px;
    height: 78px;
    border-radius: 18px;
    background: #0e5a9b;
    display: grid;
    place-items: center;
    box-shadow: 0 16px 28px rgba(3, 56, 92, 0.18);
    z-index: 3;
}

.chip__icon i {
    font-size: 20px;
    line-height: 1;
    color: #ffffff;
}

.chip__text {
    white-space: nowrap;
}

.main-index .big {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.main-index .small {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--blue-900);
}

.side-index {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.side-box {
    background: var(--blue-900);
    color: #fff;
    border-radius: 28px;
    display: flex;
    align-items: stretch;
    gap: 18px;
    padding: 0 26px;
    min-height: 100px;
}

.side-box__icon,
.side-box .icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    opacity: 0.95;
    align-self: center;
}

.side-box__icon i,
.side-box .icon i {
    font-size: 20px;
    line-height: 1;
    display: block;
    color: #ffffff;
}

.side-box__divider {
    width: 3px;
    height: 130px;
    background: rgba(255, 255, 255, 0.65);
    flex: 0 0 auto;
}

.side-box__content {
    flex: 1;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 6px;
    align-self: center;
}

.side-box .value {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.side-box .label {
    font-size: 20px;
    letter-spacing: 0.04em;
    color: var(--blue-500);
    font-weight: 600;
    white-space: nowrap;
}

.indices-note {
    margin: 20px auto 36px;
    width: min(94%, 1400px);
    color: var(--blue-900);
    font-size: 20px;
}

.mini-logo {
    text-align: center;
    color: var(--blue-900);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}

.mini-logo small {
    display: block;
    color: var(--blue-500);
    font-size: 20px;
    font-weight: 700;
    margin-top: 4px;
}

.footer {
    margin-top: 8px;
    background: var(--blue-900);
    color: #ffffff;
    border-top: 6px solid var(--blue-500);
    text-align: center;
    padding: 46px 20px 0;
    position: relative;
    overflow: hidden;
}

.footer__share {
    position: absolute;
    top: 18px;
    right: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
}

.footer__share-icon {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.18);
    display: grid;
    place-items: center;
}

.footer__share-icon i {
    font-size: 20px;
    line-height: 1;
    color: #ffffff;
}

.footer__top {
    display: grid;
    place-items: center;
    gap: 6px;
    padding: 8px 0 18px;
}

.footer__mark {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
}

.footer__mark i {
    font-size: 20px;
    line-height: 1;
    color: #ffffff;
}

.footer__brand {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-top: 6px;
}

.footer__brand-sub {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.2;
    font-weight: 600;
}

.footer__cta {
    margin-top: 16px;
    margin-bottom: 14px;
    color: var(--blue-500);
    font-size: 20px;
    font-weight: 700;
}

.footer__mailbox {
    width: min(62%, 520px);
    margin: 0 auto 26px;
    background: #ffffff;
    border-radius: 18px;
    height: 42px;
    display: flex;
    align-items: center;
    padding: 6px 10px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.footer__mailbox-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue-500);
    color: #ffffff;
    border-radius: 10px;
    height: 28px;
    padding: 0 14px;
    font-weight: 700;
    font-size: 20px;
}

.footer__mailbox-pill i {
    font-size: 20px;
    line-height: 1;
}

.footer__mailbox-divider {
    width: 2px;
    height: 1.3em;
    background: rgba(255, 255, 255, 0.75);
}

.footer__mailbox-text {
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer__connect {
    margin-top: 6px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}

/* Estilos del Footer */
.footer {
    margin-top: 20px;
    background: var(--blue-900);
    color: #ffffff;
    text-align: center;
    padding: 50px 0 0;
    position: relative;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    padding: 0 40px 40px;
    align-items: center;
}

.footer-col {
    color: #ffffff;
    font-size: 20px;
}

.footer-col--left {
    text-align: left;
}

.footer-col--right {
    text-align: right;
}

.footer-col__title {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 20px;
}

.footer-col--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer__social {
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    border: none;
    /* Eliminar borde */
    background: none;
    /* Eliminar fondo si lo tuviera */
    width: auto;
    height: auto;
}

.footer__social i {
    font-size: 20px;
    color: #ffffff;
}

.footer__handle {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 2px;
}

.footer-col a {
    color: #17b9ea;
    text-decoration: none;
    font-weight: 500;
}

.footer__address {
    background: #00aeef;
    color: #ffffff;
    font-weight: 600;
    font-size: 20px;
    padding: 18px 20px;
    width: 100%;
}

.copyright {
    text-align: center;
    color: var(--blue-900);
    font-size: 20px;
    margin: 15px 0;
    font-weight: 500;
}

.Editorial {
    width: min(1200px, 94vw);
    margin: 20px auto;

}

.Editorial p,
.Editorial ol,
.Editorial ul,
.Editorial article,
.sponsor-card p,
.stats-list,
.content p,
.content article,
.text-block p {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.Editorial ol,
.Editorial ul:not(.stats-list) {
    padding-left: 40px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.Editorial li {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--text-500);
}


.Editorial p:nth-child(2),
.Editorial ol:nth-child(2),
.Editorial ul:nth-child(2) {
    animation-delay: 0.1s;
}

.Editorial p:nth-child(3),
.Editorial ol:nth-child(3),
.Editorial ul:nth-child(3) {
    animation-delay: 0.2s;
}

.Editorial p:nth-child(4),
.Editorial ol:nth-child(4),
.Editorial ul:nth-child(4) {
    animation-delay: 0.3s;
}

.Editorial p:nth-child(5),
.Editorial ol:nth-child(5),
.Editorial ul:nth-child(5) {
    animation-delay: 0.4s;
}

.Editorial p:nth-child(6),
.Editorial ol:nth-child(6),
.Editorial ul:nth-child(6) {
    animation-delay: 0.5s;
}


.editorial-image-wrap {
    text-align: center;
    margin: 50px auto;
    width: min(1100px, 94vw);
}

.editorial-main-img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 58, 120, 0.15);
    display: block;
    margin: 0 auto;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) both;

}

.editorial-main-img2 {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 58, 120, 0.15);
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.editorial-main-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 58, 120, 0.2);
}

.editorial-main-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 58, 120, 0.2);
}

.editorial-header {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-bottom: 28px;
}

.editorial-header__main {
    flex: 1;
}

.editorial-header__title {
    font-size: 20px;
    font-weight: 500;
    color: var(--blue-900);
    margin-bottom: 2px;
    letter-spacing: -0.01em;
    font-style: normal;
    font-weight: 800;
}

.blue-divider {
    border: 0;
    border-top: 1.5px solid var(--blue-900);
    margin: 4px 0 6px;
    opacity: 0.8;
    animation: lineGrow 1.5s cubic-bezier(0.16, 1, 0.3, 1) both;
    transform-origin: left;
}

.editorial-header__author {
    font-size: 20px;
    font-weight: 600;
    color: var(--blue-900);
    text-align: right;
}

.editorial-header__photo img {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    display: block;
}

.editorial-title,
.main-title {
    color: var(--blue-900);
    text-align: center;
    margin: clamp(20px, 5vh, 40px) auto 24px;
    font-size: 20px;
    /* More aggressive fluid scaling */
    font-weight: 800;
    max-width: 960px;
    width: 100%;
    animation: fadeInUp 1s ease-out backwards;
    line-height: 1.1;
}

.editorial-subtitle,
.main-subtitle {
    color: var(--blue-500);
    text-align: center;
    font-weight: 400;
    font-size: clamp(14px, 3vw, 25px);
    /* More aggressive fluid scaling */
    margin: 0 auto clamp(20px, 4vh, 44px);
    max-width: 800px;
    width: 100%;
}



/* Agenda Institucional Tarjeta */
.tarjeta-container {
    width: min(1200px, 94vw);
    margin: 40px auto;
}

.tarjeta {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    background: transparent;
}

.tarjeta__image {
    flex: 1;
    max-width: 550px;
    aspect-ratio: 4 / 3;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 60, 120, 0.12);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}


.tarjeta__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.tarjeta__image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 60, 120, 0.18);
}

.tarjeta__image:hover img {
    transform: scale(1.05);
}

.tarjeta__content {
    flex: 1.1;
}

.tarjeta__title {
    color: var(--blue-500);
    font-size: 32px;
    margin: 0 0 24px;
}

.tarjeta__text {
    color: #555555;
    /* Looking at the image, the text is a bit softer than dark blue */
    font-size: 20px;
    line-height: 1.5;
    margin: 0;

}

.tarjeta__link {
    color: var(--blue-500);
    font-style: italic;
    text-decoration: none;
    font-weight: 600;
}

.tarjeta__link:hover {
    text-decoration: none;
    opacity: 0.8;
}

@media (max-width: 1100px) {
    .tarjeta {
        gap: 30px;
        padding: 0 20px;
    }

    .tarjeta__title {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .tarjeta {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        margin-bottom: 50px;
        padding: 0 15px;
    }

    .tarjeta__image {
        max-width: 100%;
        width: 100%;
        aspect-ratio: 16 / 9;
        margin: 0 auto;
        border-radius: 24px;
    }

    .tarjeta__title {
        font-size: 24px;
        margin: 10px 0 12px;
    }

    .tarjeta__text {
        font-size: 18px;
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 760px) {


    .logo .word::after {
        width: 16px;
        height: 16px;
        border-width: 5px;
        top: 5px;
    }

    .editorial-title,
    .main-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
        margin: 15px auto 8px !important;
    }

    .editorial-subtitle,
    .main-subtitle {
        font-size: 15px !important;
        margin-bottom: 20px !important;
    }

    .hero-title {
        font-size: 22px !important;
        line-height: 1.1 !important;
        margin-bottom: 10px !important;
    }

    .hero-subtitle {
        font-size: 14px !important;
        max-width: 90% !important;
        margin: 0 auto !important;
    }

    .hero-content {
        padding: 40px 20px !important;
    }

    .hero-edition-badge {
        width: 100px !important;
        right: 20px !important;
        top: -26px !important;
        /* Lowered 2px */
    }

    .hero-edition-badge .badge {
        font-size: 18px !important;
        /* Reduced 2px */
    }

    .hero-edition-badge .badge2 {
        font-size: 5px !important;
        /* Reduced 2px */
        top: 52% !important;
        /* Adjusted alignment for the smaller size */
    }

    .hero-center-icon {
        width: 100px !important;
        right: 20px !important;
        top: -15px !important;
    }

    .hero {
        height: 400px !important;
    }

    .tarjeta__image {
        max-width: 360px;
        /* Tamaño ideal para teléfonos */
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 60, 120, 0.1);
    }

    .top-nav {
        flex-direction: column !important;
        margin: 30px auto !important;
        width: 94vw !important;
        border-top: 2px solid var(--blue-900) !important;
        border-bottom: 2px solid var(--blue-900) !important;
        padding: 0 !important;
        background: #ffffff !important;
        gap: 0 !important;
    }

    .top-nav-row {
        display: contents !important;
        /* Allows children to flow directly under .top-nav */
    }

    .top-nav a,
    .top-nav span {
        width: 100% !important;
        padding: 16px 10px !important;
        border-bottom: 1px solid var(--blue-900) !important;
        white-space: normal !important;
        display: block !important;
        text-align: center !important;
        color: var(--blue-900) !important;
        font-weight: 500 !important;
        font-size: 19px !important;
        flex: none !important;
        position: relative !important;
    }

    .top-nav-row:last-child a:last-child,
    .top-nav-row:last-child span:last-child {
        border-bottom: none !important;
    }

    .top-nav a::after,
    .top-nav span::after {
        display: none !important;
    }

    .sponsor-card {
        margin: 30px auto;
        border-radius: 20px;
    }

    .sponsor-hero {
        display: flex;
        height: 200px;
    }

    .sponsor-badge {
        top: 0.5px;
        left: 45px;
        padding: 10px 20px;
    }

    .sponsor-badge img {
        height: 25px;
    }

    .sponsor-copy {
        padding: 30px 15px 40px;
    }


    .indices-grid,
    .sponsor-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .share {
        right: 12px;
        bottom: -26px !important;
    }

    .share__icon {
        width: 32px;
        height: 32px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer__mailbox {
        width: min(92%, 520px);
    }

    /* Mobile dividers already handled in .top-nav a/span block */

    .footer-col--left,
    .footer-col--right {
        text-align: center;
    }
}

/* --- Nuestra Comunidad Grid (2x3) --- */
.comunidad-section {
    width: min(1200px, 94vw);
    margin: 40px auto 80px;
}

.comunidad-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #ffffff;
    overflow: hidden;
    border-radius: 4px;
    /* Slight rounding for the whole block */
}

.comunidad-card {
    height: 480px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    overflow: hidden;
}

.comunidad-card--image {
    padding: 0;
}

.comunidad-card--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.comunidad-card--text {
    background: #eff8fd;
    text-align: center;
    align-items: center;
}

.comunidad-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #72cef4;
    width: 380px;
    padding: 10px 10px;
    border-radius: 0 0 25px 25px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comunidad-badge img {
    height: 70px;
    width: 100%;
    display: block;
    object-fit: contain;
}

img.hero-overlay {
    height: 90px;
    max-width: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}


.comunidad-title {
    color: var(--blue-900);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 18px;
    max-width: 480px;
    text-align: left;
    line-height: 1.0;
}

.comunidad-desc {
    color: #777;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 480px;
    text-align: left;
}

.comunidad-btn {
    display: inline-flex;
    align-items: center;
    background: #72cef4;
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    height: 42px;
    padding-right: 22px;
    font-weight: 600;
    font-size: 20px;
    gap: 14px;
    box-shadow: 0 4px 12px rgba(114, 206, 244, 0.3);
    transition: all 0.3s ease;
}

.comunidad-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(114, 206, 244, 0.4);
}

.comunidad-btn-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.22);
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.comunidad-btn-icon img {
    max-height: 24px;
    max-width: 24px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    /* Fuerza la imagen a ser blanca */
}

.comunidad-btn-text {
    font-style: italic;
}

/* Tablet/Mobile adaptation */
@media (max-width: 992px) {
    .comunidad-section {
        width: 94vw;
        margin: 30px auto;
    }

    .comunidad-grid {
        grid-template-columns: 1fr;
    }

    .comunidad-card {
        height: auto;
        min-height: auto;
        padding: 40px 20px;
    }

    .comunidad-card--image {
        height: 300px;
    }

    .comunidad-title,
    .comunidad-desc {
        max-width: 100%;
        text-align: center;
    }

    .comunidad-card--text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .comunidad-badge {
        width: min(90%, 350px);
    }
}

/* --- Índices de Costos Grid --- */
.indices-costos-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: min(1200px, 94vw);
    margin: 40px auto 80px;
}

.indices-costos-container img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.indices-costos-container img:hover {
    transform: translateY(-5px);
}

@media (max-width: 850px) {
    .indices-costos-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .indices-costos-container img {
        max-width: 100%;
    }
}

.utn-c3t-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 60px auto 40px;
    width: min(1200px, 94vw);
}

.utn-logo {
    height: 110px;
    width: auto;
    object-fit: contain;
}

.vertical-divider-logos {
    width: 0.5px;
    height: 100px;
    background-color: #0b3a78;
    opacity: 0.2;
}

.c3t-logo {
    height: 125px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .utn-c3t-logos {
        gap: 20px;
    }

    .utn-logo,
    .c3t-logo {
        height: 70px;
    }

    .vertical-divider-logos {
        height: 60px;
    }
}

.featured-index {
    display: flex;
    justify-content: center;
    width: min(1200px, 94vw);
    margin: 30px auto;
}

.featured-index-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(0, 58, 120, 0.12);
    transition: transform 0.3s ease;
    display: block;
}

.featured-index-img:hover {
    transform: translateY(-5px);
}

.stats-list {
    list-style: none;
    padding: 0;
    width: min(960px, 100%);
    margin: 30px auto;
    color: var(--text-500);
}

.stats-list li {
    font-size: 20px;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;

}

.stats-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.featured-index-img--small {
    max-width: 550px;
}

.featured-index-img--medium {
    max-width: 800px;
}

.featured-index-img--zoom {
    max-width: 550px;
    height: 380px;
    object-fit: cover;
    object-position: center 20%;
}



.top-nav {
    border-top: 2px solid var(--blue-900);
    border-bottom: 2px solid var(--blue-900);
    background: #ffffff;
    padding: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 40px auto 22px;
    width: min(1200px, 94vw);
}

.top-nav-row {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 18px 0;
}

.top-nav-row:first-child {
    border-bottom: 2px solid var(--blue-900);
}

.top-nav a,
.top-nav span {
    color: var(--blue-900);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.05;
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    padding: 0 18px;
    position: relative;
    text-decoration: none;
}

.top-nav a:last-child,
.top-nav span:last-child {
    border-right: 0;
}

.top-nav a:not(:last-child)::after,
.top-nav span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 1.35em;
    background: var(--blue-900);
    opacity: 1;
}

.nav-divider {
    width: 1.5px;
    height: 1.2em;
    background-color: var(--blue-900);
}

.separator-dashed {
    /* --- liena cortada --- */
    border-top: 2px dashed;
    color: var(--blue-900);
    margin: 80px auto;
    width: 100%;
    max-width: 1200px;
}

.editorial--center {
    text-align: center !important;
}

.editorial--center p {
    text-align: center !important;
}

.img-center-responsive {
    height: 100%;
    width: 100%;
    display: block;
    margin: 40px auto;
}


/* --- FOOTER REPLICA PIXEL PERFECT --- */

.footer-logo-wrap {
    text-align: center;
    margin: 60px auto 20px;
    width: min(1200px, 94vw);
}

.footer-replica-logo {
    height: 80px;
    width: auto;
}

.footer-replica-tagline {
    color: var(--blue-500);
    font-weight: 700;
    font-size: 20px;
    margin-top: 5px;
}


.footer-replica {
    background: #003a70;
    color: #ffffff;
    font-family: "Red Hat Display", sans-serif;
    text-decoration: none;
    position: relative;
    width: min(1200px, 94vw);
    margin: 0 auto;
    overflow: hidden;
}

.footer-replica__top-border {
    height: 4px;
    background: #00aeef;
    width: 100%;
}

.footer-replica__inner {
    width: min(1200px, 94vw);
    margin: 0 auto;
    padding: 60px 20px 40px;
    position: relative;
    text-align: center;
}

.footer-replica__share {
    position: absolute;
    top: 30px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 20px;
}

.footer-replica__share-icon {
    top: 10px;
    width: 38px;
    height: 38px;
    background: #00aeef;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-replica__share-icon i {
    font-size: 20px;
}

.footer-replica__share-grid {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 20px;
    margin-top: 10px;
    cursor: pointer;
}

.footer-replica__brand {
    margin-bottom: 0px;
}

.footer-replica__brand img {
    height: 180px;
    width: auto;
    margin-bottom: 15px;
}

.footer-replica__tagline {
    font-size: 20px;
    font-weight: 500;
    margin: 0 auto;
    opacity: 0.95;
    max-width: 450px;
    line-height: 1.4;
}

.footer-replica__subscribe {
    margin: 50px 0 60px;
}

.footer-replica__subscribe-title {
    color: #00aeef;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-replica__mailbox {
    background: #ffffff;
    height: 48px;
    border-radius: 24px;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 4px;
}

.footer-replica__mailbox-pill {
    background: #00aeef;
    color: #ffffff;
    border-radius: 20px;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    gap: 10px;
    font-weight: 700;
    font-style: italic;
    font-size: 20px;
}

.footer-replica__mailbox-input {
    flex: 1;
    height: 100%;
    outline: none;
    font-family: inherit;
}

.footer-replica__mailbox-input::placeholder {
    color: rgba(0, 58, 112, 0.4);
    font-style: italic;
}

.footer-replica__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #00aeef;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 20px;
    font-style: italic;
    padding: 12px 40px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.3);
    border: none;
    cursor: pointer;
}

.footer-replica__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 174, 239, 0.4);
    background: #008fcc;
}

.footer-replica__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 30px;
    align-items: end;
    margin-top: 50px;
}

.footer-replica__col p {
    margin: 5px 0;
    font-size: 20px;
    line-height: 1.1;
}

.footer-replica__col--center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-replica strong {
    color: #ffffff;
}

.footer-replica__connect-title {
    font-size: 20px;
    margin-bottom: 12px;
    opacity: 1;
    color: #ffffff;
    font-weight: 700;
}

.footer-replica__social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 5px 0;
}

.footer-replica__social a {
    text-decoration: none !important;
    display: flex;
    align-items: center;
}

.footer-replica__social i {
    font-size: 40px;
    color: #ffffff;
}

.footer-replica__handle {
    font-weight: 700;
    color: #ffffff;
    font-size: 20px !important;
    margin: 8px 0;
}

.footer-replica__links {
    margin: 5px 0;
}

.footer-replica__links a {
    color: #00aeef !important;
    text-decoration: none !important;
    font-weight: 600;
    margin: 0 10px;
}

.footer-replica__address-bar {
    background: #00aeef;
    color: #ffffff;
    padding: 18px 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.footer-replica__copyright {
    background: #ffffff;
    color: #003a70;
    padding: 25px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    width: min(1200px, 94vw);
    margin: 0 auto 40px;
}


@media (max-width: 768px) {
    .footer-replica__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-replica__col--left,
    .footer-replica__col--right {
        text-align: center;
    }

    .footer-replica__share {
        position: static;
        justify-content: center;
        margin-bottom: 30px;
    }
}

/* --- BLOO SIGNATURE --- */
.footer-bloo-link {
    display: block;
    text-align: center;
    margin: 40px auto;
    text-decoration: none;
}

.footer-bloo-img {
    max-width: 100px;
    height: auto;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-bloo-img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* --- MONTS GRILL --- */
.month-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px 40px 60px;
    width: min(1200px, 94vw);
    margin: 0 auto;
}

.month-card {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0%, rgba(255, 255, 255, 0) 6%), #ffffff;
    border-radius: 6px 20px 20px 6px;
    overflow: hidden;
    box-shadow: 12px 12px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    width: 260px;
    height: 100%;
}

.month-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(10, 58, 120, 0.15);
    border-color: rgba(0, 170, 230, 0.2);
}

.month-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(114, 206, 244, 0.1) 0%, rgba(10, 58, 120, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.month-card:hover::before {
    opacity: 1;
}

.month-card__image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #f8fbff;
}

.month-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(0.95);
}

.month-card:hover .month-card__image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.month-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--blue-500);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 170, 230, 0.3);
}

.month-card__content {
    padding: 35px 30px;
    text-align: center;
}

.month-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--blue-500);
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.month-card__subtitle {
    font-size: 14px;
    color: var(--blue-500);
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.month-card__content p {
    font-size: 14px;
    color: var(--text-500);
    line-height: 1.4;
    margin-bottom: 25px;
    font-weight: 500;
}

.month-card__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #f0faff;
    color: var(--blue-500);
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 170, 230, 0.15);
}

.month-card:hover .month-card__button {
    background: var(--blue-500);
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 170, 230, 0.2);
}

.main-header {
    text-align: center;
    padding: 20px;
    background: linear-gradient(180deg, #f0fbff 0%, #ffffff 100%);
}

.main-header h1 {
    font-size: 44px;
    font-weight: 900;
    color: var(--blue-900);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.main-header p {
    font-size: 18px;
    color: var(--blue-500);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.85;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .main-header {
        padding: 40px 16px 20px;
    }

    .main-header h1 {
        font-size: 32px;
    }

    .main-header p {
        font-size: 16px;
    }

    .month-grid {
        padding: 20px 16px 40px;
        gap: 20px;
    }

    .month-card {
        width: 100%;
        max-width: 320px;
    }

    .footer-replica__brand img {
        height: 120px;
        /* Reduced for mobile */
    }

    .footer-replica__inner {
        padding: 40px 16px 30px;
    }

    .footer-replica__tagline {
        font-size: 16px;
    }

    .footer-replica__social i {
        font-size: 32px;
    }

    .footer-replica__btn {
        padding: 10px 25px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .main-header h1 {
        font-size: 26px;
        /* Slightly smaller for very narrow screens */
    }

    .month-card {
        max-width: 100%;
    }

    .month-card__title {
        font-size: 28px;
    }

    .footer-replica__address-bar {
        font-size: 14px;
        padding: 15px;
    }

    .footer-replica__copyright {
        font-size: 14px;
        padding: 15px;
    }
}