﻿/* Custom CSS for Red Social por México */

:root {
    --primary-dark: #1a1a1a;
    --secondary-dark: #2d2d2d;
    /* Cambiando colores dorados a verde estilo Fundación Azteca */
    --accent-gold: #28a745;
    --accent-gold-hover: #218838;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --text-dark: #333333;
    /* Agregando variables para navbar blanco */
    --navbar-white: #ffffff;
    --navbar-text: #333333;
    --navbar-border: #e5e5e5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Cambiando tipografía principal a una más moderna y limpia */
body {
    font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.title-divider {
    width: 80px;
    height: 4px;
    /* Actualizando gradiente a verde */
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-hover));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.title-divider-green {
    background: linear-gradient(90deg, #009345, #007a3a);
}

.title-divider-blue {
    background: linear-gradient(90deg, #0079bf, #0066a3);
}

.title-divider-red {
    background: linear-gradient(90deg, #ec1653, #d1144a);
}

.title-divider-yellow {
    background: linear-gradient(90deg, #ffc906, #e6b405);
}

.text-gold {
    /* Manteniendo clase pero ahora con color verde */
    color: var(--accent-gold) !important;
}

/* Navigation */
/* Actualizando navegación a fondo blanco estilo Fundación Azteca */
.navbar {
    background-color: var(--navbar-white) !important;
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--navbar-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navbar-text) !important;
}

/* Agregando estilos para el logo en el navbar */
.navbar-logo {
    height: 100px;
    width: auto;
    /*object-fit: contain;*/
}

/* Actualizando links de navegación para navbar blanco */
.navbar-nav .nav-link {
    color: var(--navbar-text) !important;
    font-weight: 500;
    margin: 0 0.8rem;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.navbar-nav .nav-item:last-child .nav-link {
    margin-left: 0 !important;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-gold) !important;
}

/* Corrigiendo alineación del botón Regístrate en móvil para que esté uniforme con otros elementos */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        text-align: left !important;
        margin: 0.5rem 0;
        padding: 0.5rem 1rem !important;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        text-align: left !important;
        margin-left: 0 !important;
        padding-left: 1rem !important;
    }
}

/* Actualizando botón de registro en navbar */
.navbar .btn-gold {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 600;
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    margin: 0 0.8rem;
    display: inline-block;
    text-align: center;
}

    .navbar .btn-gold:hover {
        background-color: var(--accent-gold-hover);
        border-color: var(--accent-gold-hover);
        color: var(--primary-dark);
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    }

/* Mejorando hamburger menu para navbar blanco */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Agregando estilos para video de fondo en hero section */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("/placeholder.svg?height=800&width=1200") center / cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

/* Agregando estilos para títulos más grandes en hero section */
.hero-title-large {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Agregando estilo para subtítulo más grande */
.hero-subtitle-large {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.4;
}

/* Agregando estilos para botones verdes según especificaciones */
.btn-green-filled {
    background-color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .btn-green-filled:hover {
        background-color: var(--accent-gold-hover);
        border-color: var(--accent-gold-hover);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    }

.btn-green-outline {
    background-color: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .btn-green-outline:hover {
        background-color: var(--accent-gold);
        border-color: var(--accent-gold);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    }

.hero-stats .stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    /* Actualizando border a verde */
    border: 1px solid rgba(40, 167, 69, 0.2);
    transition: transform 0.3s ease;
}

    .hero-stats .stat-card:hover {
        transform: translateY(-5px);
    }

.hero-stats h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

.bg-dark-secondary {
    background-color: var(--secondary-dark);
}

/* Agregando estilos para secciones con fondo blanco */
.bg-white-section {
    background-color: #ffffff !important;
    color: var(--text-dark) !important;
}

    .bg-white-section .section-title {
        color: var(--text-dark) !important;
    }

    .bg-white-section .info-card,
    .bg-white-section .pilar-card {
        background: rgba(0, 0, 0, 0.05);
        /* Actualizando border a verde */
        border: 1px solid rgba(40, 167, 69, 0.3);
        color: var(--text-dark);
    }

        .bg-white-section .info-card:hover,
        .bg-white-section .pilar-card:hover {
            transform: translateY(-5px);
            /* Actualizando box-shadow a verde */
            box-shadow: 0 15px 35px rgba(40, 167, 69, 0.3);
        }

    .bg-white-section p,
    .bg-white-section .lead {
        color: var(--text-dark) !important;
    }

    /* Manteniendo botones y links dorados en secciones blancas */
    .bg-white-section .btn-gold,
    .bg-white-section .btn-outline-gold {
        background-color: var(--accent-gold);
        border-color: var(--accent-gold);
        color: var(--primary-dark);
    }

        .bg-white-section .btn-gold:hover,
        .bg-white-section .btn-outline-gold:hover {
            background-color: var(--accent-gold-hover);
            border-color: var(--accent-gold-hover);
            color: var(--primary-dark);
        }

    .bg-white-section .text-gold {
        color: var(--accent-gold) !important;
    }

/* Cards */
.info-card,
.pilar-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    /* Actualizando border a verde */
    border: 1px solid rgba(40, 167, 69, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

    .info-card:hover,
    .pilar-card:hover {
        transform: translateY(-5px);
        /* Actualizando box-shadow a verde */
        box-shadow: 0 15px 35px rgba(40, 167, 69, 0.2);
    }

.info-icon,
.pilar-icon {
    width: 80px;
    height: 80px;
    /* Actualizando gradiente a verde */
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-dark);
}

/* Mexico Map */
.mexico-map {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    /* Actualizando border a verde */
    border: 1px solid rgba(40, 167, 69, 0.2);
}

/* Agregando estilos para sección del mapa con fondo blanco y texto impactante */
.coverage-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coverage-subtitle-green {
    font-size: 1.5rem;
    color: #28a745;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coverage-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 400;
}

.coverage-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 400;
}

.mexico-map-container {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(33, 136, 56, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(40, 167, 69, 0.2);
    transition: all 0.4s ease;
}

    .mexico-map-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(40, 167, 69, 0.2);
        border-color: var(--accent-gold);
    }

.mexico-map-enhanced {
    width: 100%;
    max-width: 900px;
    height: auto;
    filter: drop-shadow(0 8px 25px rgba(40, 167, 69, 0.3));
    transition: all 0.4s ease;
}

    .mexico-map-enhanced:hover {
        transform: scale(1.02);
        filter: drop-shadow(0 12px 35px rgba(40, 167, 69, 0.4));
    }

.map-animated {
    animation: mapEntrance 1s ease-out;
    position: relative;
}

    .map-animated::before {
        content: "";
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #009345, #0079bf, #ec1653, #ffc906);
        border-radius: 20px;
        opacity: 0;
        z-index: -1;
        transition: opacity 0.4s ease;
        animation: borderPulse 3s ease-in-out infinite;
    }

    .map-animated:hover::before {
        opacity: 0.3;
    }

@keyframes mapEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes borderPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.3;
    }
}

.map-animated:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(40, 167, 69, 0.4);
    border-color: var(--accent-gold);
}

    .map-animated:hover .mexico-map-enhanced {
        transform: scale(1.05);
        filter: drop-shadow(0 15px 45px rgba(40, 167, 69, 0.5));
    }

