/* =========================================
   CASE STUDY: GDP MMA (HIGH IMPACT)
   ========================================= */

:root {
    --sp-cyan: #00E5FF;
    --sp-dark: #050505;
}

body { background: var(--sp-dark); color: white; font-family: 'regular', sans-serif; }

/* 1. CINEMATIC HERO (VIDEO BG) */
.gdp-hero {
    position: relative; height: 90vh; width: 100%;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; text-align: center;
}
.gdp-video-bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0.6; z-index: 0;
}
.gdp-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, #000 90%);
    z-index: 1;
}

.gdp-hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 20px; }

.gdp-badge {
    background: var(--sp-cyan); color: black; padding: 5px 20px;
    font-family: 'medium'; text-transform: uppercase; letter-spacing: 2px;
    font-size: 0.9rem; display: inline-block; margin-bottom: 25px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.gdp-title {
    font-size: clamp(4rem, 8vw, 7rem); line-height: 0.9; margin-bottom: 20px;
    text-transform: uppercase; font-family: 'medium';
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}
.gdp-subtitle {
    font-size: 1.5rem; color: #ccc; margin-bottom: 40px; font-family: 'light';
}

/* 2. THE NUMBERS (GRID DE DATOS) */
.data-section { background: #0b0b0b; padding: 80px 0; border-bottom: 1px solid #222; }
.data-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
    max-width: 1200px; margin: 0 auto; padding: 0 5%;
}
.data-card {
    background: rgba(255,255,255,0.03); border: 1px solid #222;
    padding: 30px; text-align: center; transition: 0.3s;
}
.data-card:hover { border-color: var(--sp-cyan); transform: translateY(-5px); }
.data-num { display: block; font-size: 2.5rem; color: white; font-family: 'medium'; margin-bottom: 5px; }
.data-label { color: var(--sp-cyan); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

/* 3. THE TRANSFORMATION (TEXTO + VISUAL) */
.transform-section { padding: 100px 0; background: #000; }
.transform-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    max-width: 1200px; margin: 0 auto; padding: 0 5%;
}
.tf-title { font-size: 2.5rem; margin-bottom: 20px; text-transform: uppercase; }
.tf-desc { color: #bbb; line-height: 1.7; font-size: 1.1rem; margin-bottom: 20px; }

.visual-showcase {
    position: relative; height: 400px; border: 1px solid #333;
    background: #050505; overflow: hidden;
}
.visual-showcase img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.visual-showcase:hover img { transform: scale(1.05); }
.vs-tag {
    position: absolute; bottom: 20px; left: 20px;
    background: black; color: white; padding: 5px 15px; border-left: 3px solid var(--sp-cyan);
    font-size: 0.8rem; text-transform: uppercase;
}

/* 4. SPONSOR DEMOGRAPHICS (PARA MARCAS) */
.demo-section { padding: 100px 0; background: #080808; border-top: 1px solid #222; }
.demo-title-center { text-align: center; margin-bottom: 60px; }
.demo-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
    max-width: 1000px; margin: 0 auto; padding: 0 20px;
}
.demo-box {
    padding: 30px; border-left: 1px solid #333;
}
.demo-percent { font-size: 3rem; color: white; font-family: 'medium'; display: block; }
.demo-text { color: #888; font-size: 0.9rem; text-transform: uppercase; }
.progress-bar {
    width: 100%; height: 4px; background: #222; margin-top: 15px; position: relative;
}
.progress-fill { height: 100%; background: var(--sp-cyan); }
.marcas-box {
    display:flex; justify-content:center; gap:40px; flex-wrap:wrap; opacity:0.5;
}
.marcas-box img {
    height:100px; filter:grayscale(100%);
    margin: auto 2px;
    background-color: none;
}
.marcas-box:hover {
    opacity: 1;
}
.marcas-box img:hover {
    filter:grayscale(0%);
    transform: scale(1.5);
    transition: 200ms;
}

/* 5. VIDEO EMBED (FULL WIDTH) */
.video-full-sec { padding: 0; background: black; }
.video-container {
    position: relative; padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0; overflow: hidden; width: 100%; max-width: 1100px;
    margin: auto;
}
.video-container iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

/* BOTÓN CTA */
.btn-gdp {
    display: inline-block; background: white; color: black;
    padding: 15px 40px; font-family: 'medium'; text-transform: uppercase;
    text-decoration: none; margin-top: 30px; transition: 0.3s;
}
.btn-gdp:hover { background: var(--sp-cyan); box-shadow: 0 0 30px var(--sp-cyan); }

/* RESPONSIVE */
@media (max-width: 900px) {
    .data-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .transform-grid { grid-template-columns: 1fr; gap: 40px; }
    .demo-grid { grid-template-columns: 1fr; text-align: center; }
    .demo-box { border-left: none; border-bottom: 1px solid #333; }
    .gdp-title { font-size: 3.5rem; }
    .data-card {
    background: rgba(255,255,255,0.03); border: 1px solid #222;
    padding: 0.5rem; text-align: center; transition: 0.3s;
}
}



.resultados-div {
    padding:100px 0; text-align:center;
    width: 100%;
}
.resultados-container {
    padding:60px; display:inline-block;
    width: 100%;
}





















/* --- 6. GALERÍA Y SOCIAL (NUEVO) --- */
.gdp-gallery-sec {
    padding: 80px 0; background: #050505;
}

/* Galería Masonry */
.gdp-gallery-grid {
    column-count: 3; column-gap: 20px;
    padding: 0 5%; margin-bottom: 60px;
}
.gdp-photo {
    width: 100%; display: block; margin-bottom: 20px;
    border-radius: 4px; transition: 0.3s;
    filter: grayscale(80%); border: 1px solid #222;
}
.gdp-photo:hover {
    filter: grayscale(0%); transform: scale(1.02);
    border-color: var(--sp-cyan);
}

/* Caja de Redes Sociales */
.social-connect-box {
    text-align: center; padding: 40px 20px;
    border-top: 1px solid #222; max-width: 800px; margin: 0 auto;
}
.sc-title { font-size: 1.5rem; margin-bottom: 30px; text-transform: uppercase; color: white; }

.gdp-social-grid {
    display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
}

.btn-social-big {
    display: flex; align-items: center; gap: 10px;
    padding: 15px 30px; border-radius: 4px;
    text-decoration: none; font-family: 'medium'; color: white;
    text-transform: uppercase; font-size: 0.9rem;
    transition: 0.3s;
}
.btn-social-big i { font-size: 1.2rem; }

/* Colores de Marca */
.btn-insta { background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); }
.btn-fb { background: #1877F2; }
.btn-yt { background: #FF0000; }

.btn-social-big:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.5); opacity: 0.9; }

@media (max-width: 768px) {
    .gdp-gallery-grid { column-count: 2; }
    .btn-social-big { width: 100%; justify-content: center; }
}





/* --- TARJETA DE ENLACE WEB OFICIAL --- */
 .section-block {
    width: 100%;
    max-width: 60rem;
    margin: auto;
    padding: 2rem;
 }
.official-web-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    height: 90px;
    
    /* Estilo Vidrio Neon */
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.023) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid rgba(0, 229, 255, 0.3); /* Borde Cyan sutil */
    border-left: 5px solid #00E5FF; /* Borde grueso a la izquierda para destacar */
    border-radius: 16px;
    padding: 30px 50px;
    
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

/* Efecto Hover en la tarjeta completa */
.official-web-card:hover {
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.1) 0%, rgba(15, 23, 42, 0.8) 100%);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.1); /* Resplandor */
    transform: translateY(-5px);
}

