/*--------------------------------------------------------------
# Asamblea RAMCC Custom Styles
# Paleta de colores y estilos específicos del proyecto
--------------------------------------------------------------*/

/* Variables adicionales específicas del proyecto */
:root {
    /* Colores específicos RAMCC */
    --asamblea-verde: #1A360D;
    --asamblea-verde-light: #2A5A1A;
    --asamblea-verde-dark: #0F2307;

    /* Colores institucionales SMT */
    --smt-azul: #0066FF;
    --smt-celeste: #2EB1FF;
    --smt-amarillo: #F4DC00;

    /* Gradientes */
    --gradient-verde: linear-gradient(135deg, var(--asamblea-verde) 0%, var(--asamblea-verde-light) 100%);
    --gradient-institucional: linear-gradient(135deg, var(--asamblea-verde) 0%, var(--smt-azul) 100%);

    /* Sombras */
    --shadow-light: 0 2px 15px rgba(26, 54, 13, 0.1);
    --shadow-medium: 0 5px 25px rgba(26, 54, 13, 0.15);
    --shadow-heavy: 0 10px 40px rgba(26, 54, 13, 0.2);

    /* Sobreescribir variables del template para usar colores RAMCC */
    --heading-color: #1A360D;
    --accent-color: #1A360D;
    --nav-hover-color: #1A360D;
    --nav-dropdown-hover-color: #1A360D;
}

/* Logo base - sin estilos específicos */
.header .logo img {
    transition: all 0.4s ease;
}

/* ESTADO TRANSPARENTE - Sin logo, contenedor mínimo */
.navbar-transparent .logo {
    min-width: auto;
    height: auto;
}

.navbar-transparent .logo img {
    max-height: 0px;
    margin-right: 0px;
    opacity: 0;
}

/* ESTADO SÓLIDO - Logo grande y visible */
.navbar-solid .logo {
    min-width: 280px;
    height: 90px;
}

.navbar-solid .logo img {
    max-height: 90px;
    margin-right: 15px;
}