@media (max-width: 992px) {
    .mexico-map-enhanced {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .mexico-map-enhanced {
        max-width: 100%;
    }

    .map-animated {
        padding: 1.5rem;
    }
}

/* Event Cards */
.event-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    /* Aumentando padding y altura mínima para mejor visibilidad de fechas */
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    /* Actualizando border a verde */
    border: 1px solid rgba(40, 167, 69, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 280px;
    position: relative;
}

.event-date {
    position: absolute;
    /* Moviendo las fechas más hacia el centro vertical para mejor legibilidad */
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 1rem 0.8rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    min-width: 80px;
    /* Actualizando box-shadow a verde */
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

    .event-date .day {
        display: block;
        /* Aumentando tamaño de fuente del día */
        font-size: 2rem;
        line-height: 1;
        font-weight: 800;
    }

    .event-date .month {
        display: block;
        /* Aumentando tamaño de fuente del mes */
        font-size: 1rem;
        line-height: 1;
        font-weight: 600;
        margin-top: 2px;
    }

.event-location {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* Video Cards */
.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    /* Actualizando border a verde */
    border: 1px solid rgba(40, 167, 69, 0.2);
    transition: all 0.3s ease;
}

    .video-card:hover {
        transform: translateY(-5px);
        /* Actualizando box-shadow a verde */
        box-shadow: 0 15px 35px rgba(40, 167, 69, 0.2);
    }

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

    .video-thumbnail img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    /* Actualizando background a verde */
    background: rgba(40, 167, 69, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

    .play-button:hover {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
    }

.play-button-red {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ec1653, #d1144a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 22, 83, 0.4);
}

    .play-button-red:hover {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(236, 22, 83, 0.6);
    }

.video-info {
    padding: 1.5rem;
}

/* Carousel Indicators */
.carousel-indicators-custom {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

    .carousel-indicators-custom button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: none;
        /* Actualizando background a verde */
        background-color: rgba(40, 167, 69, 0.3);
        transition: all 0.3s ease;
    }

        .carousel-indicators-custom button.active,
        .carousel-indicators-custom button:hover {
            background-color: var(--accent-gold);
            transform: scale(1.2);
        }

/* Registration Form */
.registration-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    min-height: 100vh;
    padding-top: 100px;
}

.registration-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    /* Actualizando border a verde */
    border: 1px solid rgba(40, 167, 69, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-section {
    /* Actualizando border a verde */
    border-bottom: 1px solid rgba(40, 167, 69, 0.2);
    padding-bottom: 2rem;
}

    .form-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }

.form-section-title {
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    background-color: rgba(255, 255, 255, 0.1);
    /* Actualizando border a verde */
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: var(--text-light);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

    .form-control:focus,
    .form-select:focus {
        background-color: rgba(255, 255, 255, 0.15);
        border-color: var(--accent-gold);
        /* Actualizando box-shadow a verde */
        box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
        color: var(--text-light);
    }

    .form-control::placeholder {
        color: var(--text-muted);
    }

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    /* Actualizando border a verde */
    border: 1px solid rgba(40, 167, 69, 0.3);
}

    .form-check-input:checked {
        background-color: var(--accent-gold);
        border-color: var(--accent-gold);
    }

.form-check-label {
    color: var(--text-light);
}

.invalid-feedback {
    color: #ff6b6b;
}

/* Footer */
/* Cambiando el footer a fondo blanco con texto negro */
.footer {
    background-color: #ffffff !important;
    /* Actualizando border a verde */
    border-top: 1px solid rgba(40, 167, 69, 0.2);
    color: var(--text-dark) !important;
}

    .footer h5,
    .footer h6 {
        color: var(--accent-gold);
    }

    .footer p {
        color: var(--text-dark) !important;
    }

    .footer a {
        color: #666666;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer a:hover {
            color: var(--accent-gold);
        }

    .footer .list-unstyled li {
        color: var(--text-dark);
    }

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    /* Actualizando background a verde */
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

    .social-links a:hover {
        background: var(--accent-gold);
        color: var(--primary-dark);
        transform: translateY(-2px);
    }

/* Manteniendo botones dorados en el footer blanco */
.footer .btn-gold {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
}

    .footer .btn-gold:hover {
        background-color: var(--accent-gold-hover);
        border-color: var(--accent-gold-hover);
        color: var(--primary-dark);
    }

.footer .form-control {
    background-color: rgba(0, 0, 0, 0.05);
    /* Actualizando border a verde */
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: var(--text-dark);
}

    .footer .form-control:focus {
        background-color: rgba(0, 0, 0, 0.1);
        border-color: var(--accent-gold);
        /* Actualizando box-shadow a verde */
        box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
        color: var(--text-dark);
    }

    .footer .form-control::placeholder {
        color: #999999;
    }

/* Manteniendo botones dorados en el footer blanco */
.footer .btn-gold {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
}

    .footer .btn-gold:hover {
        background-color: var(--accent-gold-hover);
        border-color: var(--accent-gold-hover);
        color: var(--primary-dark);
    }

/* Quiénes Somos Section */
.red-social-description {
    font-size: 30px !important;
    line-height: 1.4;
    font-weight: 400;
}

.quienes-somos-image {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.2);
}

    .quienes-somos-image img {
        width: 100%;
        height: 300px;
        object-fit: contain;
        transition: transform 0.8s ease;
        transform: scale(1);
    }

    .quienes-somos-image.zoom-in img {
        transform: scale(1.1);
    }

/* Agregando estilos profesionales para la sección Quiénes Somos mejorada */
.red-social-main-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(40, 167, 69, 0.15);
    border: 2px solid rgba(40, 167, 69, 0.1);
    position: relative;
    overflow: hidden;
}

    .red-social-main-card::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2328a745' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E") repeat;
        animation: float 30s linear infinite;
        z-index: 1;
    }

