/*
Theme Name: Nodo Tecnológico
Description: Tema personalizado para la Secretaría de Ciencia y Tecnología de Santiago del Estero
Author: Tu Nombre
Version: 1.0
License: GPL v2 or later
Text Domain: nodo
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ebebf5;
}

.container {
    max-width: 100%;
    padding: 0 4%;
}

/* Header */
.header {
    border-bottom: 2px solid #cccccc;
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 140px;
    object-fit: cover;
}

/* Logo links */
.header a:has(.logo),
.mobile-menu-header a {
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.header a:has(.logo):hover,
.mobile-menu-header a:hover {
    opacity: 0.8;
}

/* Fallback para navegadores que no soportan :has() */
.header > .container > a,
.mobile-menu-header > a {
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.header > .container > a:hover,
.mobile-menu-header > a:hover {
    opacity: 0.8;
}

.nav {
    display: flex;
    gap: 46px;
}

.nav-link {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link--active {
    font-weight: 800;
}

.nav-link:hover {
    color: #100a55;
}

/* Hero Section */
.hero {
    background-image: url('./assets/img/landing-container.png');
    padding: 80px 0;
}

.hero__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero__text {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #c6cee5;
    color: #100a55;
    padding: 10px 20px;
    border-radius: 24px;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 18px;
}

.badge--section {
    background-color: #c6cee5;
    color: #100a55;
    padding: 16px 24px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}

.badge__icon {
    width: 28px;
    object-fit: cover;
}

.hero__title {
    font-family: 'Anton', sans-serif;
    font-size: 70px;
    color: #100a55;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 400;
}

.hero__description {
    font-size: 1.3rem;
    color: #444444;
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero__images {
    flex: 0 0 786px;
    position: relative;
    height: 847px;
}

.hero__image-main {
    position: absolute;
    width: 599px;
    height: 727px;
    top: 71px;
    left: 109px;
    border-radius: 24px;
    border: 12px solid white;
    overflow: hidden;
    background: linear-gradient(0deg, rgba(11,79,134,0.4) 0%, rgba(11,79,134,0.4) 100%);
}

.hero__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image-small {
    position: absolute;
    width: 270px;
    height: 251px;
    border-radius: 24px;
    border: 6px solid white;
    overflow: hidden;
}

.hero__image-small--top {
    top: 0;
    left: 0;
}

.hero__image-small--bottom {
    top: 596px;
    left: 516px;
}

.hero__image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__info-card {
    position: absolute;
    width: 276px;
    height: 128px;
    top: 608px;
    background-color: #00a0e3;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    padding: 20px;
    animation: balance 3s ease-in-out infinite;
}

/* Animaciones */
@keyframes balance {
    0%, 100% {
        transform: translateX(-10px);
    }
    50% {
        transform: translateX(10px);
    }
}

/* Buttons */
.btn {
    position: relative;
    align-items: center;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: flex-start;
}

.btn--primary {
    background-color: #f08143;
    color: white;
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    padding: 8px 8px 8px 24px;
    gap: 4rem;
    width: 240px;
    height: 60px;
}

.btn--primary:hover {
    background-color: #e67a3d;
}

.btn--secondary {
    background-color: #f08143;
    color: white;
    height: 49px;
    padding: 0 24px;
    font-size: 20px;
    width: 160px;
}

.btn--secondary:hover {
    background-color: #e07133;
}

.btn--tertiary {
    background-color: #0b4f86;
    color: white;
    height: 73px;
    padding: 0 40px;
    font-size: 22px;
    width: 280px;
}

.btn--outline {
    background-color: white;
    color: #f08143;
    border: 2px solid #f08143;
    height: 73px;
    padding: 0 40px;
    font-size: 22px;
    width: 100%;
}

.btn--outline:hover {
    background-color: #fff8f5;
}

.btn__icon {
    width: 48px;
    height: 48px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f08143;
    position: absolute;
    right: 8px;
}

.btn__icon--small {
    width: 40px;
    height: 40px;
    right: 4px;
    color: #000;
    position: absolute;
}

.btn--tertiary .btn__icon {
    background-color: white;
    color: #000;
    width: 58px;
    height: 59px;
}

.btn--outline .btn__icon {
    background-color: #f08143;
    color: white;
    width: 58px;
    height: 59px;
    position: absolute;
    right: 5px;
}

/* Stats Section */
.stats {
    background: url('./assets/img/concurrencia.png'), linear-gradient(0deg, rgba(11,79,134,1) 0%, rgba(11,79,134,1) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


.stats__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 243px;
    width: 100%;
    padding: 40px 0;
}

.stats__item {
    text-align: center;
    color: white;
}

.stats__number {
    font-family: 'Anton', sans-serif;
    font-size: 96px;
    font-weight: 400;
    line-height: 1;
}

.stats__label {
    font-size: 32px;
    font-weight: 400;
    margin-top: 8px;
}

/* Section Headers */
.section-header {
    margin-bottom: 56px;
}

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: 70px;
    color: #100a55;
    font-weight: 400;
    line-height: 1.1;
}

.section-title--white {
    color: white;
}

/* Events Section */
.events {
    background-color: #e2e6f2;
    padding: 8rem 0;
}

.events__content {
    display: flex;
    gap: 32px;
    margin-bottom: 64px;
    justify-content: space-between;
}

.events__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 865px;
}

.events__image {
    flex: 1;
    max-width: 526px;
    gap: 4rem;
    display: flex;
    flex-flow: column;
}



.event-card {
    position: relative;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
    height: fit-content;
    min-height: 514px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 425px;
}

.event-card__image {
    width: 100%;
    height: 264px;
    overflow: hidden;
}

.event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card__content {
    padding: 24px;
}

.event-card__title {
    font-size: 24px;
    font-weight: bold;
    color: #100a55;
    margin-bottom: 18px;
}

.event-card__date {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555555;
    font-size: 14px;
}

.event-card__time p {
    font-size: 14px;
    margin-bottom: 4px;
}

.event-card__time-value {
    font-weight: bold;
    color: #00a0e3;
}

.event-card__footer {
    padding: 8px 24px 24px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.events__footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.events__decoration {
    width: 100%;
}

/* History Section */
.history {
    background: linear-gradient(0deg, rgba(12,2,25,0.7) 0%, rgba(12,2,25,0.7) 100%), url('./assets/img/grandes-eventos-seccion.png');
    background-size: cover;
    background-position: center;
    padding: 128px 0;
}

.history__timeline {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.history__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5%;
}


.history__year-triangle{
    width: 0;
    height: 0;
    position: absolute;
}

.history__year-triangle--left{
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 17px solid #f08143;
    right: -17px;
}

.history__year-triangle--right{
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-right: 17px solid #f08143;
    left: -17px;
}


.history__year {
    position: relative;
}

.history__year--left .history__year-content {
    writing-mode: sideways-lr;
}

.history__year--right .history__year-content {
    writing-mode: sideways-rl;
}

.history__year-content {
    background-color: #f08143;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    text-orientation: mixed;
    height: 383px;
    width: 207px;
}

/* .history__year--left{
    transform: rotate(-90deg);
}

.history__year--right{
    transform: rotate(90deg);
} */

.history__year-number {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 8px;
}

.history__year-date {
    font-size: 22px;
    font-weight: 400;
}

.history__card {
    flex: 1;
    background-color: #403c53;
    border-radius: 24px;
    padding: 18px;
    display: flex;
    height: 383px;
    gap: 3rem;
}

.history__card-image {
    width: 460px;
    height: 345px;
    border-radius: 12px;
    overflow: hidden;
}

.history__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history__card-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.history__card-title {
    font-size: 48px;
    font-weight: bold;
    text-shadow: 1px 1px 0px #000000;
}

.history__card-description {
    font-size: 22px;
    margin: 1rem 0 1.5rem;
}

.history__card-stats {
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: center;
    gap: 64px;
}

.history__stat-container {
    display: flex;
    gap: 64px;
}

.history__stat {
    text-align: center;
}

.history__stat-number {
    font-family: 'Anton', sans-serif;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 4px;
}

.history__stat-label {
    font-size: 20px;
    font-weight: 400;
}

/* Venues Section */
.venues {
    background: white;
    padding: 80px 0;
}

.venue__container {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.venue {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.venue__content {
    flex: 1;
}

.venue__text {
    margin-bottom: 32px;
}

.venue__subtitle {
    font-weight: bold;
    color: #333333;
    font-size: 16px;
    margin-bottom: 8px;
}

.venue__title {
    font-weight: bold;
    color: #282828;
    font-size: 48px;
    margin-bottom: 24px;
}

.venue__description {
    font-size: 24px;
    color: #555555;
    line-height: 1.5;
}

.venue__features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.venue__features--left {
    align-items: center;
}

.venue__feature {
    display: flex;
    align-items: center;
    gap: 32px;
}

.venue__feature-icon {
    width: 135px;
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue__feature-icon img {
    max-width: 100%;
    max-height: 100%;
}

.venue__feature-title {
    font-weight: 600;
    color: #333333;
    font-size: 24px;
    margin-bottom: 4px;
}

.venue__feature-subtitle {
    color: #555555;
    font-size: 24px;
}

.venue__images {
    flex: 1;
    position: relative;
    height: 825px;
}

.venue__images--left .venue__image-main{
    left: 0;
}

.venue__images--left .venue__image-small{
    right: 0;
}

.venue__image-main {
    position: absolute;
    right: 0;
    top: 0;
    width: 777px;
    height: 825px;
    border-radius: 12px;
    overflow: hidden;
}

.venue__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue__image-small {
    position: absolute;
    top: 401px;
    width: 300px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.venue__image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background-color: #232222;
    color: white;
    padding: 80px 0 40px;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 80px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer__logo {
    width: 268px;
    height: 138px;
    object-fit: cover;
}

.footer__social {
    width: 270px;
    height: 48px;
}

.footer__info {
    display: flex;
    width: 60%;
    justify-content: space-between;
}

.footer__social{
    display: flex;
    justify-content: space-between;
}

.footer__section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 8px;
}

.footer__text {
    font-size: 20px;
    color: #d1d5db;
    line-height: 1.5;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 40px;
    border-top: 1px solid #7a7a7a;
}

.footer__emblem {
    width: 49px;
    height: 45px;
    object-fit: cover;
}

.footer__copyright {
    font-size: 20px;
    color: white;
}
.event-card__time--desktop{
    display: flex;
    flex-direction: column;
}
.event-card__time--mobile{
    display: none;
}
/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .header .container {
        padding: 0 40px;
    }
    
    .hero__title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 56px;
    }
    
    .stats__grid {
        gap: 120px;
    }
    
    .stats__number {
        font-size: 72px;
    }
}

@media (max-width: 768px) {
    .events{
        .event-card{
            min-height: initial;
            .event-card__image{
                height: 200px;
            }
            .event-card__content{
                padding: 12px;
            }
            .event-card__title{
                font-size: 1.2rem;
            }
            .event-card__date{
                font-size: 0.8rem;
            }
            .event-card__time{
                font-size: 0.8rem;
            }
            .event-card__time-value{
                font-size: 0.8rem;
            }
            .event-card__time--mobile{
                display: block;
            }
            .event-card__time--desktop{
                display: none;
            }   
            .event-card__info{
                display: flex;
                align-items: start;
                justify-content: space-between;
            }
        }
    }
    .badge{
        font-size: 0.8rem;
        padding: 7px 12px;
    }
    .hero__content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero__images {
        width: 100%;
        height: 400px;
        flex: auto;
    }
    
    .hero__image-main {
        position: relative;
        width: 100%;
        height: 300px;
        top: 0;
        left: 0;
        border: 6px solid white;
    }
    
    .hero__image-small{
        width: 200px;
        height: 135px;
        border: 3px solid white;

    }
    .hero__image-small--bottom{
        bottom: 35px;
        right: -15px;
        top: inherit;
        left: initial;
    }
    .hero__image-small--top{
        top: -30px;
        left: -15px;
    }

    .hero__info-card{
        display: none;
    }

    .events__content {
        flex-direction: column;
    }
    
    .events__grid {
        grid-template-columns: 1fr;
    }
    
    .venue {
        flex-direction: column;
    }
    
    .venue__images {
        height: auto;
        position: static;
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 20px;
        order: 2;
    }
    
    .venue__content {
        order: 1;
    }
    
    .venue__images--left,
    .venue__images--right {
        flex-direction: column;
    }
    
    .venue__image-main {
        position: static;
        width: 100%;
        height: 250px;
        left: auto;
        right: auto;
        top: auto;
    }
    
    .venue__image-small {
        position: static;
        width: 100%;
        height: 180px;
        top: auto;
        left: auto;
        right: auto;
        display: block;
    }
    
    .history__item {
        flex-direction: column;
        gap: 20px;
    }
    
    .history__year {
        width: 100%;
        height: auto;
        order: -1; /* Pone el año arriba */
        margin-bottom: 1rem;
    }
    
    .history__year--left .history__year-content,
    .history__year--right .history__year-content {
        writing-mode: initial; /* Quita la rotación */
        text-orientation: initial;
        transform: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        height: auto;
        width: 100%;
        margin: 0 auto;
    }
    
    /* Triángulo apuntando hacia abajo en móvil */
    .history__year-triangle--left,
    .history__year-triangle--right {
        border-left: none;
        border-right: none;
        border-top: 17px solid #f08143;
        border-bottom: none;
        border-left: 17px solid transparent;
        border-right: 17px solid transparent;
        left: 50%;
        right: auto;
        bottom: -16px;
        top: auto;
        transform: translateX(-50%);
    }
    
    .history__card {
        flex-direction: column;
        height: auto;
        padding: 12px;
        gap: 0.8rem;
    }
    
    /* Textos responsive para history section */
    .history__year-number {
        font-size: 32px;
    }
    
    .history__year-date {
        font-size: 16px;
    }
    
    .history__card-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .history__card-description {
        font-size: 16px;
        margin: 12px 0;
        line-height: 1.4;
    }
    
    .history__stat-number {
        font-size: 24px;
    }
    
    .history__stat-label {
        font-size: 14px;
    }
    
    .history__card-image {
        width: 100%;
        margin: 0;
        height: 200px;
    }
    
    .history__card-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .history__stat-container {
        grid-column: span 2;
        display: flex;
        justify-content: space-around;
        gap: 20px;
    }
    
    .btn--tertiary {
        grid-column: span 2;
        width: 100%;
        max-width: none;
    }
    
    .footer__content {
        flex-direction: column;
    }
    
    .footer__info {
        flex-direction: column;
        gap: 40px;
    }
    
    .stats__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        justify-items: center;
    }
    
    .stats__number {
        font-size: 48px;
    }
    
    .stats__label {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero__title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .btn {
        width: 100%;
    }
    
    .venue__feature {
        flex-direction: column;
        text-align: center;
    }
    
    .venue__feature-icon {
        width: 80px;
        height: 80px;
    }
}

/* Events Archive Styles */
.events-archive__grid .event-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events-archive__grid .event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 25px 35px -5px rgba(0, 0, 0, 0.15);
}

.event-card__excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin: 12px 0;
}

.event-card__venue {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #666;
    font-size: 14px;
}

.events-pagination .page-numbers {
    display: inline-block;
    padding: 12px 20px;
    margin: 0 5px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.events-pagination .page-numbers.current {
    background-color: #f08143 !important;
    color: white !important;
}

.events-pagination .page-numbers:hover {
    background-color: #100a55;
    color: white;
}

/* Estilos para el filtro de The Events Calendar */
#tribe-events-bar {
    background: transparent !important;
    border: none !important;
}

#tribe-events-bar .tribe-events-bar-filters {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

#tribe-events-bar input[type="text"],
#tribe-events-bar select {
    padding: 12px 16px;
    border: 2px solid #e2e6f2;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: #333;
}

#tribe-events-bar input[type="text"]:focus,
#tribe-events-bar select:focus {
    outline: none;
    border-color: #100a55;
}

#tribe-events-bar .tribe-events-bar-submit {
    background-color: #f08143 !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
}