/* Sistema de navbar dinámico base */
.header {
    transition: all 0.4s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

/* Estado TRANSPARENTE específico */
.header.navbar-transparent {
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0px 0;
}

.navbar-transparent .navmenu a {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.navbar-transparent .navmenu a:hover,
.navbar-transparent .navmenu .active {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.navbar-transparent .logo-dark {
    opacity: 0;
}

.navbar-transparent .logo-light {
    opacity: 0;
    /* Sin logo en transparente */
}

.navbar-transparent .mobile-nav-toggle {
    color: #ffffff;
}

/* Estado SÓLIDO específico */
.header.navbar-solid {
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(26, 54, 13, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

.navbar-solid .navmenu a {
    color: var(--nav-color);
    transition: all 0.3s ease;
}

.navbar-solid .navmenu a:hover,
.navbar-solid .navmenu .active {
    color: var(--asamblea-verde);
    text-shadow: none;
}

.navbar-solid .logo-dark {
    opacity: 1;
}

.navbar-solid .logo-light {
    opacity: 0;
}

.navbar-solid .mobile-nav-toggle {
    color: var(--nav-color);
}

/* Contenedor de logos - base sin tamaños fijos */
.header .logo {
    position: relative;
    transition: all 0.4s ease;
}

.header .logo img {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease;
}

/* Efecto de navbar en scroll - mejorado */
.header {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header.navbar-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header.navbar-visible {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive para navbar dinámico */
@media (max-width: 768px) {

    /* Estado transparente mobile - navbar compacto sin logo */
    .navbar-transparent {
        padding: 12px 0;
    }

    .navbar-transparent .logo {
        min-width: 0;
        height: 0;
        overflow: hidden;
    }

    .navbar-transparent .logo img {
        max-height: 0px;
        margin-right: 0px;
        opacity: 0;
    }

    /* Estado sólido mobile - logo visible y compacto */
    .navbar-solid {
        padding: 8px 0;
    }

    .navbar-solid .logo {
        min-width: 200px;
        height: 70px;
    }

    .navbar-solid .logo img {
        max-height: 70px;
        margin-right: 10px;
    }

    /* Mobile nav toggle ajustado */
    .mobile-nav-toggle {
        font-size: 28px;
        line-height: 0;
        margin-left: 10px;
    }
}

/* Hero Section Personalizado - Asamblea RAMCC */
.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-logos img {
    height: 60px;
    width: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.hero-logos img:hover {
    transform: scale(1.05);
}

.event-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--contrast-color);
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: var(--asamblea-verde);
    color: white;
    border: 2px solid var(--asamblea-verde);
}

.btn-primary:hover {
    background: var(--asamblea-verde-light);
    border-color: var(--asamblea-verde-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 54, 13, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--asamblea-verde);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-logos {
        gap: 20px;
    }

    .hero-logos img {
        height: 45px;
    }

    .event-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 25px;
        font-size: 0.9rem;
        min-width: 200px;
        text-align: center;
    }
}

/* Clases de utilidad para colores */
.text-asamblea {
    color: var(--asamblea-verde) !important;
}

.text-smt-azul {
    color: var(--smt-azul) !important;
}

.text-smt-celeste {
    color: var(--smt-celeste) !important;
}

.bg-asamblea {
    background-color: var(--asamblea-verde) !important;
}

.bg-gradient-asamblea {
    background: var(--gradient-verde) !important;
}

.bg-gradient-institucional {
    background: var(--gradient-institucional) !important;
}

/* Botones personalizados */
.btn-asamblea {
    background-color: var(--asamblea-verde);
    border-color: var(--asamblea-verde);
    color: white;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-asamblea:hover {
    background-color: var(--asamblea-verde-light);
    border-color: var(--asamblea-verde-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-smt {
    background-color: var(--smt-azul);
    border-color: var(--smt-azul);
    color: white;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-smt:hover {
    background-color: var(--smt-celeste);
    border-color: var(--smt-celeste);
    color: white;
}

/* Hero Section Personalizado */
.hero-asamblea {
    background: var(--gradient-verde);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-asamblea::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
}

/* Section Titles */
.section-title-asamblea {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-asamblea h2 {
    color: var(--asamblea-verde);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.section-title-asamblea h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-verde);
    margin: 20px auto;
    border-radius: 2px;
}

.section-title-asamblea p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards personalizadas */
.card-asamblea {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-asamblea:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-asamblea .card-header {
    background: var(--gradient-verde);
    color: white;
    border: none;
    padding: 20px;
}

/* Badges personalizados */
.badge-asamblea {
    background-color: var(--asamblea-verde);
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
}

.badge-smt {
    background-color: var(--smt-azul);
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
}

/* Header personalizado */
.header-asamblea {
    background-color: white;
    box-shadow: 0 2px 20px rgba(26, 54, 13, 0.1);
}

.header-asamblea .sitename {
    color: var(--asamblea-verde);
    font-weight: 700;
}

/* Footer personalizado */
.footer-asamblea {
    background: var(--asamblea-verde);
    color: white;
}

.footer-asamblea .sitename {
    color: white;
}

.footer-asamblea a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-asamblea a:hover {
    color: white;
}

/* Números y estadísticas */
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--asamblea-verde);
    line-height: 1;
}

.stat-label {
    color: #666;
    font-weight: 500;
    margin-top: 10px;
}

/* Timeline para agenda */
.timeline-item {
    border-left: 3px solid var(--asamblea-verde);
    padding-left: 20px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: var(--asamblea-verde);
}

.timeline-time {
    color: var(--asamblea-verde);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title-asamblea h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .btn-asamblea,
    .btn-smt {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Light background override específico para el proyecto */
.light-background {
    --background-color: #f8fffe;
    --surface-color: #ffffff;
}

/* Dark background para secciones especiales */
.asamblea-dark {
    --background-color: var(--asamblea-verde);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: rgba(255, 255, 255, 0.1);
    --contrast-color: #ffffff;
}

/* Hero Principal - Logo a la izquierda del título */
.hero-title-container {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 24px;
}

.hero-title-container .logo-eight-left {
    width: 80px;
    height: auto;
    max-width: 80px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Filtro oscuro del 20% sobre todos los fondos de slides */
.hero .swiper-slide .slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Asegurar que el contenido esté por encima del overlay */
.hero .swiper-slide .slide-content {
    position: relative;
    z-index: 2;
}

/* Estilos específicos para el slide principal con logo del 8 */
.slide-principal .title-with-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.slide-principal .logo-eight-inline {
    width: 180px;
    height: auto;
    max-width: 180px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* H1 más pequeño solo en el slide principal */
.slide-principal .title-with-logo h1 {
    font-size: 52px !important;
    margin: 0;
    line-height: 1.1;
    text-align: left;
}

/* Logos institucionales pequeños en el slide principal */
.slide-footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.slide-footer-logos img {
    height: 45px;
    width: auto;
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.slide-footer-logos a {
    display: inline-block;
    transition: all 0.3s ease;
}

.slide-footer-logos a:hover {
    transform: translateY(-2px);
}

.slide-footer-logos img:hover {
    opacity: 1;
}

/* Responsive para los logos del slide principal */
@media (max-width: 768px) {
    .slide-footer-logos {
        gap: 20px;
        margin-top: 25px;
    }

    .slide-footer-logos img {
        height: 35px;
    }
}

@media (max-width: 576px) {
    .slide-footer-logos {
        gap: 15px;
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .slide-footer-logos img {
        height: 30px;
    }
}

/* Responsive para el slide principal */
@media (max-width: 768px) {
    .slide-principal .title-with-logo {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .slide-principal .logo-eight-inline {
        width: 130px;
        max-width: 130px;
        margin: 0 auto;
    }

    .slide-principal .title-with-logo h1 {
        font-size: 35px !important;
        text-align: center !important;
        margin: 0;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .slide-principal .logo-eight-inline {
        width: 108px;
        max-width: 108px;
        margin: 0 auto;
    }

    .slide-principal .title-with-logo h1 {
        font-size: 26px !important;
        text-align: center !important;
        margin: 0;
        width: 100%;
    }
}

/* Logos institucionales - orden jerárquico según manual */
.hero-footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-footer-logos img {
    height: 55px;
    width: auto;
    opacity: 0.95;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.hero-footer-logos img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Priorización visual según jerarquía del manual */
.hero-footer-logos .logo-smt {
    height: 60px;
    /* SMT ligeramente más grande por ser sede anfitriona */
}

/* Responsive para el logo a la izquierda */
@media (max-width: 768px) {
    .hero-title-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-title-container .logo-eight-left {
        width: 60px;
        max-width: 60px;
    }

    .hero-title-container h1 {
        font-size: 38px !important;
        text-align: center;
    }

    .hero-footer-logos {
        gap: 25px;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .hero-footer-logos img {
        height: 45px;
    }

    .hero-footer-logos .logo-smt {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .hero-title-container .logo-eight-left {
        width: 50px;
        max-width: 50px;
    }

    .hero-title-container h1 {
        font-size: 28px !important;
    }

    .hero-footer-logos {
        gap: 20px;
    }

    .hero-footer-logos img {
        height: 40px;
    }

    .hero-footer-logos .logo-smt {
        height: 45px;
    }
}

/* Mobile Navigation - Fixes específicos para hamburger menu */
@media (max-width: 1199px) {

    /* Asegurar que el toggle sea clickeable */
    .mobile-nav-toggle {
        position: relative;
        z-index: 9998;
        display: block;
        padding: 8px;
        line-height: 1;
        cursor: pointer;
        touch-action: manipulation;
    }

    /* Estados del navbar para mobile */
    .navbar-transparent .mobile-nav-toggle {
        color: #ffffff !important;
    }

    .navbar-solid .mobile-nav-toggle {
        color: var(--nav-color) !important;
    }

    /* Asegurar que el menú mobile sea visible cuando está activo */
    .mobile-nav-active .navmenu {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        background: rgba(26, 54, 13, 0.95) !important;
        z-index: 9997;
        display: block !important;
        overflow-y: auto;
    }

    .mobile-nav-active .navmenu ul {
        display: block !important;
        padding: 80px 20px 20px 20px;
        margin: 0;
        list-style: none;
    }

    .mobile-nav-active .navmenu ul li {
        margin-bottom: 15px;
    }

    .mobile-nav-active .navmenu ul li a {
        color: #ffffff !important;
        font-size: 18px;
        font-weight: 500;
        padding: 12px 15px;
        display: block;
        text-decoration: none;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .mobile-nav-active .navmenu ul li a:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #ffffff !important;
    }

    .mobile-nav-active .mobile-nav-toggle {
        position: fixed !important;
        top: 15px;
        right: 15px;
        color: #ffffff !important;
        font-size: 32px;
        z-index: 9999;
    }

    /* Evitar scroll del body cuando el menú está abierto */
    .mobile-nav-active {
        overflow: hidden !important;
    }
}

/* ========================================
   MODAL TRANSPARENTE - VIDEO
   ======================================== */

/* Modal transparente similar al navbar */
#videoModal .modal-content {
    background-color: rgba(255, 255, 255, 0.1) !important;
    /* Fondo transparente con glassmorphism */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Header del modal */
#videoModal .modal-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 24px;
}

/* Título en blanco */
#videoModal .modal-title {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1.25rem;
}

/* Botón de cerrar en blanco */
#videoModal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#videoModal .btn-close:hover {
    opacity: 1;
}

/* Body del modal */
#videoModal .modal-body {
    background-color: transparent;
    padding: 24px;
}

/* Iframe del video con bordes redondeados */
#videoModal .ratio iframe {
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* ========================================
   ALERTA CRONOGRAMA - ESTILOS ELEGANTES
   ======================================== */

/* Modal de alerta transparente */
.alert-cronograma {
    background-color: rgba(255, 255, 255, 0.1) !important;
    /* Misma transparencia que el modal del video */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    max-width: 420px;
    margin: 0 auto;
}

/* Body de la alerta */
.alert-cronograma .modal-body {
    background-color: transparent;
    padding: 40px 30px;
    color: #ffffff;
}

/* Icono principal */
.alert-cronograma .alert-icon {
    font-size: 48px;
    color: #F4DC00;
    /* Amarillo SMT */
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(244, 220, 0, 0.4);
}

/* Título de la alerta */
.alert-cronograma .alert-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mensaje de la alerta */
.alert-cronograma .alert-message {
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff !important;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Fecha destacada */
.alert-cronograma .alert-date {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.alert-cronograma .alert-date small {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Botón de la alerta - estilo transparente acorde al modal */
.alert-cronograma .btn-primary {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    color: #ffffff !important;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.alert-cronograma .btn-primary:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: #ffffff !important;
}

/* ========================================
   ABOUT SECTION - PALETA LIMPIA Y PROFESIONAL
   ======================================== */

/* Iconos con verde principal uniforme y elegante */
.about .feature-item .feature-icon {
    background: linear-gradient(135deg, #1A360D 0%, #2d5a1a 100%) !important;
    box-shadow: 0 4px 16px rgba(26, 54, 13, 0.2) !important;
    transition: all 0.3s ease;
}

.about .feature-item .feature-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 54, 13, 0.3) !important;
}

/* Botón CTA limpio y profesional */
.about .btn-primary-action {
    background: #1A360D !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(26, 54, 13, 0.25) !important;
    border: 2px solid transparent !important;
}

.about .btn-primary-action:hover {
    background: #2d5a1a !important;
    color: #ffffff !important;
    box-shadow: 0 8px 28px rgba(26, 54, 13, 0.35) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Stats banner elegante y profesional */
.about .stats-banner {
    background: linear-gradient(135deg, #1A360D 0%, #2d5a1a 100%) !important;
    box-shadow: 0 12px 40px rgba(26, 54, 13, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Ícono de contacto con estilo institucional sutil */
.about .contact-info i {
    color: #2d5a1a;
    background: rgba(26, 54, 13, 0.1);
    padding: 8px;
    border-radius: 8px;
}

/* Mejora en los textos de contacto */
.about .contact-info .info-text strong {
    color: #1A360D !important;
}

/*--------------------------------------------------------------
# Call to Action 2 - Simplified Background Style
--------------------------------------------------------------*/

.call-to-action-2 {
    padding: 0;
}

.call-to-action-2 .cta-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.call-to-action-2 .cta-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.call-to-action-2 .container {
    position: relative;
    z-index: 2;
}

.call-to-action-2 .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.call-to-action-2 .cta-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.call-to-action-2 .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.call-to-action-2 .btn {
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

/* Botón primario - Municipios (mismo estilo transparente) */
.call-to-action-2 .btn-primary {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px);
}

.call-to-action-2 .btn-primary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}

/* Botón outline - Empresas (mismo estilo transparente) */
.call-to-action-2 .btn-outline {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px);
}

.call-to-action-2 .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}

/* Botón secondary - Público General (gris elegante) */
.call-to-action-2 .btn-secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px);
}

.call-to-action-2 .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}

.call-to-action-2 .btn i {
    margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .call-to-action-2 .cta-title {
        font-size: 2rem;
    }

    .call-to-action-2 .cta-subtitle {
        font-size: 1rem;
    }

    .call-to-action-2 .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .call-to-action-2 .btn {
        width: 100%;
        max-width: 300px;
        margin: 0;
    }
}

/*--------------------------------------------------------------
# Hero 2 - Ciudad Anfitriona Feature Box Links
--------------------------------------------------------------*/

.feature-box-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.feature-box-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

.feature-box-link .feature-box {
    transition: all 0.3s ease;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
}

.feature-box-link:hover .feature-box {
    box-shadow: 0 8px 30px rgba(26, 54, 13, 0.15);
    border-color: rgba(26, 54, 13, 0.1);
    background: rgba(26, 54, 13, 0.02);
}

.feature-box-link .feature-icon {
    color: var(--asamblea-verde);
    transition: all 0.3s ease;
}

.feature-box-link:hover .feature-icon {
    color: var(--asamblea-verde-dark);
    transform: scale(1.1);
}

.feature-box-link .feature-title {
    color: var(--asamblea-verde);
    transition: all 0.3s ease;
}

.feature-box-link:hover .feature-title {
    color: var(--asamblea-verde-dark);
}

/*--------------------------------------------------------------
# Intendentes Participantes Section
--------------------------------------------------------------*/

.intendentes {
    padding: 80px 0;
    background: #f9f9f9;
}

.intendentes .section-title h2 {
    color: var(--asamblea-verde);
    font-weight: 700;
}

.intendentes-horizontal-scroll {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.intendentes-track-auto {
    display: flex;
    gap: 20px;
    animation: scroll-horizontal 60s linear infinite;
    width: calc(300px * 12);
    /* Ancho total para 12 cards (8 originales + 4 duplicadas) */
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 8));
        /* Desplaza exactamente 8 cards */
    }
}

.intendentes-horizontal-scroll:hover .intendentes-track-auto {
    animation-play-state: paused;
}

.intendente-card-wrapper {
    flex: 0 0 280px;
    min-width: 280px;
}

.intendente-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.intendente-card-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

.intendente-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.intendente-card:hover {
    box-shadow: 0 8px 30px rgba(26, 54, 13, 0.15);
    transform: translateY(-2px);
}

.intendente-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.intendente-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.intendente-card:hover .intendente-image img {
    transform: scale(1.05);
}

.intendente-info {
    padding: 20px;
    text-align: center;
}

.intendente-nombre {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--asamblea-verde);
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.intendente-cargo {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.intendente-provincia {
    font-size: 0.85rem;
    color: var(--asamblea-verde-light);
    font-weight: 500;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(26, 54, 13, 0.1);
    border-radius: 20px;
}

.intendente-card:hover .intendente-nombre {
    color: var(--asamblea-verde-dark);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .intendentes {
        padding: 60px 0;
    }

    .intendente-card-wrapper {
        flex: 0 0 250px;
        min-width: 250px;
    }

    .intendentes-track-auto {
        width: calc(270px * 12);
        /* Ajuste para móvil */
    }

    @keyframes scroll-horizontal {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-270px * 8));
        }
    }

    .intendente-image {
        height: 180px;
    }

    .intendente-info {
        padding: 15px;
    }

    .intendente-nombre {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .intendente-card-wrapper {
        flex: 0 0 220px;
        min-width: 220px;
    }

    .intendentes-track-auto {
        gap: 15px;
        width: calc(235px * 12);
        /* Ajuste para móvil pequeño */
    }

    @keyframes scroll-horizontal {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-235px * 8));
        }
    }
}

/*--------------------------------------------------------------
# Disertantes Section - Enhanced version with larger images
--------------------------------------------------------------*/

.disertantes {
    padding: 80px 0;
    background: #fafafa;
}

.disertantes .section-title h2 {
    color: var(--asamblea-verde);
    font-weight: 700;
}

.disertantes-horizontal-scroll {
    overflow: hidden;
    padding: 30px 0;
    position: relative;
}

.disertantes-track-auto {
    display: flex;
    gap: 30px;
    animation: scroll-horizontal-disertantes 70s linear infinite;
    width: calc(380px * 11);
    /* Ancho total para 11 cards (6 originales + 4 duplicadas + gap) */
}

@keyframes scroll-horizontal-disertantes {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-380px * 6));
        /* Desplaza exactamente 6 cards originales */
    }
}

.disertantes-horizontal-scroll:hover .disertantes-track-auto {
    animation-play-state: paused;
}

.disertante-card-wrapper {
    flex: 0 0 350px;
    min-width: 350px;
}

.disertante-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.4s ease;
}

.disertante-card-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-8px);
}

.disertante-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.disertante-card:hover {
    box-shadow: 0 15px 50px rgba(26, 54, 13, 0.2);
    transform: translateY(-3px);
}

.disertante-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    /* Mayor altura que intendentes (200px) */
}

.disertante-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: grayscale(20%);
}

.disertante-card:hover .disertante-image img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.disertante-info {
    padding: 25px;
    text-align: center;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.disertante-nombre {
    font-size: 1.3rem;
    /* Más grande que intendentes (1.1rem) */
    font-weight: 700;
    color: var(--asamblea-verde);
    margin-bottom: 8px;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.disertante-cargo {
    font-size: 1rem;
    /* Más grande que intendentes (0.9rem) */
    color: #555;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.disertante-institucion {
    font-size: 0.95rem;
    color: var(--asamblea-verde-light);
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    font-style: italic;
}

.disertante-ubicacion {
    font-size: 0.85rem;
    color: #777;
    font-weight: 500;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(26, 54, 13, 0.08);
    border-radius: 25px;
    border: 1px solid rgba(26, 54, 13, 0.1);
}

.disertante-card:hover .disertante-nombre {
    color: var(--asamblea-verde-dark);
}

.disertante-card:hover .disertante-ubicacion {
    background: rgba(26, 54, 13, 0.12);
    border-color: rgba(26, 54, 13, 0.2);
}

/* Responsive adjustments for Disertantes */
@media (max-width: 768px) {
    .disertantes {
        padding: 60px 0;
    }

    .disertante-card-wrapper {
        flex: 0 0 300px;
        min-width: 300px;
    }

    .disertantes-track-auto {
        gap: 25px;
        width: calc(325px * 11);
        /* Ajuste para tablet */
    }

    @keyframes scroll-horizontal-disertantes {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-325px * 6));
        }
    }

    .disertante-image {
        height: 240px;
    }

    .disertante-info {
        padding: 20px;
    }

    .disertante-nombre {
        font-size: 1.2rem;
    }

    .disertante-cargo {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .disertante-card-wrapper {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .disertantes-track-auto {
        gap: 20px;
        width: calc(300px * 11);
        /* Ajuste para móvil pequeño */
    }

    @keyframes scroll-horizontal-disertantes {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-300px * 6));
        }
    }

    .disertante-image {
        height: 220px;
    }

    .disertante-info {
        padding: 18px;
    }

    .disertante-nombre {
        font-size: 1.1rem;
    }

    .disertante-cargo {
        font-size: 0.9rem;
    }

    .disertante-institucion {
        font-size: 0.85rem;
    }
}