/* Logo */
.web-card-logo img {
    max-width: 120px; /* Ajusta según el tamaño de tu logo */
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0,229,255,0.5)); /* El logo brilla un poco */
}

/* Contenedor Derecho */
.web-card-action {
    display: flex;
    align-items: center;
    gap: 30px;
}

.web-text h3 {
    margin: 0; font-size: 1.2rem; color: white; font-weight: 700;
}
.web-text p {
    margin: 5px 0 0 0; font-size: 0.9rem; color: #94a3b8;
}

/* --- BOTÓN NEON PULSANTE --- */
.btn-neon-glow {
    text-decoration: none;
    background-color: #00E5FF; /* Cyan GDP */
    color: #000; /* Texto negro para contraste */
    font-weight: 800;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4); /* Glow inicial */
    transition: 0.3s;
    animation: btnPulse 2s infinite; /* Animación de latido */
}

.btn-neon-glow:hover {
    background-color: white;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.8);
    transform: scale(1.05);
}

/* Animación sutil para que el botón "respire" */
@keyframes btnPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 229, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}

/* RESPONSIVE: En móvil se apila todo */
@media (max-width: 768px) {
    .official-web-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        gap: 20px;
        height: auto;
    }
    .web-card-logo img { max-width: 120px; margin-bottom: 10px; }
    .web-card-action { flex-direction: column; gap: 20px; }
    .btn-neon-glow { width: 100%; justify-content: center; }
    
}