.red-social-brand-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(40, 167, 69, 0.1);
}

.brand-logo-container {
    margin-bottom: 1rem;
}

.brand-logo {
    max-height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 15px rgba(40, 167, 69, 0.3));
}

.brand-tagline {
    position: relative;
}

.tagline-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

    .tagline-text::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-hover));
        border-radius: 2px;
    }

.red-social-content {
    position: relative;
    z-index: 2;
}

.red-social-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
}

.red-social-description-enhanced {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.red-social-mission {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 0;
    text-align: center;
    font-style: italic;
}

.highlight-text {
    color: var(--accent-gold);
    font-weight: 600;
}

.red-social-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    padding: 1rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--accent-gold);
    color: white;
    transform: scale(1.1);
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.quienes-somos-image-enhanced {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(40, 167, 69, 0.25);
    border: 3px solid rgba(40, 167, 69, 0.2);
}

    .quienes-somos-image-enhanced video {
        width: 100%;
        height: 400px;
        object-fit: contain;
        transition: transform 0.8s ease;
    }

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(40, 167, 69, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.quienes-somos-image-enhanced:hover .video-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.play-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.overlay-content p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Responsive design para brand showcase */
@media (max-width: 768px) {
    .red-social-main-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .red-social-title {
        font-size: 1.8rem;
    }

    .red-social-description-enhanced {
        font-size: 1.1rem;
    }

    .red-social-features {
        justify-content: center;
    }

    .coverage-subtitle-green {
        font-size: 1.2rem;
    }

    .coverage-description {
        font-size: 1rem;
    }

    .coverage-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    /* Responsive móvil para títulos grandes */
    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-subtitle-large {
        font-size: 1.1rem;
    }

    .btn-gold,
    .btn-outline-gold {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Responsive móvil para botones verdes */
    .btn-green-filled,
    .btn-green-outline {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .registration-card {
        padding: 1.5rem 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

    .loading.loaded {
        opacity: 1;
        transform: translateY(0);
    }

/* Agregando estilos para la sección de estadísticas visuales */
.stats-visual-section {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

    .stats-visual-section::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
        animation: float 20s ease-in-out infinite;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.stat-visual-card {
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-visual-card:hover .stat-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-sublabel {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive para estadísticas visuales */
@media (max-width: 768px) {
    .stats-visual-section {
        padding: 3rem 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1.2rem;
    }

    .stat-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-sublabel {
        font-size: 0.9rem;
    }
}

/* Agregando estilos para brand showcase impactante en sección Quiénes Somos */
.brand-showcase {
    position: relative;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(33, 136, 56, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(40, 167, 69, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
}

    .brand-showcase:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(40, 167, 69, 0.3);
        border-color: var(--accent-gold);
    }

.brand-image-container {
    position: relative;
    margin-bottom: 2rem;
}

.brand-image-impactful {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 15px;
    filter: drop-shadow(0 8px 25px rgba(40, 167, 69, 0.4));
    transition: all 0.4s ease;
}

    .brand-image-impactful:hover {
        transform: scale(1.05);
        filter: drop-shadow(0 12px 35px rgba(40, 167, 69, 0.6));
    }

.brand-tagline-overlay {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    min-width: 280px;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.brand-subtitle {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
    margin: 0;
}

.red-social-info-card {
    background: rgba(40, 167, 69, 0.05);
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid rgba(40, 167, 69, 0.2);
    transition: all 0.3s ease;
}

    .red-social-info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(40, 167, 69, 0.2);
    }

.red-social-description-enhanced {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.red-social-mission {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 0;
}

.highlight-text {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Agregando animación de entrada para el brand showcase */
@keyframes brandShowcase {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.brand-showcase {
    animation: brandShowcase 0.8s ease-out;
}

/* Responsive design for brand showcase */
@media (max-width: 768px) {
    .brand-showcase {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .brand-image-impactful {
        max-width: 100%;
        width: 100%;
    }

    .brand-tagline-overlay {
        position: relative;
        bottom: 0;
        transform: none;
        margin-top: 1rem;
        min-width: auto;
        width: 100%;
    }

    .brand-title {
        font-size: 1.3rem;
    }

    .brand-subtitle {
        font-size: 0.9rem;
    }
}

/* Agregando estilos específicos para cada pilar con colores hexadecimales */
/* Pilar Visibilidad - Verde #009345 */
.pilar-icon-visibilidad {
    background: linear-gradient(135deg, #009345, #007a3a) !important;
    color: white !important;
}

.pilar-title-visibilidad {
    color: #009345 !important;
    font-weight: 600;
}

/* Pilar Conectividad - Azul #0079BF */
.pilar-icon-conectividad {
    background: linear-gradient(135deg, #0079bf, #005a8f) !important;
    color: white !important;
}

.pilar-title-conectividad {
    color: #0079bf !important;
    font-weight: 600;
}

/* Pilar Profesionalización - Rojo #EC1653 */
.pilar-icon-profesionalizacion {
    background: linear-gradient(135deg, #ec1653, #c41143) !important;
    color: white !important;
}

.pilar-title-profesionalizacion {
    color: #ec1653 !important;
    font-weight: 600;
}