/*--------------------------------------------------------------
# Sponsors Section - Dual horizontal scrolling galleries
--------------------------------------------------------------*/

.sponsors {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.sponsors .section-title h2 {
    color: var(--asamblea-verde);
    font-weight: 700;
}

.sponsors-row-right,
.sponsors-row-left {
    margin: 30px 0;
    overflow: hidden;
    position: relative;
}

.sponsors-track-right {
    display: flex;
    gap: 40px;
    animation: sponsors-scroll-right 40s linear infinite;
    width: calc(180px * 14);
    /* Ancho para 14 items (7 originales + 4 duplicados + gap) */
}

.sponsors-track-left {
    display: flex;
    gap: 40px;
    animation: sponsors-scroll-left 45s linear infinite;
    width: calc(180px * 14);
    /* Ancho para 14 items */
}

@keyframes sponsors-scroll-right {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-180px * 7));
        /* Desplaza exactamente 7 sponsors originales */
    }
}

@keyframes sponsors-scroll-left {
    0% {
        transform: translateX(calc(-180px * 7));
        /* Empieza desde la posición final */
    }

    100% {
        transform: translateX(0);
        /* Se mueve hacia la izquierda (dirección opuesta) */
    }
}

.sponsors-row-right:hover .sponsors-track-right,
.sponsors-row-left:hover .sponsors-track-left {
    animation-play-state: paused;
}