/* --- SECCIÓN INTERNACIONAL (LATAM EXPANSION) --- */
.international-sec {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #222;
}

/* Fondo con patrón de puntos (Efecto Mapa) */
.intl-overlay {
    position: absolute; inset: 0;
    background-size: 20px 20px;
    opacity: 0.3;
}

.intl-header {
    text-align: center; max-width: 800px; margin: 0 auto 60px auto;
}
.intl-tag {
    color: var(--sp-cyan); font-family: 'medium'; letter-spacing: 3px;
    font-size: 0.8rem; text-transform: uppercase; display: block; margin-bottom: 15px;
}
.intl-title {
    font-size: 3rem; text-transform: uppercase; margin-bottom: 20px; line-height: 1;
}
.intl-desc {
    color: #999; font-size: 1.1rem; line-height: 1.6;
}

/* Grid de Países */
.countries-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    max-width: 1000px; margin: 0 auto;
}

.country-card {
    background: #000; border: 1px solid #222;
    border-radius: 4px; overflow: hidden;
    transition: 0.3s; position: relative;
}
.country-card:hover {
    transform: translateY(-10px);
    border-color: var(--sp-cyan);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Banderas Abstractas CSS */
.flag-strip { height: 6px; width: 100%; }
.colombia-flag {
    background: linear-gradient(to right, #FCD116 33%, #003893 33%, #003893 66%, #CE1126 66%);
}
.mexico-flag {
    background: linear-gradient(to right, #006847 33%, #FFFFFF 33%, #FFFFFF 66%, #CE1126 66%);
}

.cc-content { padding: 40px; text-align: center; }
.cc-name {
    font-size: 2rem; margin-bottom: 5px; letter-spacing: 2px;
}
.cc-role {
    color: var(--sp-cyan); font-family: 'medium'; font-size: 0.8rem;
    text-transform: uppercase; margin-bottom: 20px; letter-spacing: 1px;
}
.cc-detail {
    color: #777; font-size: 0.95rem; line-height: 1.6;
}

/* Dato Extra al final */
.intl-stat {
    text-align: center; margin-top: 60px;
    padding-top: 40px; border-top: 1px solid #222;
    color: #ccc; font-family: 'medium'; text-transform: uppercase; letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .countries-grid { grid-template-columns: 1fr; gap: 20px; }
    .intl-title { font-size: 2.2rem; }
}















/* --- TRAYECTORIA (TRACK RECORD) --- */
.track-record-sec {
    padding: 100px 0;
    background: #050505;
    border-bottom: 1px solid #222;
}

.tr-header {
    text-align: center; margin-bottom: 60px; max-width: 800px; margin-left: auto; margin-right: auto;
}
.tr-tag {
    color: var(--sp-cyan); font-family: 'medium'; letter-spacing: 2px;
    font-size: 0.8rem; text-transform: uppercase; display: block; margin-bottom: 15px;
}
.tr-title {
    font-size: 3rem; text-transform: uppercase; line-height: 1; margin-bottom: 20px;
}
.tr-desc {
    color: #888; font-size: 1.1rem; line-height: 1.6;
}

/* Grid de Posters */
.editions-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
    max-width: 1000px; margin: 0 auto;
}

.edition-card {
    text-align: center; opacity: 0.7; transition: 0.3s;
}
.edition-card:hover, .active-edition {
    opacity: 1; transform: translateY(-10px);
}

/* Imagen (Flyer Vertical) */
.ec-image {
    position: relative; aspect-ratio: 2/3; /* Formato Poster Vertical */
    border-radius: 4px; overflow: hidden; margin-bottom: 20px;
}
.ec-image img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%); transition: 0.5s;
}
.edition-card:hover .ec-image img, 
.active-edition .ec-image img {
    filter: grayscale(0%);
}

/* Overlay con Año */
.ec-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
    padding-bottom: 20px; opacity: 0; transition: 0.3s;
}
.edition-card:hover .ec-overlay, 
.active-edition .ec-overlay {
    opacity: 1;
}

.ec-year {
    font-size: 2rem; font-family: 'medium'; color: white;
}
.ec-badge {
    background: var(--sp-cyan); color: black; padding: 3px 10px;
    font-size: 0.7rem; font-family: 'bold'; border-radius: 2px; margin-top: 5px;
}

/* Info Texto */
.ec-info h3 {
    font-size: 1.2rem; margin-bottom: 5px; color: white; text-transform: uppercase;
}
.ec-info p {
    font-size: 0.9rem; color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .editions-grid { grid-template-columns: 1fr; max-width: 400px; }
    .tr-title { font-size: 2.2rem; }
}