#tribe-events-bar .tribe-events-bar-submit:hover {
    background-color: #e07133 !important;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    align-items: center;
    gap: 8px;
    color: #333;
}

.mobile-menu-text {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.hamburger {
    display: flex;
    flex-direction: column;
    width: 20px;
    height: 16px;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    background-color: white;
    width: 90%;
    max-width: 400px;
    border-radius: 24px;
    padding: 40px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: scale(1);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #cccccc;
}

.mobile-menu-logo {
    width: 120px;
    object-fit: cover;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: #333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: #f0f0f0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-link {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid #eeeeee;
    transition: all 0.3s ease;
    transform: translateX(-20px);
    opacity: 0;
}

.mobile-menu-overlay.active .mobile-nav-link {
    transform: translateX(0);
    opacity: 1;
}

.mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-link:nth-child(4) { transition-delay: 0.4s; }

.mobile-nav-link--active {
    font-weight: 700;
    color: #100a55;
}

.mobile-nav-link:hover {
    color: #100a55;
    padding-left: 10px;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Events Archive Mobile */
    .events-archive__grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .events-archive .section-header h1 {
        font-size: 36px;
    }
    
    .events-archive .section-header p {
        font-size: 16px;
    }
    
    #tribe-events-bar .tribe-events-bar-filters {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    #tribe-events-bar input[type="text"],
    #tribe-events-bar select {
        width: 100%;
    }
    
    .events-pagination .page-numbers {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Calendario Styles */
.nodo-calendar {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nodo-calendar .base {
    width: 455px;
    height: 325px;
    border-radius: 18px;
    box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.27);
    overflow: hidden;
    max-width: 100%;
}

.nodo-calendar .base.top {
    position: relative;
    background-color: #29335C;
}

.nodo-calendar .base.bottom {
    position: relative;
    background-color: #fff;
}

.nodo-calendar .base.bottom::before {
    content: " ";
    display: block;
    width: 100%;
    height: 28%;
    background-color: #29335C;
}

.nodo-calendar .year-side {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F3A712;
    width: 20%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
}

.nodo-calendar .year-side .year {
    display: block;
    color: #29335C;
    font-family: Roboto, sans-serif;
    font-size: 45px;
    font-weight: bold;
    transform: rotate(-90deg);
}

.nodo-calendar .month-side {
    width: 80%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 20%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.nodo-calendar .month-side .month {
    display: block;
    color: #F3A712;
    font-family: Roboto, sans-serif;
    font-size: 52px;
    font-weight: bold;
    text-align: center;
}

.nodo-calendar .cal-nav {
    color: #F3A712;
    font-size: 38px;
    font-weight: bold;
    text-decoration: none;
    line-height: 1;
    padding: 4px 12px;
    border-radius: 50%;
    transition: all 0.2s ease;
    user-select: none;
    background: none;
    border: none;
    cursor: pointer;
}


.nodo-calendar .cal-nav:hover {
    background-color: rgba(243, 167, 18, 0.2);
    color: #ffffff;
    transform: scale(1.15);
}

.nodo-calendar .days {
    width: 90%;
    height: 75%;
    position: absolute;
    top: 15%;
    left: 5%;
    display: grid;
    grid-template: repeat(6, 1fr)/repeat(7, 1fr);
    grid-gap: 1px;
}

.nodo-calendar .days > div {
    text-align: center;
    padding-top: 20%;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    color: #29335C;
}

.nodo-calendar .days > div.old {
    color: #999;
}

.nodo-calendar .days > div.weekday {
    font-weight: bold;
    color: #F3A712;
}

/* Estilos para días con eventos */
.nodo-calendar .days > div.has-events {
    position: relative;
}

.nodo-calendar .days > div.has-events .day-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #29335C;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    background-color: rgba(243, 167, 18, 0.1);
    border: 2px solid transparent;
}

.nodo-calendar .days > div.has-events .day-link:hover {
    background-color: rgba(243, 167, 18, 0.2);
    border-color: #F3A712;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nodo-calendar .days > div.has-events .event-indicator {
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 8px;
    height: 8px;
    background-color: #F3A712;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive para el calendario */
@media (max-width: 768px) {
    .nodo-calendar .month-side .month {
        font-size: 48px;
    }
}

/* Componente Ficha del Evento en Single Post */
.event-info-card {
    background: linear-gradient(135deg, #100a55 0%, #29335C 100%);
    border-radius: 20px;
    padding: 28px 32px;
    margin: 25px 0 35px 0;
    box-shadow: 0 12px 30px rgba(16, 10, 85, 0.18);
    position: relative;
    overflow: hidden;
    color: #ffffff;
    border: 1px solid rgba(243, 167, 18, 0.25);
}

.event-info-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(243, 167, 18, 0.2) 0%, rgba(243, 167, 18, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.event-info-card__header {
    margin-bottom: 20px;
}

.event-info-card__badge {
    display: inline-block;
    background: rgba(243, 167, 18, 0.15);
    color: #F3A712;
    border: 1px solid #F3A712;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.event-info-card__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: center;
}

.event-info-card__item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    padding: 16px 20px;
    border-radius: 14px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, background 0.3s ease;
}

.event-info-card__item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

.event-info-card__icon-box {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: rgba(243, 167, 18, 0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(243, 167, 18, 0.3);
}

.event-info-card__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.event-info-card__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #d1d5db;
    font-weight: 500;
}

.event-info-card__value {
    font-size: 17px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

/* Botón Google Calendar Premium */
.btn-gcalendar {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #4285F4 0%, #2b6cb0 100%);
    color: #ffffff !important;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-gcalendar:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(66, 133, 244, 0.5);
    background: linear-gradient(135deg, #3367d6 0%, #1a4971 100%);
}

.btn-gcalendar svg {
    transition: transform 0.3s ease;
}

.btn-gcalendar:hover svg {
    transform: rotate(10deg);
}

/* Navegación entre entradas Premium */
.post-navigation {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px dashed #d1d9ec;
}

.post-navigation__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.post-nav-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(145deg, #ffffff 0%, #f4f6fc 100%);
    border: 1.5px solid #e1e6f5;
    padding: 20px 24px;
    border-radius: 18px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 16px rgba(16, 10, 85, 0.05);
}

.post-nav-card--next {
    justify-content: flex-end;
}

.post-nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #F3A712;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.post-nav-card--next::before {
    left: auto;
    right: 0;
}

.post-nav-card:hover {
    border-color: #F3A712;
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(16, 10, 85, 0.14);
    background: #ffffff;
}

.post-nav-card:hover::before {
    opacity: 1;
}

.post-nav-card__arrow {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #100a55;
    color: #F3A712;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(16, 10, 85, 0.15);
}

.post-nav-card--prev:hover .post-nav-card__arrow {
    background: #F3A712;
    color: #100a55;
    transform: translateX(-4px);
}

.post-nav-card--next:hover .post-nav-card__arrow {
    background: #F3A712;
    color: #100a55;
    transform: translateX(4px);
}

.post-nav-card__thumb {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.post-nav-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-nav-card:hover .post-nav-card__thumb img {
    transform: scale(1.1);
}

.post-nav-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.post-nav-card__badge {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #F3A712;
    font-weight: 700;
    background: rgba(243, 167, 18, 0.12);
    padding: 3px 10px;
    border-radius: 20px;
    width: fit-content;
}

.post-nav-card--next .post-nav-card__badge {
    align-self: flex-end;
}

.post-nav-card__title {
    font-size: 15px;
    color: #100a55;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.post-nav-card:hover .post-nav-card__title {
    color: #29335C;
}

/* Layout del Single Post con Sidebar */
.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 45px;
    align-items: start;
}

@media (max-width: 992px) {
    .single-post-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Styles */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 20px;
    padding: 26px 24px;
    border: 1px solid #e2e6f2;
    box-shadow: 0 8px 24px rgba(16, 10, 85, 0.05);
}

/* Sidebar Widget: Ficha del Evento */
.sidebar-widget--event-card {
    background: linear-gradient(135deg, #100a55 0%, #29335C 100%);
    border: 1px solid rgba(243, 167, 18, 0.3);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.sidebar-widget--event-card::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(243, 167, 18, 0.25) 0%, rgba(243, 167, 18, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sidebar-widget__badge {
    display: inline-block;
    background: rgba(243, 167, 18, 0.15);
    color: #F3A712;
    border: 1px solid #F3A712;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.sidebar-event-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.sidebar-event-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.06);
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease;
}

.sidebar-event-detail-item:hover {
    background: rgba(255, 255, 255, 0.12);
}

.sidebar-event-detail-item__icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: rgba(243, 167, 18, 0.2);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(243, 167, 18, 0.3);
}

.sidebar-event-detail-item__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-event-detail-item__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #cbd5e0;
    font-weight: 500;
}

.sidebar-event-detail-item__value {
    font-size: 15px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}


.sidebar-widget__header {
    margin-bottom: 20px;
    position: relative;
}

.sidebar-widget__title {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    color: #100a55;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sidebar-widget__line {
    display: block;
    width: 45px;
    height: 3px;
    background: #F3A712;
    border-radius: 2px;
}

/* Items de próximos eventos */
.sidebar-event-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f4fc;
    text-decoration: none;
    transition: all 0.25s ease;
}

.sidebar-event-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-event-item:first-child {
    padding-top: 0;
}

.sidebar-event-item:hover {
    transform: translateX(4px);
}

.sidebar-event-item__thumb {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.sidebar-event-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-event-item__date-badge {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: #100a55;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.sidebar-event-item__day {
    font-size: 18px;
    font-weight: 800;
    color: #F3A712;
}

.sidebar-event-item__month {
    font-size: 11px;
    text-transform: uppercase;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.sidebar-event-item__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-event-item__title {
    font-size: 14px;
    font-weight: 700;
    color: #100a55;
    margin: 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.sidebar-event-item:hover .sidebar-event-item__title {
    color: #F3A712;
}

.sidebar-event-item__date {
    font-size: 12px;
    color: #718096;
    font-weight: 500;
}

/* Lista de Categorías de Áreas Destacadas */
.sidebar-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
}

.sidebar-category-link:hover {
    background: #100a55;
    border-color: #100a55;
    transform: translateX(4px);
}

.sidebar-category-link__name {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    transition: color 0.25s ease;
}

.sidebar-category-link:hover .sidebar-category-link__name {
    color: #ffffff;
}

.sidebar-category-link__count {
    font-size: 12px;
    font-weight: 700;
    background: rgba(243, 167, 18, 0.2);
    color: #100a55;
    padding: 3px 10px;
    border-radius: 20px;
    transition: all 0.25s ease;
}

.sidebar-category-link:hover .sidebar-category-link__count {
    background: #F3A712;
    color: #100a55;
}

/* Página de Contacto Premium */
.contact-page {
    background: #f8fafc;
    padding-bottom: 80px;
}

.contact-hero {
    background: linear-gradient(135deg, #100a55 0%, #29335C 100%);
    padding: 80px 4% 110px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100px;
    background: #f8fafc;
    border-radius: 50% 50% 0 0;
}

.contact-hero__badge {
    display: inline-block;
    background: rgba(243, 167, 18, 0.15);
    color: #F3A712;
    border: 1px solid #F3A712;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.contact-hero__title {
    font-family: 'Anton', sans-serif;
    font-size: 54px;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.contact-hero__subtitle {
    font-size: 18px;
    color: #cbd5e0;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: -60px;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .contact-section-grid {
        grid-template-columns: 1fr;
        margin-top: -30px;
    }
}

.contact-card {
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 35px rgba(16, 10, 85, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 18px 45px rgba(16, 10, 85, 0.11);
}

.contact-card__title {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    color: #100a55;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.contact-card__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3.5px;
    background: #F3A712;
    border-radius: 2px;
}

/* Items de información de contacto */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-info-item__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, #100a55 0%, #29335C 100%);
    color: #F3A712;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 16px rgba(16, 10, 85, 0.15);
}

.contact-info-item__content h4 {
    font-size: 15px;
    color: #100a55;
    font-weight: 700;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item__content p {
    font-size: 16px;
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

/* Redes Sociales */
.contact-socials-title {
    font-size: 15px;
    color: #100a55;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-socials-list {
    display: flex;
    gap: 14px;
}

.contact-social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-social-btn--facebook { background: #1877F2; }
.contact-social-btn--instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.contact-social-btn--youtube { background: #FF0000; }

.contact-social-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Secciones de Mapa y Transporte */
.contact-location-card {
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 35px rgba(16, 10, 85, 0.07);
    margin-bottom: 60px;
}

.contact-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 992px) {
    .contact-location-grid {
        grid-template-columns: 1fr;
    }
}

.contact-transport-box {
    background: #f8fafc;
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid #F3A712;
    margin-top: 24px;
}

.contact-transport-title {
    font-size: 16px;
    font-weight: 700;
    color: #100a55;
    margin-bottom: 12px;
}

.contact-transport-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-transport-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #4a5568;
    font-weight: 500;
}

.contact-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 4px solid #ffffff;
    height: 100%;
    min-height: 400px;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    display: block;
}

/* Horarios Banner */
.contact-schedule-banner {
    background: linear-gradient(135deg, #100a55 0%, #29335C 100%);
    padding: 50px 40px;
    border-radius: 24px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 15px 35px rgba(16, 10, 85, 0.2);
    border: 1px solid rgba(243, 167, 18, 0.2);
}

.contact-schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 35px;
}

.contact-schedule-item {
    background: rgba(255, 255, 255, 0.07);
    padding: 22px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.contact-schedule-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.contact-schedule-item h4 {
    color: #F3A712;
    font-size: 15px;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-schedule-item p {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

/* Estilos Responsivos para Single Post */
.single-post-wrapper {
    padding: 60px 4% 40px;
    box-sizing: border-box;
}

.single-post__title {
    font-family: 'Anton', sans-serif;
    font-size: 44px;
    line-height: 1.15;
    color: #100a55;
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.single-post__featured-img {
    margin-bottom: 25px;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
}

.single-post__featured-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.post-content iframe,
.post-content video,
.post-content embed {
    max-width: 100%;
}

@media (max-width: 992px) {
    .single-post-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .single-post-wrapper {
        padding: 30px 4% 30px;
    }

    .single-post__title {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .post-content {
        font-size: 16px !important;
        line-height: 1.7 !important;
    }

    .btn-gcalendar {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 40px;
    }

    .post-navigation__container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .post-nav-card {
        padding: 16px 18px;
    }

    .post-nav-card--next {
        justify-content: flex-start;
    }

    .post-nav-card--next .post-nav-card__meta {
        text-align: left !important;
    }

    .post-nav-card--next .post-nav-card__badge {
        align-self: flex-start !important;
    }
}

@media (max-width: 480px) {
    .single-post__title {
        font-size: 24px;
    }

    .sidebar-widget {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .sidebar-widget__title {
        font-size: 19px;
    }

    .sidebar-event-item {
        gap: 10px;
    }

    .sidebar-event-item__thumb,
    .sidebar-event-item__date-badge {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .sidebar-event-item__day {
        font-size: 16px;
    }

    .post-nav-card__thumb {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .post-nav-card__title {
        font-size: 14px;
    }
}