.sponsor-item {
    flex: 0 0 160px;
    min-width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 15px;
}

.sponsor-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 54, 13, 0.1);
}

.sponsor-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sponsor-link:hover {
    text-decoration: none;
}

.sponsor-logo {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(30%) opacity(0.8);
}

.sponsor-link:hover .sponsor-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Responsive adjustments for Sponsors */
@media (max-width: 768px) {
    .sponsors {
        padding: 60px 0;
    }

    .sponsor-item {
        flex: 0 0 140px;
        min-width: 140px;
        height: 70px;
        padding: 12px;
    }

    .sponsors-track-right,
    .sponsors-track-left {
        gap: 30px;
        width: calc(170px * 14);
    }

    @keyframes sponsors-scroll-right {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-170px * 7));
        }
    }

    @keyframes sponsors-scroll-left {
        0% {
            transform: translateX(calc(-170px * 7));
        }

        100% {
            transform: translateX(0);
        }
    }

    .sponsor-logo {
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .sponsor-item {
        flex: 0 0 120px;
        min-width: 120px;
        height: 60px;
        padding: 10px;
    }

    .sponsors-track-right,
    .sponsors-track-left {
        gap: 25px;
        width: calc(145px * 14);
    }

    @keyframes sponsors-scroll-right {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-145px * 7));
        }
    }

    @keyframes sponsors-scroll-left {
        0% {
            transform: translateX(calc(-145px * 7));
        }

        100% {
            transform: translateX(0);
        }
    }

    .sponsor-logo {
        max-height: 30px;
    }
}

/*--------------------------------------------------------------
# FAQ / Rondas de Negocios Section - Custom button styles
--------------------------------------------------------------*/

.btn-empresas-modal {
    background: rgba(26, 54, 13, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(26, 54, 13, 0.3);
    color: var(--asamblea-verde);
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.btn-empresas-modal:hover {
    background: rgba(26, 54, 13, 0.2);
    border-color: var(--asamblea-verde);
    color: var(--asamblea-verde-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 54, 13, 0.15);
}

.btn-empresas-modal:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(26, 54, 13, 0.1);
}

/* Modal customization */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* FAQ Image styling */
.faq-image {
    margin-top: 2rem;
    position: relative;
}

.faq-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(26, 54, 13, 0.15);
    transition: all 0.3s ease;
}

.faq-image:hover img {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 54, 13, 0.2);
}

.modal-header {
    background: var(--gradient-verde);
    color: white;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom: none;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: white !important;
}

.modal-body h6 {
    color: var(--asamblea-verde);
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-body h6:first-child {
    margin-top: 0;
}

.modal-body ul,
.modal-body ol {
    padding-left: 1.2rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.alert-info {
    border-color: rgba(26, 54, 13, 0.2);
    background-color: rgba(26, 54, 13, 0.05);
    color: var(--asamblea-verde-dark);
}

.alert-warning {
    border-color: #f4dc00;
    background-color: rgba(244, 220, 0, 0.1);
}

/* Responsive adjustments for modal */
@media (max-width: 768px) {
    .btn-empresas-modal {
        width: 100%;
        margin-top: 1rem;
    }

    .modal-dialog {
        margin: 10px;
    }

    .modal-body {
        padding: 1rem;
    }
}

/*--------------------------------------------------------------
# Location/Visitas Section - Image adjustments for horizontal images
--------------------------------------------------------------*/

.location .nearby-attractions .attraction-card .attraction-image {
    height: 250px;
    /* Increased height for better proportion */
    overflow: hidden;
    background: #f8f9fa;
    /* Light background in case image doesn't fill */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 8px 0 0;
}

.location .nearby-attractions .attraction-card .attraction-image img {
    width: 100%;
    height: auto;
    /* Let height adjust naturally */
    object-fit: contain;
    /* Show entire image without cropping */
    transition: all 0.3s ease;
    max-height: 100%;
    /* Ensure it doesn't exceed container height */
}

/* If image is too small horizontally, this ensures good coverage */
.location .nearby-attractions .attraction-card .attraction-image img:not([style*="height"]) {
    min-height: 200px;
}

/* Hover effect adjustment */
.location .nearby-attractions .attraction-card:hover .attraction-image img {
    transform: scale(1.05);
    /* Smaller scale to avoid cutting */
}

/* Alternative approach for horizontal images */
@media (min-width: 768px) {
    .location .nearby-attractions .attraction-card .attraction-image {
        height: 280px;
        /* More height on larger screens */
    }
}

@media (max-width: 767px) {
    .location .nearby-attractions .attraction-card .attraction-image {
        height: 220px;
        /* Responsive height for mobile */
    }
}

/*--------------------------------------------------------------
# Footer Section - Custom styling with background image support
--------------------------------------------------------------*/

.footer {
    background: var(--asamblea-verde-dark);
    background-image: url('../img/footer-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* No overlay - show image naturally */
/*.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 13, 0.85);
    z-index: 1;
}*/

/* Ensure footer content is above the overlay */
.footer .container {
    position: relative;
    z-index: 2;
}

/* White text for all footer content */
.footer,
.footer h4,
.footer p,
.footer span,
.footer a,
.footer li,
.footer .sitename {
    color: white !important;
}

/* Footer logo styling */
.footer .footer-logo {
    max-height: 160px;
    /* Doubled from 80px */
    width: auto;
    filter: brightness(1.1);
    /* Slightly brighten white logo */
}

/* Footer links hover effects */
.footer a:hover {
    color: #F4DC00 !important;
    /* Yellow hover effect */
    text-decoration: none;
}

/* Social links styling */
.footer .social-links a {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: rgba(244, 220, 0, 0.9);
    /* Yellow background on hover */
    color: var(--asamblea-verde-dark) !important;
    border-color: #F4DC00;
    transform: translateY(-2px);
}