/* ==========================================
   CSS RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores Institucionales - Paleta Limpia y Profesional */
    --primary-color: #09612d;
    /* Verde institucional principal */
    --primary-dark: #07501f;
    /* Verde oscuro */
    --primary-light: #0a7336;
    /* Verde claro */
    --secondary-color: #d0980e;
    /* Dorado elegante (acento sutil) */
    --secondary-dark: #b8850c;
    /* Dorado oscuro */
    --secondary-light: #e8b13c;
    /* Dorado claro */

    /* Colores Neutros - Fondos y Superficies */
    --white: #ffffff;
    /* Blanco puro */
    --gray-50: #f9fafb;
    /* Gris muy claro - fondos */
    --gray-100: #f3f4f6;
    /* Gris claro - superficies */
    --gray-200: #e5e7eb;
    /* Gris - bordes */
    --gray-300: #d1d5db;
    /* Gris medio */
    --gray-400: #9ca3af;
    /* Gris - texto secundario */
    --gray-500: #6b7280;
    /* Gris - texto terciario */
    --gray-600: #4b5563;
    /* Gris oscuro */
    --gray-700: #374151;
    /* Gris muy oscuro */
    --gray-800: #1f2937;
    /* Casi negro */
    --gray-900: #111827;
    /* Negro profesional */

    /* Colores de Texto */
    --text-primary: #111827;
    /* Texto principal (oscuro) */
    --text-secondary: #4b5563;
    /* Texto secundario */
    --text-tertiary: #6b7280;
    /* Texto terciario/hints */
    --text-on-dark: #ffffff;
    /* Texto sobre fondos oscuros */

    /* Colores de Estado */
    --success: #10b981;
    /* Verde éxito */
    --warning: #f59e0b;
    /* Amarillo advertencia */
    --error: #ef4444;
    /* Rojo error */
    --info: #3b82f6;
    /* Azul información */

    /* Typography - Fuentes Institucionales Modernas */
    --font-heading: 'Poppins', 'Montserrat', sans-serif;
    /* Títulos */
    --font-body: 'Roboto', 'Open Sans', sans-serif;
    /* Cuerpo de texto */
    --font-mono: 'Fira Code', monospace;
    /* Monoespaciada */

    /* Spacing - Más generoso para diseño con "aire" */
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1rem;
    /* 16px */
    --spacing-md: 1.5rem;
    /* 24px */
    --spacing-lg: 3rem;
    /* 48px */
    --spacing-xl: 5rem;
    /* 80px */
    --spacing-2xl: 7rem;
    /* 112px */
    --spacing-3xl: 10rem;
    /* 160px */

    /* Transitions - Suaves y profesionales */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows - Sutiles y elegantes */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Border Radius - Moderno y suave */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Tipografía de encabezados - Fuente para títulos */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Secciones - Espaciado generoso para diseño con "aire" */
section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

section:nth-child(even) {
    background: var(--gray-50);
}

/* Override para secciones específicas */
section.no-spacing {
    padding: 0;
}

section.small-spacing {
    padding: var(--spacing-xl) 0;
}

section.large-spacing {
    padding: var(--spacing-3xl) 0;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    background: rgba(9, 97, 45, 0.08);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-description {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.section-header {
    margin-bottom: var(--spacing-2xl);
}

.section-header.center {
    text-align: center;
}

.section-header.white .section-subtitle {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-header.white .section-title,
.section-header.white .section-description {
    color: var(--white);
}

/* Buttons - Diseño Limpio y Moderno */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(9, 97, 45, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(9, 97, 45, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.0625rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* ==========================================
   HEADER & NAVIGATION - Diseño Limpio e Institucional
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    overflow: visible;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--gray-200);
}

.navbar {
    padding: 0;
    overflow: visible;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    overflow: visible;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-primary);
    transition: var(--transition-base);
    position: relative;
    z-index: 10;
    /* Área de fondo sutil detrás del logo */
    padding: 0 0.5rem;
}

.header.scrolled .logo {
    color: var(--text-primary);
}

.logo-img {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
    position: relative;
    top: 16px;                    /* Sobresale del navbar para efecto visual */
    filter: drop-shadow(0 6px 20px rgba(9, 97, 45, 0.50)) drop-shadow(0 2px 6px rgba(0,0,0,0.20));
}

.header.scrolled .logo-img {
    height: 64px;
    top: 4px;
    filter: drop-shadow(0 3px 12px rgba(9, 97, 45, 0.4));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.logo strong {
    font-size: 1rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex: 1;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ── MOBILE CTA ─────────────────────────────────────── */
/* El HTML usa style="display:none" — este CSS solo estila cuando JS lo muestra */
.mobile-cta-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 82%;
    max-width: 320px;
    padding: 1.25rem 1.75rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(5,28,13,0.98) 35%);
    z-index: 1001;
}

.cta-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, #09612d 0%, #0a7a38 100%);
    color: #fff;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 20px rgba(9, 97, 45, 0.55);
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.cta-mobile-btn:hover {
    background: linear-gradient(135deg, #07501f 0%, #09612d 100%);
    color: #fde08b;
    box-shadow: 0 6px 24px rgba(9, 97, 45, 0.7);
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #2d3748;
    position: relative;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.header.scrolled .nav-link {
    color: var(--text-secondary);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #09612d 0%, #0a7a38 100%);
    color: #fff;
    padding: 0.7rem 1.4rem;
    border: 2px solid transparent;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    box-shadow: 0 3px 12px rgba(9, 97, 45, 0.35);
    white-space: nowrap;
}

.cta-button:hover {
    background: linear-gradient(135deg, #07501f 0%, #09612d 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 97, 45, 0.45);
    border-color: rgba(253, 224, 139, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 2px solid rgba(9, 97, 45, 0.2);
    border-radius: 8px;
    cursor: pointer;
    padding: 0.5rem 0.6rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.hamburger:hover {
    border-color: rgba(9, 97, 45, 0.5);
    background: rgba(9, 97, 45, 0.05);
}

.hamburger span {
    width: 22px;
    height: 2.5px;
    background: #09612d;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Animación X al abrir */
.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.header.scrolled .hamburger span {
    background: #09612d;
}

/* ==========================================
   HERO SECTION - Diseño Optimizado y Estético
   ========================================== */
.hero,
.hero-splide {
    position: relative;
    height: 65vh;
    min-height: 750px;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    margin: 0;
    width: 100vw;
    background: var(--gray-900);
}

.hero-carousel {
    height: 100%;
    width: 100%;
}

.splide__track,
.splide__list {
    height: 100%;
    width: 100%;
}

.splide__slide {
    height: 100%;
    width: 100%;
}

.hero-slide-content {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0 60px 0;
}



.hero-content {
    position: relative;
    z-index: 10;
    max-width: 750px;
    padding: 0;
    text-align: left;
}

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    color: var(--secondary-color);
    background: rgba(208, 152, 14, 0.18);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2rem;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease-in-out;
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    animation: zoomEffect 8s ease-out forwards;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.15);
        opacity: 1;
    }
}



.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 3rem var(--spacing-md) 0;
    animation: fadeInUp 1s ease;
    max-width: 1200px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title .subtitle {
    display: block;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--primary-color);
}

.hero-title .main-title {
    display: block;
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Hero Stats - DESHABILITADO (Stats removidas del hero)
.hero-stats-wrapper {
    position: relative;
    background: var(--white);
    margin-top: -60px;
    z-index: 100;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg) var(--spacing-md);
    border-right: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: var(--gray-50);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-number::after {
    content: '+';
    color: var(--secondary-color);
    margin-left: 0.25rem;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    letter-spacing: 0;
}
*/
'


.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.main-image {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.secondary-image {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    margin-top: 2rem;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-primary);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 0.25rem;
}

.about-content {
    padding-left: 2rem;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.mission-vision {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mv-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.mv-item h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mv-item h3 i {
    color: var(--primary-color);
}

.mv-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.values h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.values-grid span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.values-grid i {
    color: var(--success);
    font-size: 1rem;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-card.featured {
    background: var(--primary-color);
    color: var(--white);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-card.featured .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card p {
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.service-list li::before {
    content: '⚽';
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-choose {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-content .section-subtitle {
    color: var(--accent-color);
}

.why-content .section-title {
    color: var(--white);
}

.features-list {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.75rem;
}

.feature-text h4 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.why-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    }

    70% {
        box-shadow: 0 0 0 30px rgba(230, 57, 70, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
    }
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    font-size: 2rem;
    color: var(--white);
    margin-left: 5px;
}

/* ==========================================
   TOURNAMENTS SECTION
   ========================================== */
.tournaments {
    padding: var(--spacing-xl) 0;
    background: var(--light);
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tournament-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.tournament-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.tournament-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tournament-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.tournament-card:hover .tournament-image img {
    transform: scale(1.1);
}

.tournament-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tournament-content {
    padding: 1.5rem;
}

.tournament-content h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.tournament-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tournament-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tournament-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 500;
}

.tournament-meta i {
    color: var(--primary-color);
}

/* ==========================================
   IMPACT SECTION
   ========================================== */
.impact {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(29, 53, 87, 0.95) 0%, rgba(193, 18, 31, 0.9) 100%),
        url('https://images.unsplash.com/photo-1431324155629-1a6deb1dec8d?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.impact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 53, 87, 0.7);
}

.impact .container {
    position: relative;
    z-index: 2;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.impact-stat {
    text-align: center;
}

.impact-stat i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.impact-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    font-family: var(--font-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.impact-number::after {
    content: '+';
}

.impact-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

.modalities {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.modalities h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.modalities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.modality-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.modality-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.modality-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.modality-item span {
    font-weight: 600;
    font-size: 1.125rem;
}

/* ==========================================
   PARTNERS SECTION
   ========================================== */
.partners {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.partners-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.partner-card {
    background: var(--light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.partner-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.partner-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.partner-card h4 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: var(--dark);
    line-height: 1.4;
}

.sponsors-info {
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.sponsors-info h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.sponsors-info>p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.sponsor-benefits {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.sponsor-benefits h4 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sponsor-benefits ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.sponsor-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--radius-md);
}

.sponsor-benefits i {
    color: var(--success);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ==========================================
   SOCIAL MEDIA SECTION
   ========================================== */
.social-media {
    padding: var(--spacing-xl) 0;
    background: var(--light);
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.social-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.social-stat-item {
    display: flex;
    flex-direction: column;
}

.social-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-primary);
    color: var(--primary-color);
    line-height: 1;
}

.social-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--white);
    transition: var(--transition-base);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.facebook:hover {
    background: #145dbf;
    transform: translateY(-2px);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.instagram:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.content-formats h4 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.content-formats ul {
    display: grid;
    gap: 0.75rem;
}

.content-formats li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
}

.content-formats i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.social-feed {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.feed-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light);
}

.feed-header i {
    font-size: 2rem;
    color: #e1306c;
}

.feed-header span {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.feed-item {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-base);
}

.feed-item:hover {
    transform: scale(1.05);
}

.feed-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.info-content h4 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition-base);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================
   FOOTER ULTRA PRO
   ========================================== */
.footer-ultra {
    position: relative;
    background: linear-gradient(135deg, #09612d 0%, #064920 50%, #09612d 100%);
}

/* Wave superior */
.footer-wave {
    position: absolute;
    top: -99px;
    left: 0;
    right: 0;
    height: 100px;
    overflow: hidden;
    pointer-events: none;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

/* Barra de colores */
.footer-stripe {
    height: 4px;
    background: linear-gradient(90deg,
            #d0980e 0%, #d0980e 25%,
            #09612d 25%, #09612d 50%,
            #d0980e 50%, #d0980e 75%,
            #09612d 75%, #09612d 100%);
    background-size: 200% 100%;

}

@keyframes stripeMove {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Fondo con efectos */
.footer-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.footer-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(208, 152, 14, 0.15);
    top: -100px;
    right: 10%;
}

.footer-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(9, 97, 45, 0.15);
    bottom: 50px;
    left: 5%;
}

/* Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* CTA Bar WhatsApp */
.footer-cta-bar {
    background: linear-gradient(135deg, #09612d 0%, #0a7535 100%);
    padding: 1.25rem 0;
    position: relative;
    z-index: 2;
}

.footer-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-cta-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.footer-cta-text>i {
    font-size: 2rem;
    opacity: 0.8;
}

.footer-cta-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

.footer-cta-text span {
    font-size: 0.875rem;
    opacity: 0.9;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.footer-whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Main Content */
.footer-main {
    padding: 4rem 0 3rem;
    position: relative;
    z-index: 1;
}

.footer-grid-ultra {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1.3fr;
    gap: 3rem;
}

/* Brand Column */
.footer-brand-col {
    padding-right: 1rem;
}

.footer-logo-wrap {
    display: inline-block;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.footer-logo-wrap:hover {
    transform: scale(1.03);
}

.footer-logo-wrap img {
    height: 70px;
    width: auto;
}

.footer-brand-col p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Social Icons */
.footer-social-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d0980e;
}

.footer-social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-btn.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    color: white;
}

.social-btn.twitter:hover {
    background: #000;
    border-color: #fff;
    color: white;
}

.social-btn.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: white;
}

.social-btn.tiktok:hover {
    background: linear-gradient(45deg, #00f2ea, #ff0050);
    border-color: transparent;
    color: white;
}

/* Navigation Columns */
.footer-nav-col h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
}

.footer-nav-col h4 i {
    color: #d0980e;
    font-size: 0.875rem;
}

.footer-nav-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-nav-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
}

.footer-nav-col ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #d0980e;
    transition: width 0.3s ease;
}

.footer-nav-col ul li a:hover {
    color: #d0980e;
    padding-left: 8px;
}

.footer-nav-col ul li a:hover::before {
    width: 100%;
}

/* Contact Column */
.footer-contact-ultra h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
}

.footer-contact-ultra h4 i {
    color: #d0980e;
    font-size: 0.875rem;
}

.contact-card {
    display: flex;
    gap: 0.875rem;
    margin-bottom: 1rem;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(208, 152, 14, 0.2);
    transform: translateX(5px);
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(208, 152, 14, 0.2), rgba(208, 152, 14, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon i {
    color: #d0980e;
    font-size: 0.9375rem;
}

.contact-card-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.contact-card-info strong {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.125rem;
}

.contact-card-info span,
.contact-card-info a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    transition: color 0.3s ease;
    word-break: break-word;
}

.contact-card-info a:hover {
    color: #d0980e;
}

/* Footer Bottom */
.footer-bottom-ultra {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8125rem;
    margin: 0;
}

.footer-copy strong {
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8125rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #d0980e;
}

/* Developer Credits */
.footer-credits {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-credits span {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
}

.dev-link {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.dev-link img {
    height: 22px;
    width: auto;
    filter: brightness(0);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.dev-link:hover img {
    opacity: 1;
    transform: scale(1.08);
}

/* Responsive Footer Ultra */
@media (max-width: 1199px) {
    .footer-grid-ultra {
        grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
        gap: 2rem;
    }
}

@media (max-width: 991px) {
    .footer-wave {
        top: -49px;
        height: 50px;
    }

    .footer-grid-ultra {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }

    .footer-brand-col p {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social-wrap {
        align-items: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-cta-text {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-cta-text>i {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .footer-wave {
        display: none;
    }

    .footer-main {
        padding: 3rem 0 2rem;
    }

    .footer-grid-ultra {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-nav-col h4,
    .footer-contact-ultra h4 {
        justify-content: center;
    }

    .footer-nav-col ul {
        align-items: center;
    }

    .contact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-card:hover {
        transform: translateY(-3px);
    }

    .footer-bottom-grid {
        flex-direction: column;
        text-align: center;
        gap: 0.875rem;
    }

    .footer-legal {
        order: 2;
        gap: 1rem;
    }

    .footer-credits {
        order: 3;
    }
}

@media (max-width: 575px) {
    .footer-container {
        padding: 0 1rem;
    }

    .footer-logo-wrap img {
        height: 55px;
    }

    .social-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9375rem;
    }

    .footer-whatsapp-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    .contact-card-info a {
        font-size: 0.8125rem;
    }
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    z-index: 999;
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ==========================================
   VIDEO MODAL
   ========================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-base);
}

.close-modal:hover {
    color: var(--primary-color);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    :root {
        --spacing-xl: 4rem;
    }

    .about-grid,
    .why-grid,
    .contact-grid,
    .social-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 82%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(160deg, #051c0d 0%, #083822 60%, #051c0d 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 5.5rem 1.75rem 2rem;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 6px 0 40px rgba(0, 0, 0, 0.45);
        z-index: 999;
        border-right: 3px solid #09612d;
    }

    /* Línea dorada al top del menú móvil */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #09612d, #d0980e, #09612d);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
        font-weight: 500;
        width: 100%;
        padding: 0.9rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        letter-spacing: 0.3px;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #fde08b;
        padding-left: 0.5rem;
    }

    .nav-link.active {
        font-weight: 700;
    }

    /* El .nav-cta-group (que contiene el botón) se oculta via su propio bloque */

    .hero {
        min-height: 600px;
        height: auto;
        padding: 8rem 0 4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .secondary-image {
        margin-top: 0;
    }

    .experience-badge {
        right: 1rem;
        bottom: 1rem;
    }

    .services-grid,
    .tournaments-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .social-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .social-buttons {
        flex-direction: column;
    }

    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* ==========================================
   REDISEÑO INDEX - INSPIRADO EN FCF
   NUEVAS SECCIONES Y ESTILOS
   ========================================== */

/* ==========================================
   1. HERO SPLIDE CAROUSEL - COMENTADO (Ahora usa ancho completo sin padding)
   ========================================== */
/*
.hero-splide {
    position: relative;
    background: var(--white);
    padding: 140px 2rem 3rem 2rem;
    min-height: auto;
}

.hero-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-slide-content {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
*/
'


.hero-slide-content .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 0, 34, 0.85) 0%, rgba(9, 97, 45, 0.65) 100%);
    z-index: 1;
}

.hero-slide-content .container {
    position: relative;
    z-index: 2;
}

.hero-slide-content .hero-content {
    max-width: 800px;
    color: var(--white);
    padding: 2rem 0;
}

.hero-subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.hero-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.6s ease 0.6s backwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: var(--primary-color);
    color: var(--dark);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 30px;
    box-shadow: 0 0 10px 0 rgba(208, 152, 14, 0.4);
    transition: all 350ms ease;
    animation: fadeInUp 0.6s ease 0.8s backwards;
}

.hero-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(208, 152, 14, 0.5);
}

.hero-cta i {
    font-size: 1.125rem;
}

/* Splide Controls Customization - FCF Style */
.splide__arrows {
    display: flex;
    gap: 1rem;
}

.splide__arrow {
    background: rgba(208, 152, 14, 0.95);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.splide__arrow:hover {
    background: var(--secondary-color);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(208, 152, 14, 0.4);
}

.splide__arrow svg {
    fill: var(--white);
    width: 18px;
    height: 18px;
}

.splide__pagination {
    bottom: 2.5rem;
    padding: 0;
}

.splide__pagination__page {
    background: rgba(255, 255, 255, 0.4);
    width: 10px;
    height: 10px;
    margin: 0 6px;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.splide__pagination__page.is-active {
    background: var(--secondary-color);
    transform: scale(1.4);
}

.splide__pagination__page.is-active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* ==========================================
   2. QUICK INTRO SECTION (MEJORADA)
   ========================================== */
.quick-intro {
    padding: var(--spacing-xl) 0;
    background: var(--light);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content .section-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.intro-stat-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 0 10px 0 rgba(208, 152, 14, 0.15);
    transition: all 350ms ease;
}

.intro-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(208, 152, 14, 0.25);
}

.intro-stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.intro-stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

/* ==========================================
   3. NOTICIAS DESTACADAS - DISEÑO MODERNO Y LIMPIO
   ========================================== */

.featured-news {
    padding: var(--spacing-xl) 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Header con diseño profesional y pulido */
.featured-news .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.featured-news .section-header::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.featured-news .section-subtitle {
    color: var(--primary-color);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(9, 97, 45, 0.08);
    border-radius: var(--radius-full);
}

.featured-news .section-title {
    color: var(--text-primary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.featured-news .section-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contenedor estándar */
.featured-news .container {
    max-width: 1240px;
    padding: 0 var(--spacing-md);
}

/* Grid moderno con mejor espaciado */
.news-featured-grid {
    position: relative;
}

.news-scroll-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0;
}

/* Tarjetas de noticias - diseño profesional y pulido */
.news-card-scroll {
    display: block;
    text-decoration: none;
    position: relative;
    transition: transform var(--transition-base);
}

.news-card-scroll:hover {
    transform: translateY(-10px);
}

.news-link-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    border: 2px solid var(--gray-100);
}

.news-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 2;
}

.news-link-card:hover::before {
    opacity: 1;
}

.news-link-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--gray-200);
}

/* Imagen de noticia - moderna y proporcionada */
.news-image-main {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}

.news-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-link-card:hover .news-image-main img {
    transform: scale(1.08);
}

.news-image-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.news-link-card:hover .news-image-main::after {
    opacity: 1;
}

/* Badge de fecha - diseño profesional */
.news-date-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    padding: 0.625rem 1.125rem;
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 0.8125rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all var(--transition-base);
}

.news-hero-link:hover .news-date-badge,
.news-link-card:hover .news-date-badge {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Contenido de la noticia - diseño limpio */
.news-content-main {
    padding: 1.125rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 0.5rem;
}

.news-category-badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(9, 97, 45, 0.2);
}

.news-content-main h3 {
    font-family: var(--font-heading);
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    transition: color var(--transition-base);
}

.news-link-card:hover .news-content-main h3 {
    color: var(--primary-color);
}

.news-excerpt {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Indicador de "leer más" - botón elegante */
.news-link-more {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: auto;
    padding: 0.75rem 1.5rem;
    background: rgba(9, 97, 45, 0.05);
    border-radius: var(--radius-md);
    align-self: flex-start;
    transition: all var(--transition-base);
}

.news-link-more::after {
    content: '\2192';
    font-size: 1.25rem;
    transition: transform var(--transition-base);
}

.news-link-card:hover .news-link-more,
.news-hero-link:hover .news-link-more {
    gap: 1rem;
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(4px);
}

.news-link-card:hover .news-link-more::after,
.news-hero-link:hover .news-link-more::after {
    transform: translateX(6px);
}

.news-link-more i {
    display: none;
}

/* Empty State */
.news-empty {
    width: 100%;
    text-align: center;
    padding: 5rem 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--gray-300);
}

.news-empty i {
    font-size: 3.5rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.news-empty h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.news-empty p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Botón secundario outline */
.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-secondary-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(9, 97, 45, 0.25);
}

/* ==========================================
   LAYOUT HERO: NOTICIA PRINCIPAL + LATERALES
   ========================================== */

.news-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

/* Noticia Principal (Grande) */
.news-hero-main {
    position: relative;
}

.news-hero-link {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    text-decoration: none;
    position: relative;
}

.news-hero-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.news-hero-link:hover::before {
    opacity: 1;
}

.news-hero-link:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-hero-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}

.news-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
    z-index: 1;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.news-hero-link:hover .news-hero-image::before {
    opacity: 1;
}

.news-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-hero-link:hover .news-hero-image img {
    transform: scale(1.08);
}

.news-hero-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: var(--white);
    position: relative;
}

.news-hero-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.news-hero-link:hover .news-hero-content::before {
    opacity: 1;
}

.news-hero-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0;
    transition: color var(--transition-base);
    letter-spacing: -0.01em;
}

.news-hero-link:hover .news-hero-content h3 {
    color: var(--primary-color);
}

.news-hero-content .news-excerpt {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
}

/* Noticias Laterales (3 pequeñas) */
.news-hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.news-sidebar-card {
    flex: 1;
    min-height: 0;
}

.news-sidebar-link {
    display: flex;
    gap: 0.75rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    text-decoration: none;
    padding: 0.75rem;
    border: 2px solid var(--gray-100);
    position: relative;
}

.news-sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform var(--transition-base);
}

.news-sidebar-link:hover::before {
    transform: scaleY(1);
}

.news-sidebar-link:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--gray-200);
}

.news-sidebar-image {
    flex-shrink: 0;
    width: 90px;
    height: 100%;
    min-height: 70px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    position: relative;
}

.news-sidebar-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.news-sidebar-link:hover .news-sidebar-image::after {
    opacity: 1;
}

.news-sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-sidebar-link:hover .news-sidebar-image img {
    transform: scale(1.12);
}

.news-sidebar-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.news-category-badge-small {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--white);
    background: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.news-sidebar-content h4 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition-base);
    letter-spacing: -0.01em;
}

.news-sidebar-link:hover .news-sidebar-content h4 {
    color: var(--primary-color);
}

.news-date-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    font-weight: 600;
}

.news-date-small::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--secondary-color);
}

/* ==========================================
   SECCIÓN NOTICIAS ANTERIORES
   ========================================== */

.news-previous-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.news-previous-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-left: 1.25rem;
    letter-spacing: -0.02em;
}

.news-previous-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.news-previous-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* ==========================================
   3B. TORNEOS PRINCIPALES - IDÉNTICO A NOTICIAS (FCF)
   ========================================== */

.featured-tournaments {
    padding: 5rem 0 6rem 0;
    background: var(--dark);
    /* Oscuro #0e0022 para diferenciar */
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Texto vertical "TORNEOS" estilo FCF - MÁS VISIBLE */
.featured-tournaments::before {
    content: 'TORNEOS';
    position: absolute;
    left: -150px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.5rem;
    z-index: 1;
    white-space: nowrap;
    text-transform: uppercase;
}

/* Header OCULTO - diseño minimalista igual que noticias */
.featured-tournaments .section-header {
    display: none;
}

/* Contenedor full-width con padding lateral */
.featured-tournaments .container {
    max-width: 100%;
    padding: 0 120px 0 160px;
    /* Espacio para texto lateral */
}

/* Grid fijo SIN SCROLL - ESTILO FCF */
.tournaments-featured-grid {
    position: relative;
    margin-top: 3rem;
}

.tournaments-scroll-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 1rem 0;
}

/* Tarjetas de torneos GRANDES - DISEÑO IDÉNTICO FCF */
.tournament-card-scroll {
    display: block;
    text-decoration: none;
    position: relative;
}

/* Barras de colores superiores - 2 FRANJAS LIGAF (Dorado + Verde) */
.tournament-card-scroll::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right,
            #d0980e 0%, #d0980e 50%,
            #09612d 50%, #09612d 100%);
    z-index: 10;
    border-radius: 15px 15px 0 0;
}

/* Variaciones de barras para cada tarjeta */
.tournament-card-scroll:nth-child(2)::before {
    background: linear-gradient(to right,
            #09612d 0%, #09612d 50%,
            #d0980e 50%, #d0980e 100%);
}

.tournament-card-scroll:nth-child(3)::before {
    background: linear-gradient(to right,
            #d0980e 0%, #d0980e 50%,
            #09612d 50%, #09612d 100%);
}

.tournament-link-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transition: all 400ms ease;
    height: 100%;
    position: relative;
}

.tournament-link-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

/* Imagen de torneo - EXTRA GRANDE ESTILO FCF */
.tournament-image-main {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.tournament-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tournament-link-card:hover .tournament-image-main img {
    transform: scale(1.1);
}

.tournament-image-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(14, 0, 34, 0.7) 0%, transparent 50%);
}

/* Badge de fecha - ESTILO FCF MÁS GRANDE */
.tournament-date-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: #FFD700;
    /* Amarillo más brillante estilo FCF */
    color: var(--dark);
    padding: 0.625rem 1.25rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.8125rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contenido del torneo - ESTILO FCF */
.tournament-content-main {
    padding: 2rem 2rem 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.tournament-content-main h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Botón circular amarillo con "+" - IDÉNTICO FCF */
.tournament-link-more {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 350ms ease;
}

.tournament-link-more::before {
    content: '+';
    display: block;
    line-height: 1;
}

.tournament-link-card:hover .tournament-link-more {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Ocultar icono y texto original */
.tournament-link-more i {
    display: none;
}

/* Empty State */
.tournaments-empty {
    width: 100%;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 20px;
}

.tournaments-empty i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.tournaments-empty h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.tournaments-empty p {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* ==========================================
   3C. SERVICIOS - IDÉNTICO A NOTICIAS (FONDO AMARILLO)
   ========================================== */

.featured-services {
    padding: 5rem 0 6rem 0;
    background: var(--primary-color);
    /* Amarillo dorado #d0980e */
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Texto vertical "SERVICIOS" estilo FCF - AL LADO DERECHO - MÁS VISIBLE */
.featured-services::before {
    content: 'SERVICIOS';
    position: absolute;
    right: -180px;
    /* Lado derecho */
    left: auto;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    /* Rotación invertida */
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.1);
    /* Oscuro porque el fondo es amarillo */
    letter-spacing: 0.5rem;
    z-index: 1;
    white-space: nowrap;
    text-transform: uppercase;
}

/* Header OCULTO - diseño minimalista igual que noticias */
.featured-services .section-header {
    display: none;
}

/* Contenedor full-width con padding lateral */
.featured-services .container {
    max-width: 100%;
    padding: 0 160px 0 120px;
    /* Espacio invertido para texto a la derecha */
}

/* Grid fijo SIN SCROLL - ESTILO FCF */
.services-featured-grid {
    position: relative;
    margin-top: 3rem;
}

.services-scroll-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 1rem 0;
}

/* Tarjetas de servicios GRANDES - DISEÑO IDÉNTICO FCF */
.service-card-scroll {
    display: block;
    text-decoration: none;
    position: relative;
}

/* Barras de colores superiores - 2 FRANJAS LIGAF (Verde + Dorado) */
.service-card-scroll::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right,
            #09612d 0%, #09612d 50%,
            #0e0022 50%, #0e0022 100%);
    z-index: 10;
    border-radius: 15px 15px 0 0;
}

/* Variaciones de barras para cada tarjeta */
.service-card-scroll:nth-child(2)::before {
    background: linear-gradient(to right,
            #0e0022 0%, #0e0022 50%,
            #09612d 50%, #09612d 100%);
}

.service-card-scroll:nth-child(3)::before {
    background: linear-gradient(to right,
            #09612d 0%, #09612d 50%,
            #0e0022 50%, #0e0022 100%);
}

.service-link-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transition: all 400ms ease;
    height: 100%;
    position: relative;
}

.service-link-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

/* Imagen de servicio - EXTRA GRANDE ESTILO FCF */
.service-image-main {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.service-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-link-card:hover .service-image-main img {
    transform: scale(1.1);
}

.service-image-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(14, 0, 34, 0.7) 0%, transparent 50%);
}

/* Badge de icono - ESTILO FCF */
.service-icon-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: #09612d;
    /* Verde institucional */
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Contenido del servicio - ESTILO FCF */
.service-content-main {
    padding: 2rem 2rem 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-content-main h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Botón circular verde con "+" - ESTILO FCF */
.service-link-more {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: #09612d;
    /* Verde institucional */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 350ms ease;
}

.service-link-more::before {
    content: '+';
    display: block;
    line-height: 1;
}

.service-link-card:hover .service-link-more {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Ocultar icono y texto original */
.service-link-more i {
    display: none;
}

/* ==========================================
   4. CALENDARIO COMPETITIVO - TABS SYSTEM
   ========================================== */
.calendar-section {
    padding: var(--spacing-xl) 0;
    background: var(--light);
}

.calendar-tabs {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 0 10px 0 rgba(208, 152, 14, 0.15);
    margin-top: 3rem;
}

.tab-menu {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid var(--light);
    margin-bottom: 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    position: relative;
    transition: all 350ms ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn i {
    font-size: 1.125rem;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 350ms ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

.calendar-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.calendar-table thead th {
    text-align: left;
    padding: 1rem;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.calendar-table tbody tr {
    background: var(--light);
    transition: all 350ms ease;
}

.calendar-table tbody tr:hover {
    background: rgba(208, 152, 14, 0.1);
    transform: translateX(5px);
}

.calendar-table tbody td {
    padding: 1.25rem 1rem;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.calendar-table tbody td:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    font-weight: 600;
}

.calendar-table tbody td:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.event-teams {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.event-teams i {
    color: var(--text-light);
}

.status-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.proximo {
    background: rgba(9, 97, 45, 0.1);
    color: var(--secondary-color);
}

.status-badge.en-vivo {
    background: rgba(208, 152, 14, 0.1);
    color: var(--primary-color);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.status-badge.finalizado {
    background: rgba(102, 102, 102, 0.1);
    color: var(--text-light);
}

.calendar-empty {
    text-align: center;
    padding: 3rem 2rem;
}

.calendar-empty i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.calendar-empty p {
    color: var(--text-light);
}

/* ==========================================
   4B. CALENDARIO DEPORTIVO - DISEÑO PROFESIONAL
   ========================================== */

.calendar-section-pro {
    padding: 5rem 0 6rem 0;
    background: linear-gradient(135deg, #0e0022 0%, #1a0a2e 50%, #0e0022 100%);
    position: relative;
    overflow: hidden;
}

/* Patrón de fondo decorativo */
.calendar-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(208, 152, 14, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(9, 97, 45, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Header premium */
.calendar-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.calendar-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d0980e 0%, #f4c542 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 10px 40px rgba(208, 152, 14, 0.4);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.calendar-icon-wrapper:hover {
    transform: rotate(0deg) scale(1.05);
}

.calendar-icon-wrapper i {
    font-size: 2rem;
    color: var(--dark);
}

.calendar-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.calendar-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Tabs modernos */
.calendar-tabs-pro {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.tab-buttons-pro {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn-pro {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn-pro:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(208, 152, 14, 0.5);
    color: var(--white);
}

.tab-btn-pro.active {
    background: linear-gradient(135deg, #d0980e 0%, #f4c542 100%);
    border-color: transparent;
    color: var(--dark);
    box-shadow: 0 5px 20px rgba(208, 152, 14, 0.4);
}

.tab-btn-pro .tab-icon {
    font-size: 1.125rem;
}

.tab-btn-pro .tab-count {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.25rem 0.625rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.tab-btn-pro.active .tab-count {
    background: rgba(0, 0, 0, 0.3);
}

.tab-btn-pro .tab-count.live {
    background: #e63946;
    color: white;
    animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Contenido de tabs */
.calendar-content-pro {
    position: relative;
    z-index: 1;
}

.calendar-content-pro .tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.calendar-content-pro .tab-content.active {
    display: block;
    opacity: 1;
}

/* Grid de eventos */
.events-grid-pro {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Tarjeta de evento profesional */
.event-card-pro {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    transition: all 0.4s ease;
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: var(--delay, 0s);
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-card-pro:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(208, 152, 14, 0.3);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Bloque de fecha */
.event-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 85px;
    background: linear-gradient(135deg, #d0980e 0%, #f4c542 100%);
    border-radius: 12px;
    color: var(--dark);
    text-align: center;
    box-shadow: 0 5px 15px rgba(208, 152, 14, 0.3);
}

.event-date-block .event-day {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.event-date-block .event-month {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-date-block .event-year {
    font-size: 0.625rem;
    opacity: 0.7;
}

/* Info del evento */
.event-info {
    flex: 1;
    min-width: 0;
}

.event-category {
    display: inline-block;
    background: rgba(9, 97, 45, 0.2);
    color: #4ade80;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.event-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.375rem;
    line-height: 1.3;
}

.event-meta {
    display: flex;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
}

.event-meta i {
    margin-right: 0.375rem;
    color: rgba(208, 152, 14, 0.7);
}

/* Estado del evento */
.event-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.event-status.upcoming {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.event-status.live {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.event-status.finished {
    background: rgba(156, 163, 175, 0.15);
    color: #9ca3af;
}

/* Pulse para EN VIVO */
.live-pulse {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: live-pulse-anim 1.5s infinite;
}

@keyframes live-pulse-anim {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
}

/* Enlace del evento */
.event-link-pro {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.event-card-pro:hover .event-link-pro {
    background: linear-gradient(135deg, #d0980e 0%, #f4c542 100%);
    border-color: transparent;
    color: var(--dark);
    transform: scale(1.1);
}

/* Tarjeta EN VIVO especial */
.event-card-pro.live {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}

.event-card-pro.live .event-date-block {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    color: white;
}

/* Empty state profesional */
.calendar-empty-pro {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.calendar-empty-pro .empty-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.calendar-empty-pro .empty-icon i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
}

.calendar-empty-pro h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.calendar-empty-pro p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9375rem;
}

/* CTA del calendario */
.calendar-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.btn-calendar-pro {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid rgba(208, 152, 14, 0.5);
    border-radius: 50px;
    color: #d0980e;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-calendar-pro:hover {
    background: linear-gradient(135deg, #d0980e 0%, #f4c542 100%);
    border-color: transparent;
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(208, 152, 14, 0.4);
    transform: translateY(-3px);
}

.btn-calendar-pro i {
    transition: transform 0.3s ease;
}

.btn-calendar-pro:hover i {
    transform: translateX(5px);
}

/* Responsive para calendario profesional */
@media (max-width: 991px) {
    .event-card-pro {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 1rem;
    }

    .event-status {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .event-link-pro {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .event-card-pro {
        position: relative;
        padding-right: 4rem;
    }
}

@media (max-width: 767px) {
    .calendar-header h2 {
        font-size: 1.75rem;
    }

    .tab-buttons-pro {
        gap: 0.5rem;
    }

    .tab-btn-pro {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
    }

    .tab-btn-pro .tab-text {
        display: none;
    }

    .event-card-pro {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
        padding-right: 1.5rem;
    }

    .event-date-block {
        width: 100%;
        height: auto;
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.75rem;
        justify-content: center;
    }

    .event-date-block .event-day {
        font-size: 1.25rem;
    }

    .event-status {
        justify-self: center;
    }

    .event-link-pro {
        position: static;
        transform: none;
        margin: 0 auto;
    }

    .event-meta {
        justify-content: center;
    }
}

/* ==========================================
   5. TORNEOS HIGHLIGHT (MEJORADO)
   ========================================== */
.tournaments-highlight {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.tournaments-highlight .tournament-card {
    border-radius: 20px;
    box-shadow: 0 0 10px 0 rgba(208, 152, 14, 0.15);
}

.tournaments-highlight .tournament-card:hover {
    box-shadow: 0 20px 40px rgba(208, 152, 14, 0.25);
}

/* Empty state message */
.no-data-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 0 10px 0 rgba(208, 152, 14, 0.15);
}

.no-data-message i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 1.5rem;
    display: block;
}

.no-data-message h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.no-data-message p {
    color: var(--text-light);
    font-size: 1rem;
}

/* ==========================================
   6. SELECCIONES - 4 BLOQUES FCF STYLE
   ========================================== */
.selections-section {
    padding: var(--spacing-xl) 0;
    background: var(--light);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.selections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.selection-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    transition: all 350ms ease;
    display: block;
}

.selection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.selection-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.selection-card:hover .selection-bg {
    transform: scale(1.1);
}

.selection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(14, 0, 34, 0.9) 100%);
    transition: background 350ms ease;
}

.selection-card:hover .selection-overlay {
    background: linear-gradient(to bottom, rgba(9, 97, 45, 0.3) 0%, rgba(9, 97, 45, 0.95) 100%);
}

.selection-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: var(--white);
    z-index: 2;
    text-align: center;
}

.selection-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.selection-content h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.selection-content p {
    font-size: 0.9375rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* ==========================================
   6B. SELECCIONES - BENTO GRID COMPACTO
   ========================================== */

.selections-bento {
    position: relative;
    background: #09612d;
    padding: 0;
    overflow: hidden;
    width: 100%;
}

/* Barra de colores superior (igual que noticias) */
.bento-color-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right,
            #d0980e 0%, #d0980e 50%,
            #09612d 50%, #09612d 100%);
    z-index: 10;
}

/* Título vertical lateral */
.bento-vertical-title {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    letter-spacing: 15px;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

/* Container del bento */
.bento-container {
    max-width: 100%;
    padding: 3rem 120px 3rem 160px;
    position: relative;
    z-index: 2;
}

/* Header compacto */
.bento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.bento-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d0980e;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bento-subtitle i {
    font-size: 1rem;
}

.bento-ver-mas {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100px;
    height: 50px;
    background: #d0980e;
    color: #0e0022;
    font-weight: 800;
    font-size: 0.75rem;
    text-decoration: none;
    border-radius: 10%;
    transition: all 350ms ease;
    overflow: hidden;
    white-space: nowrap;
}

.bento-ver-mas:hover {
    width: 160px;
    border-radius: 30px;
    background: #fff;
}

.bento-ver-mas span {
    display: none;
}

.bento-ver-mas:hover span {
    display: inline;
}

/* Grid Bento */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 12px;
}

/* Cards base */
.bento-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.bento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-card:hover img {
    transform: scale(1.1);
}

/* Overlays */
.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(9, 97, 45, 0.95) 100%);
    transition: all 0.4s ease;
}

.bento-overlay-pink {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(236, 72, 153, 0.9) 100%);
}

.bento-overlay-blue {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(59, 130, 246, 0.9) 100%);
}

.bento-overlay-orange {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 20%,
            rgba(249, 115, 22, 0.9) 100%);
}

.bento-card:hover .bento-overlay {
    background: linear-gradient(180deg,
            rgba(208, 152, 14, 0.3) 0%,
            rgba(14, 0, 34, 0.95) 100%);
}

/* Contenido de cards */
.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    color: white;
    z-index: 2;
}

.bento-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: #d0980e;
    color: #0e0022;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.bento-badge.badge-pink {
    background: #ec4899;
    color: white;
}

.bento-badge.badge-blue {
    background: #3b82f6;
    color: white;
}

.bento-badge.badge-orange {
    background: #f97316;
    color: white;
}

.bento-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.bento-stats-mini {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    opacity: 0.9;
}

.bento-stats-mini strong {
    color: #d0980e;
    font-weight: 800;
}

.bento-arrow {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    background: #d0980e;
    color: #0e0022;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.bento-card:hover .bento-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Card Grande (Masculina) - ocupa 1 columna y 2 filas */
.bento-large {
    grid-column: 1;
    grid-row: 1 / 3;
}

.bento-large .bento-content h3 {
    font-size: 1.5rem;
}

/* Cards Medianas */
.bento-medium {
    grid-column: span 1;
    grid-row: span 1;
}

/* Card Ancha (Futsal) - ocupa 2 columnas */
.bento-wide {
    grid-column: 2 / 4;
    grid-row: 2;
}

.bento-content-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.bento-content-horizontal .bento-left {
    flex: 1;
}

.bento-content-horizontal .bento-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bento-content-horizontal .bento-arrow {
    position: relative;
    bottom: auto;
    right: auto;
    opacity: 1;
    transform: none;
}

/* Responsive Bento */
@media (max-width: 1199px) {
    .bento-container {
        padding: 3rem 80px 3rem 120px;
    }

    .bento-vertical-title {
        font-size: 5rem;
        left: 25px;
    }
}

@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 180px 180px;
    }

    .bento-large {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .bento-medium:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .bento-medium:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .bento-wide {
        grid-column: 1 / 3;
        grid-row: 3;
    }

    .bento-container {
        padding: 2.5rem 60px 2.5rem 80px;
    }

    .bento-vertical-title {
        font-size: 4rem;
        left: 15px;
    }
}

@media (max-width: 767px) {
    .bento-vertical-title {
        display: none;
    }

    .bento-container {
        padding: 2rem 1rem;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 150px 150px 150px;
        gap: 8px;
    }

    .bento-large {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .bento-medium:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .bento-medium:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .bento-wide {
        grid-column: 1 / 3;
        grid-row: 3;
    }

    .bento-content {
        padding: 1rem;
    }

    .bento-content h3 {
        font-size: 1rem;
    }

    .bento-large .bento-content h3 {
        font-size: 1.25rem;
    }

    .bento-stats-mini {
        font-size: 0.6875rem;
        gap: 0.75rem;
    }

    .bento-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 160px);
    }

    .bento-large,
    .bento-medium,
    .bento-wide {
        grid-column: 1;
        grid-row: auto;
    }

    .bento-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .bento-content-horizontal {
        flex-direction: column;
        align-items: flex-start;
    }

    .bento-content-horizontal .bento-right {
        margin-top: 0.5rem;
    }

    .bento-content-horizontal .bento-arrow {
        position: absolute;
        bottom: 1rem;
        right: 1rem;
    }
}

/* Estado vacío para Bento Grid */
.bento-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: white;
}

.bento-empty-state .empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-empty-state .empty-icon i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.bento-empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.bento-empty-state p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
}

/* ==========================================
   7. SERVICIOS (MEJORADO FCF)
   ========================================== */
.services-preview,
.services-highlight {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.services-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(208, 152, 14, 0.15);
    transition: all 350ms ease;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(208, 152, 14, 0.25);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-modern:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(14, 0, 34, 0.3) 100%);
}

.service-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 350ms ease;
    text-decoration: none;
}

.service-btn i {
    transition: transform 350ms ease;
}

.service-btn:hover {
    gap: 0.75rem;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Services */
@media (max-width: 1199px) {
    .services-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-grid-four {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   8. MULTIMEDIA PRO - VIDEOS Y REDES SOCIALES
   ========================================== */
.multimedia-pro {
    position: relative;
    background: #f5f5f5;
    padding: 0;
    overflow: hidden;
    width: 100%;
}

/* Barra de colores superior */
.media-color-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right,
            #d0980e 0%, #d0980e 50%,
            #09612d 50%, #09612d 100%);
    z-index: 10;
}

/* Título vertical */
.media-vertical-title {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    text-transform: uppercase;
    letter-spacing: 15px;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

/* Patrón de fondo animado */
.media-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.pattern-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(208, 152, 14, 0.1), transparent);
    animation: patternMove 8s ease-in-out infinite;
}

.pattern-line:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.pattern-line:nth-child(2) {
    left: 50%;
    animation-delay: 2s;
}

.pattern-line:nth-child(3) {
    left: 80%;
    animation-delay: 4s;
}

@keyframes patternMove {

    0%,
    100% {
        opacity: 0;
        transform: translateY(-100%);
    }

    50% {
        opacity: 1;
        transform: translateY(100%);
    }
}

/* Container */
.media-pro-container {
    max-width: 100%;
    padding: 4rem 120px 4rem 160px;
    position: relative;
    z-index: 2;
}

/* Header con estadísticas */
.media-pro-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.media-title-area {
    flex: 1;
}

.media-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(208, 152, 14, 0.2);
    border: 1px solid rgba(208, 152, 14, 0.3);
    color: #d0980e;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(208, 152, 14, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(208, 152, 14, 0.5);
    }
}

.media-pro-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0e0022;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
}

.media-title-area p {
    font-size: 0.9375rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    max-width: 500px;
    line-height: 1.6;
}

/* Stats row */
.media-stats-row {
    display: flex;
    gap: 1rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(208, 152, 14, 0.15);
    border-color: rgba(208, 152, 14, 0.3);
    transform: translateY(-3px);
}

.stat-box i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.stat-box .fa-youtube {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.15);
}

.stat-box .fa-instagram {
    color: #E1306C;
    background: rgba(225, 48, 108, 0.15);
}

.stat-box .fa-facebook {
    color: #1877F2;
    background: rgba(24, 119, 242, 0.15);
}

.stat-box .fa-tiktok {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Stat boxes con colores específicos */
.stat-facebook:hover {
    background: rgba(24, 119, 242, 0.1);
    border-color: #1877F2;
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.15);
}

.stat-youtube:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: #FF0000;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.15);
}

.stat-instagram:hover {
    background: rgba(225, 48, 108, 0.1);
    border-color: #E1306C;
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.15);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0e0022;
    line-height: 1;
}

.stat-box .stat-label {
    font-size: 0.6875rem;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Grid Principal */
.media-pro-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
}

/* Video Card */
.video-pro-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.video-pro-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.video-pro-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.video-pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 0, 0.1);
    color: #FF0000;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.video-pro-badge i {
    color: #FF0000;
    font-size: 1.25rem;
}

.video-channel-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(208, 152, 14, 0.1);
    color: #d0980e;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.video-channel-link:hover {
    background: #d0980e;
    color: white;
    border-color: #d0980e;
}

.video-pro-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-pro-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-pro-info h4 {
    color: rgb(0, 0, 0);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.video-meta {
    display: flex;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

/* Thumbnails */
.video-thumbs-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.thumb-mini {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/10;
    display: block;
}

.thumb-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.thumb-mini:hover img {
    transform: scale(1.1);
}

.thumb-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.thumb-mini:hover .thumb-play {
    opacity: 1;
}

.thumb-duration {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
}

/* Social Area */
.social-pro-area {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Social Card */
.social-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.social-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.social-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.social-icon-badge.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-icon-badge.facebook {
    background: #1877F2;
    color: white;
}

.social-info {
    flex: 1;
}

.social-handle {
    display: block;
    color: rgb(0, 0, 0);
    font-weight: 700;
    font-size: 0.9375rem;
}

.social-followers {
    display: block;
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.75rem;
}

.btn-follow {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-follow.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.btn-follow.facebook {
    background: #1877F2;
    color: white;
}

.btn-follow:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
}

.btn-follow.facebook:hover {
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}

/* Instagram Grid Pro */
.insta-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.insta-item-pro {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

.insta-item-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insta-item-pro:hover img {
    transform: scale(1.15);
}

.insta-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-item-pro:hover .insta-hover {
    opacity: 1;
}

.insta-hover span {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.insta-hover .fa-heart {
    color: #ed4956;
}

/* Social Card Facebook */
.social-card.facebook-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.social-card.facebook-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

/* Facebook Feed Wrapper */
.facebook-feed-wrapper {
    width: 100%;
    background: #f0f2f5;
    border-radius: 12px;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facebook-feed-wrapper .fb-page {
    width: 100% !important;
}

.facebook-feed-wrapper iframe {
    width: 100% !important;
    border-radius: 12px;
}

/* Mini Social Cards */
.social-mini-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.mini-social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 0.5rem;
    min-height: 100px;
}

.mini-social-card i {
    font-size: 1.5rem;
}

.mini-name {
    font-size: 0.75rem;
    font-weight: 700;
}

.mini-action {
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
}

.mini-social-card:hover .mini-action {
    opacity: 1;
    transform: translateY(0);
}

.mini-social-card.facebook {
    background: rgba(24, 119, 242, 0.15);
    border: 1px solid rgba(24, 119, 242, 0.3);
    color: #1877F2;
}

.mini-social-card.facebook:hover {
    background: #1877F2;
    color: white;
}

.mini-social-card.facebook .mini-action {
    background: rgba(255, 255, 255, 0.2);
}

.mini-social-card.tiktok {
    background: rgba(88, 3, 3, 0.742);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.mini-social-card.tiktok:hover {
    background: linear-gradient(45deg, #00f2ea, #ff0050);
}

.mini-social-card.tiktok .mini-action {
    background: rgba(0, 0, 0, 0.3);
}

.mini-social-card.twitter {
    background: rgba(13, 0, 0, 0.861);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.mini-social-card.twitter:hover {
    background: #000;
    border-color: #fff;
}

.mini-social-card.twitter .mini-action {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Multimedia Pro */
@media (max-width: 1199px) {
    .media-pro-container {
        padding: 3rem 80px 3rem 120px;
    }

    .media-vertical-title {
        font-size: 5rem;
        left: 25px;
    }

    .media-stats-row {
        flex-wrap: wrap;
    }

    .stat-box {
        flex: 1 1 auto;
    }
}

@media (max-width: 991px) {
    .media-pro-grid {
        grid-template-columns: 1fr;
    }

    .media-pro-container {
        padding: 2.5rem 60px 2.5rem 80px;
    }

    .media-vertical-title {
        font-size: 4rem;
        left: 15px;
    }

    .media-pro-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .media-stats-row {
        width: 100%;
        justify-content: space-between;
    }

    .stat-box {
        padding: 0.5rem 0.75rem;
    }

    .stat-num {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .media-vertical-title {
        display: none;
    }

    .media-pro-container {
        padding: 2rem 1rem;
    }

    .media-pro-header h2 {
        font-size: 1.75rem;
    }

    .media-stats-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-box {
        justify-content: center;
    }

    .social-mini-cards {
        grid-template-columns: 1fr;
    }

    .mini-social-card {
        flex-direction: row;
        justify-content: flex-start;
        padding: 1rem 1.25rem;
        min-height: auto;
    }

    .mini-action {
        margin-left: auto;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 575px) {
    .media-badge {
        font-size: 0.6875rem;
        padding: 0.375rem 0.75rem;
    }

    .media-pro-header h2 {
        font-size: 1.5rem;
    }

    .video-thumbs-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .facebook-feed-wrapper {
        min-height: 500px;
    }

    .insta-grid-pro {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }

    .social-card {
        padding: 1rem;
    }

    .btn-follow {
        padding: 0.375rem 0.75rem;
        font-size: 0.6875rem;
    }
}

/* ==========================================
   9. TIENDA PRO - REDISEÑO PROFESIONAL
   ========================================== */
.shop-pro {
    position: relative;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f0f0f0 100%);
    padding: 0;
    overflow: hidden;
    width: 100%;
}

/* Barra de colores */
.shop-color-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right,
            #d0980e 0%, #d0980e 50%,
            #09612d 50%, #09612d 100%);
    z-index: 10;
}

/* Título vertical */
.shop-vertical-title {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(208, 152, 14, 0.06);
    text-transform: uppercase;
    letter-spacing: 15px;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

/* Fondo decorativo */
.shop-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shop-circle {
    position: absolute;
    border-radius: 50%;
}

.shop-circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(9, 97, 45, 0.05) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.shop-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(208, 152, 14, 0.05) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
}

.shop-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(rgba(208, 152, 14, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Container */
.shop-pro-container {
    max-width: 100%;
    padding: 4rem 120px 4rem 160px;
    position: relative;
    z-index: 2;
}

/* Header */
.shop-pro-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.shop-title-area {
    flex: 1;
}

.shop-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #09612d 0%, #0a7535 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(9, 97, 45, 0.3);
}

.shop-pro-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0e0022;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.shop-pro-header p {
    color: #6b7280;
    font-size: 1.125rem;
    margin: 0;
}

.shop-ver-todo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #097233;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.shop-ver-todo:hover {
    background: #d0980e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(208, 152, 14, 0.3);
}

.shop-ver-todo i {
    transition: transform 0.3s ease;
}

.shop-ver-todo:hover i {
    transform: translateX(5px);
}

/* Categorías */
.shop-categories {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.shop-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.shop-cat-pill:hover {
    border-color: #d0980e;
    color: #d0980e;
}

.shop-cat-pill.active {
    background: #d0980e;
    border-color: #d0980e;
    color: white;
}

.shop-cat-pill i {
    font-size: 1rem;
}

/* Grid de productos */
.shop-pro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Product Card */
.product-pro-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-pro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(208, 152, 14, 0.2);
}

.product-pro-card.product-featured {
    /* Todos los productos tienen el mismo tamaño */
}

/* Badges */
.product-pro-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-nuevo {
    background: #09612d;
    color: white;
}

.badge-descuento {
    background: #ef4444;
    color: white;
}

.badge-popular {
    background: #d0980e;
    color: #0e0022;
    padding: 0.375rem 0.5rem;
}

/* Wishlist */
.btn-wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #9ca3af;
}

.btn-wishlist:hover {
    background: #ef4444;
    color: white;
    transform: scale(1.1);
}

/* Product Link */
.product-pro-link {
    position: relative;
    display: block;
    height: 400px;
    text-decoration: none;
    color: inherit;
}

/* Product Image */
.product-pro-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: #f3f4f6;
}

.product-featured .product-pro-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.product-pro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-pro-card:hover .product-pro-image img {
    transform: scale(1.1);
}

.product-pro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 0, 34, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-pro-card:hover .product-pro-overlay {
    opacity: 1;
}

.btn-quick-view {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #0e0022;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-pro-card:hover .btn-quick-view {
    transform: translateY(0);
}

/* Product Info */
.product-pro-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(14, 0, 34, 0.95), transparent);
    padding: 2rem 1.25rem 1.25rem;
}

.product-featured .product-pro-info {
    padding: 2rem 1.5rem 1.5rem;
}

.product-pro-cat {
    display: inline-block;
    color: #d0980e;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-featured .product-pro-cat {
    color: #d0980e;
}

.product-pro-name {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-featured .product-pro-name {
    color: white;
    font-size: 1.25rem;
}

/* Rating */
.product-pro-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.stars-pro {
    display: flex;
    gap: 2px;
}

.stars-pro i {
    font-size: 0.75rem;
    color: #d1d5db;
}

.stars-pro i.active {
    color: #fbbf24;
}

.rating-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.product-featured .rating-text {
    color: rgba(255, 255, 255, 0.7);
}

/* Product Bottom */
.product-pro-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.product-featured .product-pro-bottom {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.product-pro-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 800;
    color: #d0980e;
}

.price-original {
    font-size: 0.9375rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.product-featured .price-current {
    color: #d0980e;
}

.btn-add-cart {
    width: 44px;
    height: 44px;
    background: #0e0022;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.product-pro-card:hover .btn-add-cart {
    background: #d0980e;
    color: #0e0022;
}

/* Empty State */
.shop-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.empty-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(208, 152, 14, 0.1), rgba(9, 97, 45, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.empty-icon i {
    font-size: 3rem;
    color: #d0980e;
}

.shop-empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0e0022;
    margin: 0 0 0.5rem;
}

.shop-empty-state p {
    color: #6b7280;
    margin: 0 0 1.5rem;
}

.btn-explore-shop {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #09612d;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-explore-shop:hover {
    background: #d0980e;
    transform: translateY(-2px);
}

/* Promo Banner */
.shop-promo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #09612d 0%, #008536 100%);
    border-radius: 16px;
    flex-wrap: wrap;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.promo-icon {
    width: 50px;
    height: 50px;
    background: rgba(208, 152, 14, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-icon i {
    font-size: 1.25rem;
    color: #d0980e;
}

.promo-text {
    display: flex;
    flex-direction: column;
}

.promo-text strong {
    color: white;
    font-size: 0.9375rem;
    font-weight: 700;
}

.promo-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #d0980e;
    color: #0e0022;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: auto;
}

.promo-btn:hover {
    background: white;
    transform: translateY(-2px);
}

/* Responsive Shop Pro */
@media (max-width: 1199px) {
    .shop-pro-container {
        padding: 3rem 80px 3rem 120px;
    }

    .shop-vertical-title {
        font-size: 5rem;
        left: 25px;
    }

    .shop-pro-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-pro-card.product-featured {
        grid-row: span 1;
    }

    .product-featured .product-pro-image {
        height: 240px;
        min-height: auto;
    }

    .product-featured .product-pro-info {
        position: relative;
        background: none;
        padding: 1.25rem;
    }

    .product-featured .product-pro-name {
        color: #0e0022;
        font-size: 1.125rem;
    }

    .product-featured .rating-text {
        color: #6b7280;
    }

    .product-featured .product-pro-bottom {
        border-top-color: #f3f4f6;
    }
}

@media (max-width: 991px) {
    .shop-pro-container {
        padding: 2.5rem 60px 2.5rem 80px;
    }

    .shop-vertical-title {
        font-size: 4rem;
        left: 15px;
    }

    .shop-pro-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-pro-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-promo-banner {
        flex-direction: column;
        text-align: center;
    }

    .promo-content {
        width: 100%;
        justify-content: center;
    }

    .promo-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .shop-vertical-title {
        display: none;
    }

    .shop-pro-container {
        padding: 2rem 1rem;
    }

    .shop-pro-header h2 {
        font-size: 1.75rem;
    }

    .shop-categories {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .shop-cat-pill {
        flex-shrink: 0;
    }

    .shop-pro-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-pro-image {
        height: 180px;
    }

    .product-pro-info {
        padding: 1rem;
    }

    .product-pro-name {
        font-size: 1rem;
    }

    .price-current {
        font-size: 1.25rem;
    }

    .btn-add-cart {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 575px) {
    .shop-pro-grid {
        grid-template-columns: 1fr;
    }

    .product-pro-image {
        height: 220px;
    }

    .shop-ver-todo {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   10. PATROCINADORES PRO
   ========================================== */
.sponsors-pro {
    position: relative;
    background: #ffffff;
    padding: 0;
    overflow: hidden;
    width: 100%;
}

/* Barra de colores */
.sponsors-color-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right,
            #d0980e 0%, #d0980e 50%,
            #09612d 50%, #09612d 100%);
    z-index: 10;
}

/* Título vertical */
.sponsors-vertical-title {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    text-transform: uppercase;
    letter-spacing: 15px;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

/* Fondo decorativo */
.sponsors-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.sponsors-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.sponsors-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(208, 152, 14, 0.1);
    top: -100px;
    right: 10%;
}

.sponsors-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(9, 97, 45, 0.1);
    bottom: -50px;
    left: 20%;
}

/* Container */
.sponsors-pro-container {
    max-width: 100%;
    padding: 4rem 120px 4rem 160px;
    position: relative;
    z-index: 2;
}

/* Header */
.sponsors-pro-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.sponsors-title-area {
    flex: 1;
}

.sponsors-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(208, 152, 14, 0.15);
    border: 1px solid rgba(208, 152, 14, 0.3);
    color: #d0980e;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.sponsors-pro-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0e0022;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.sponsors-pro-header p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 1.125rem;
    margin: 0;
}

.sponsors-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.2);
    color: #0e0022;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sponsors-contact-btn:hover {
    background: #d0980e;
    border-color: #d0980e;
    color: #ffffff;
}

/* Tiers */
.sponsors-tier {
    margin-bottom: 2.5rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
}

.tier-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tier-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d0980e, #f4c542);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #0e0022;
}

.tier-icon.silver {
    background: linear-gradient(135deg, #9ca3af, #d1d5db);
}

.tier-icon.bronze {
    background: linear-gradient(135deg, #b45309, #d97706);
    color: white;
}

.tier-info {
    flex: 1;
}

.tier-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0e0022;
    margin: 0 0 0.25rem;
}

.tier-info span {
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 0.5);
}

.tier-badge {
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-badge.gold {
    background: linear-gradient(135deg, #d0980e, #f4c542);
    color: #0e0022;
}

.tier-badge.silver {
    background: linear-gradient(135deg, #9ca3af, #d1d5db);
    color: #374151;
}

.tier-badge.bronze {
    background: linear-gradient(135deg, #b45309, #d97706);
    color: white;
}

/* Logos grids */
.tier-logos {
    display: grid;
    gap: 1rem;
}

.tier-logos-main {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.tier-logos-official {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.tier-logos-collab {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
}

/* Sponsor Cards */
.sponsor-card-pro {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.sponsor-card-pro:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(208, 152, 14, 0.5);
    transform: translateY(-5px);
}

.sponsor-logo-wrapper {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    filter: grayscale(100%) brightness(2);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.sponsor-card-pro:hover .sponsor-logo-wrapper {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.sponsor-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sponsor-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    text-align: center;
}

.sponsor-external {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.3s ease;
}

.sponsor-card-pro:hover .sponsor-external {
    opacity: 1;
    color: #d0980e;
}

/* Small cards */
.sponsor-card-sm {
    padding: 1rem;
}

.sponsor-card-sm .sponsor-logo-wrapper {
    height: 60px;
    margin-bottom: 0;
}

/* Mini cards (colaboradores) */
.sponsor-card-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sponsor-card-mini:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(208, 152, 14, 0.3);
}

.sponsor-card-mini img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%) brightness(2);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.sponsor-card-mini:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Empty State */
.sponsors-empty-pro {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
}

.empty-illustration {
    margin-bottom: 2rem;
}

.empty-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(208, 152, 14, 0.2), rgba(9, 97, 45, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.empty-circle i {
    font-size: 2.5rem;
    color: #d0980e;
}

.empty-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.empty-dots span {
    width: 8px;
    height: 8px;
    background: rgba(208, 152, 14, 0.3);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.empty-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.empty-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.sponsors-empty-pro h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0e0022;
    margin: 0 0 0.5rem;
}

.sponsors-empty-pro p {
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 2rem;
}

.empty-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.875rem;
}

.benefit-item i {
    color: #d0980e;
}

.btn-become-sponsor {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #d0980e, #f4c542);
    color: #0e0022;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-become-sponsor:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(208, 152, 14, 0.4);
}

/* CTA Banner */
.sponsors-cta-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(9, 97, 45, 0.3), rgba(9, 97, 45, 0.1));
    border: 1px solid rgba(9, 97, 45, 0.3);
    border-radius: 16px;
    flex-wrap: wrap;
}

.cta-icon-wrap {
    width: 50px;
    height: 50px;
    background: #09612d;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon-wrap i {
    font-size: 1.25rem;
    color: white;
}

.cta-text-wrap {
    flex: 1;
}

.cta-text-wrap strong {
    display: block;
    color: #0e0022;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cta-text-wrap span {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.875rem;
}

.cta-btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #09612d;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-contact:hover {
    background: #d0980e;
    color: #0e0022;
}

.cta-btn-contact i {
    transition: transform 0.3s ease;
}

.cta-btn-contact:hover i {
    transform: translateX(5px);
}

/* Responsive Sponsors */
@media (max-width: 1199px) {
    .sponsors-pro-container {
        padding: 3rem 80px 3rem 120px;
    }

    .sponsors-vertical-title {
        font-size: 5rem;
        left: 25px;
    }
}

@media (max-width: 991px) {
    .sponsors-pro-container {
        padding: 2.5rem 60px 2.5rem 80px;
    }

    .sponsors-vertical-title {
        font-size: 4rem;
        left: 15px;
    }

    .sponsors-pro-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tier-logos-main {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 767px) {
    .sponsors-vertical-title {
        display: none;
    }

    .sponsors-pro-container {
        padding: 2rem 1rem;
    }

    .sponsors-pro-header h2 {
        font-size: 1.75rem;
    }

    .tier-header {
        flex-wrap: wrap;
    }

    .tier-badge {
        margin-left: auto;
    }

    .tier-logos-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .tier-logos-official {
        grid-template-columns: repeat(3, 1fr);
    }

    .tier-logos-collab {
        grid-template-columns: repeat(4, 1fr);
    }

    .sponsors-cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .cta-btn-contact {
        width: 100%;
        justify-content: center;
    }

    .empty-benefits {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 575px) {
    .sponsors-tier {
        padding: 1rem;
    }

    .tier-logos-main,
    .tier-logos-official {
        grid-template-columns: repeat(2, 1fr);
    }

    .tier-logos-collab {
        grid-template-columns: repeat(3, 1fr);
    }

    .sponsor-card-pro {
        padding: 1rem;
    }

    .sponsor-logo-wrapper {
        height: 60px;
    }

    .sponsors-contact-btn span {
        display: none;
    }
}

/* ==========================================
   11. CTA PRO - ÚNETE A LIGAF
   ========================================== */
.cta-pro {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 500px;
}

/* Barra de colores */
.cta-color-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right,
            #d0980e 0%, #d0980e 50%,
            #09612d 50%, #09612d 100%);
    z-index: 10;
}

/* Título vertical */
.cta-vertical-title {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    letter-spacing: 15px;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

/* Fondo con imagen */
.cta-pro-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-pro-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-pro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(14, 0, 34, 0.95) 0%,
            rgba(9, 97, 45, 0.9) 100%);
}

/* Container */
.cta-pro-container {
    max-width: 100%;
    padding: 5rem 120px 5rem 160px;
    position: relative;
    z-index: 2;
}

/* Grid */
.cta-pro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Contenido izquierdo */
.cta-pro-content {
    color: white;
}

.cta-pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(208, 152, 14, 0.2);
    border: 1px solid rgba(208, 152, 14, 0.4);
    color: #d0980e;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.cta-pro-badge i {
    font-size: 0.875rem;
}

.cta-pro-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 1.25rem;
    color: white;
}

.cta-pro-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem;
    max-width: 500px;
}

/* Botones CTA */
.cta-pro-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #d0980e, #f4c542);
    color: #0e0022;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(208, 152, 14, 0.4);
}

.cta-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(208, 152, 14, 0.6);
}

.cta-btn-gold i:last-child {
    transition: transform 0.3s ease;
}

.cta-btn-gold:hover i:last-child {
    transform: translateX(5px);
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-outline:hover {
    background: white;
    border-color: white;
    color: #0e0022;
    transform: translateY(-3px);
}

/* Beneficios lado derecho */
.cta-pro-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(208, 152, 14, 0.3);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(208, 152, 14, 0.2), rgba(208, 152, 14, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.25rem;
    color: #d0980e;
}

.benefit-info {
    display: flex;
    flex-direction: column;
}

.benefit-info strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.benefit-info span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

/* Responsive CTA Pro */
@media (max-width: 1199px) {
    .cta-pro-container {
        padding: 4rem 80px 4rem 120px;
    }

    .cta-vertical-title {
        font-size: 5rem;
        left: 25px;
    }

    .cta-pro-content h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 991px) {
    .cta-pro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-pro-container {
        padding: 3rem 60px 3rem 80px;
    }

    .cta-vertical-title {
        font-size: 4rem;
        left: 15px;
    }

    .cta-pro-content p {
        max-width: 100%;
    }

    .cta-pro-benefits {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefit-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
}

@media (max-width: 767px) {
    .cta-vertical-title {
        display: none;
    }

    .cta-pro-container {
        padding: 3rem 1.5rem;
    }

    .cta-pro-content h2 {
        font-size: 1.75rem;
    }

    .cta-pro-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-pro-buttons {
        flex-direction: column;
    }

    .cta-btn-gold,
    .cta-btn-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .cta-pro {
        min-height: auto;
    }

    .cta-pro-container {
        padding: 2.5rem 1rem;
    }

    .cta-pro-badge {
        font-size: 0.6875rem;
        padding: 0.375rem 1rem;
    }

    .cta-pro-content h2 {
        font-size: 1.5rem;
    }

    .cta-pro-content p {
        font-size: 1rem;
    }

    .benefit-card {
        padding: 0.875rem;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    .benefit-icon i {
        font-size: 1rem;
    }

    .benefit-info strong {
        font-size: 1.25rem;
    }

    .benefit-info span {
        font-size: 0.75rem;
    }
}

/* ==========================================
   ANIMACIONES - DATA ATTRIBUTES
   ========================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-up"].animated {
    transform: translateY(0);
}

[data-animate="fade-right"].animated {
    transform: translateX(0);
}

[data-animate="fade-left"].animated {
    transform: translateX(0);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

/* ==========================================
   RESPONSIVE REDISEÑO - MOBILE FIRST
   ========================================== */

/* Extra Large: >= 1200px */
@media (min-width: 1200px) {
    .hero-slide-content {
        min-height: 500px;
    }
}

/* Large: 992px - 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-splide {
        padding: 110px 1.5rem 2.5rem 1.5rem;
    }

    .hero-slide-content {
        min-height: 480px;
    }

    .selections-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .news-scroll-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }

    .news-image-main {
        height: 300px;
    }

    .tournaments-scroll-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .tournament-image-main {
        height: 420px;
    }

    .services-scroll-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .service-image-main {
        height: 420px;
    }
}

/* Medium: 768px - 991px */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-splide {
        padding: 100px 1.5rem 2rem 1.5rem;
    }

    .hero-slide-content {
        min-height: 450px;
    }

    .news-scroll-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .news-image-main {
        height: 280px;
    }

    .news-content-main {
        padding: 1.5rem;
    }

    /* News Hero Grid - Tablet */
    .news-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-hero-image {
        height: 380px;
    }

    .news-hero-sidebar {
        flex-direction: row;
        gap: 1rem;
    }

    .news-sidebar-link {
        flex-direction: column;
        padding: 0;
    }

    .news-sidebar-image {
        width: 100%;
        height: 180px;
    }

    .news-sidebar-content {
        padding: 1rem;
    }

    .news-previous-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .tournaments-scroll-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .tournament-image-main {
        height: 380px;
    }

    .tournament-content-main h3 {
        font-size: 1.125rem;
    }

    .services-scroll-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-image-main {
        height: 380px;
    }

    .service-content-main h3 {
        font-size: 1.125rem;
    }

    /* Container estándar en tablet */
    .featured-news .container {
        padding: 0 var(--spacing-md);
    }

    .featured-services .container {
        padding: 0 120px 0 80px;
    }

    /* Texto vertical más pequeño en tablet */
    .featured-news::before,
    .featured-tournaments::before,
    .featured-services::before {
        font-size: 4rem;
        left: 20px;
    }

    .featured-services::before {
        right: 20px;
        left: auto;
    }

    .selections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .sponsors-main {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

/* Small: 576px - 767px */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-splide {
        padding: 90px 1rem 1.5rem 1rem;
    }

    .hero-slide-content {
        min-height: 420px;
    }

    .hero-carousel {
        border-radius: 20px;
    }

    /* Container en small */
    .featured-news .container {
        padding: 0 1.5rem;
    }

    /* News Hero Grid - Small */
    .news-hero-grid {
        grid-template-columns: 1fr;
    }

    .news-hero-sidebar {
        flex-direction: column;
    }

    .news-sidebar-link {
        flex-direction: row;
        padding: 1rem;
    }

    .news-sidebar-image {
        width: 100px;
        height: 100%;
    }

    .news-previous-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .selections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .selection-card {
        height: 300px;
    }
}

/* Extra Small: < 576px */
@media (max-width: 575px) {
    .hero-splide {
        padding: 80px 1rem 1.5rem 1rem;
    }

    .hero-slide-content {
        min-height: 380px;
    }

    .hero-carousel {
        border-radius: 15px;
    }

    .hero-slide-content .hero-content {
        padding: 1rem 0;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .hero-cta {
        padding: 1rem 1.75rem;
        font-size: 0.875rem;
    }

    .splide__arrow {
        width: 40px;
        height: 40px;
    }

    /* Container en móvil */
    .featured-news .container {
        padding: 0 1rem;
    }

    .news-scroll-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-image-main {
        height: 260px;
    }

    .news-content-main {
        padding: 1.25rem;
    }

    /* News Hero Grid - Mobile */
    .news-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .news-hero-image {
        height: 280px;
    }

    .news-hero-content {
        padding: 1.5rem;
    }

    .news-hero-content h3 {
        font-size: 1.375rem;
    }

    .news-hero-sidebar {
        flex-direction: column;
        gap: 1rem;
    }

    .news-sidebar-link {
        flex-direction: row;
        padding: 0.75rem;
    }

    .news-sidebar-image {
        width: 90px;
        min-height: 90px;
    }

    .news-sidebar-content h4 {
        font-size: 0.875rem;
    }

    .news-previous-section {
        margin-top: 3rem;
    }

    .news-previous-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .news-previous-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .btn-secondary-outline {
        width: 100%;
        justify-content: center;
    }

    .tournaments-scroll-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0.5rem 0 1.5rem 0;
    }

    .tournament-image-main {
        height: 350px;
    }

    .tournament-content-main {
        padding: 1.5rem;
    }

    .services-scroll-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0.5rem 0 1.5rem 0;
    }

    .service-image-main {
        height: 350px;
    }

    .service-content-main {
        padding: 1.5rem;
    }

    .news-content-main h3 {
        font-size: 1.125rem;
    }

    .tab-menu {
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    /* Tabla a Cards en Mobile */
    .calendar-table thead {
        display: none;
    }

    .calendar-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border-radius: 15px;
        padding: 1rem;
    }

    .calendar-table tbody td {
        display: block;
        text-align: left;
        padding: 0.5rem 0;
        border: none;
    }

    .calendar-table tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        display: inline-block;
        width: 120px;
        color: var(--primary-color);
    }

    .selections-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .selection-card {
        height: 300px;
    }

    .media-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsors-main,
    .sponsors-official,
    .sponsors-collaborators {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-submit {
        width: 100%;
    }

    .newsletter-content {
        padding: 2rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        justify-content: center;
    }
}

/* ==========================================
   COMPETICIONES INTRO SECTION
   ========================================== */
.competiciones-intro {
    position: relative;
    background: linear-gradient(135deg, #0a0518 0%, #1a1035 50%, #0a0518 100%);
    padding: 100px 0;
    overflow: hidden;
}

.competiciones-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(208, 152, 14, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(9, 97, 45, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.competiciones-content {
    position: relative;
    z-index: 2;
}

/* Header */
.competiciones-header {
    text-align: center;
    margin-bottom: 60px;
}

.competiciones-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), #e4ad2d);
    color: #000;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(208, 152, 14, 0.3);
}

.competiciones-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Intro Text */
.competiciones-intro-text {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.competiciones-intro-text:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(208, 152, 14, 0.2);
}

.competiciones-intro-text h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 20px 0;
}

.competiciones-intro-text h3 i {
    font-size: 1.5rem;
}

.competiciones-intro-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Departamentales */
.competiciones-departamentales {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--secondary-color);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
}

.competiciones-departamentales h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 20px 0;
}

.competiciones-departamentales h3 i {
    font-size: 1.5rem;
}

.competiciones-departamentales>p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px 0;
}

/* Info Grid */
.competiciones-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(208, 152, 14, 0.25);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #e4ad2d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(208, 152, 14, 0.4);
}

.info-icon i {
    font-size: 1.75rem;
    color: #000;
}

.info-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}

.info-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* Divider */
.competiciones-divider {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(208, 152, 14, 0.2);
}

.competiciones-divider span {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: bounce 2s ease-in-out infinite;
}

.competiciones-divider i {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .competiciones-header h2 {
        font-size: 2.5rem;
    }

    .competiciones-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .competiciones-intro {
        padding: 60px 0;
    }

    .competiciones-header h2 {
        font-size: 2rem;
    }

    .competiciones-intro-text,
    .competiciones-departamentales {
        padding: 30px 20px;
    }

    .competiciones-intro-text h3,
    .competiciones-departamentales h3 {
        font-size: 1.5rem;
    }

    .competiciones-intro-text p,
    .competiciones-departamentales>p {
        font-size: 1rem;
    }

    .competiciones-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }

    .info-icon {
        width: 60px;
        height: 60px;
    }

    .info-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .competiciones-header h2 {
        font-size: 1.75rem;
    }

    .competiciones-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .competiciones-info-grid {
        grid-template-columns: 1fr;
    }

    .competiciones-divider {
        margin-top: 40px;
        padding-top: 30px;
    }

    .competiciones-divider span {
        font-size: 0.875rem;
        gap: 10px;
    }
}


/* =====================================================
   REDISEÑO VISUAL PROFESIONAL - INDEX LIGAF
   ===================================================== */

/* ── HERO V2 ──────────────────────────────────────── */

.hero-overlay-v2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(4, 36, 17, 0.88) 0%,
            rgba(9, 97, 45, 0.60) 55%,
            rgba(0, 0, 0, 0.30) 100%);
    z-index: 1;
}

.hero-overlay-alt {
    background: linear-gradient(120deg,
            rgba(14, 0, 34, 0.88) 0%,
            rgba(9, 97, 45, 0.55) 55%,
            rgba(0, 0, 0, 0.25) 100%);
}

/* Partículas flotantes */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    background: rgba(208, 152, 14, 0.55);
    border-radius: 50%;
    animation: particleFloat 8s infinite ease-in-out;
}

.hero-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    width: 8px;
    height: 8px;
}

.hero-particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 3s;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 5s;
    width: 10px;
    height: 10px;
    background: rgba(208, 152, 14, 0.35);
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-28px) scale(1.3);
        opacity: 1;
    }
}

/* Contenido del hero v2 */
.hero-content-v2 {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding-top: 120px;
    animation: heroFadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    /* Forzar colores sobre herencias del .hero-content general */
    color: #fff !important;
    text-align: left;
}

.hero-content-v2 *,
.hero-content-v2 h1,
.hero-content-v2 h2,
.hero-content-v2 h3,
.hero-content-v2 p {
    color: inherit;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge del hero */
.hero-badge-wrap {
    margin-bottom: 1.2rem;
}

.hero-badge-pro {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(9, 97, 45, 0.85);
    border: 1px solid rgba(208, 152, 14, 0.5);
    color: #f0c43f;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.hero-badge-pro i {
    font-size: 0.875rem;
    animation: rotateBall 4s linear infinite;
}

@keyframes rotateBall {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-badge-gold {
    background: rgba(130, 90, 5, 0.8);
    color: #fdd76a;
    border-color: rgba(253, 215, 106, 0.4);
}

/* Título del hero */
.hero-title-pro {
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-title-line1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    letter-spacing: -0.5px;
    opacity: 0.92;
}

.hero-title-line2 {
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    letter-spacing: -1.5px;
    line-height: 1;
}

.hero-title-pro em {
    font-style: normal;
    color: #f0c43f;
    position: relative;
}

.hero-title-pro em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d0980e, transparent);
    border-radius: 2px;
}

/* Descripción del hero */
.hero-desc-pro {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 2rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

/* CTA Buttons del hero */
.hero-cta-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #09612d;
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.3px;
    border: 2px solid transparent;
    box-shadow: 0 6px 24px rgba(9, 97, 45, 0.45);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.hero-btn-primary:hover::before {
    transform: translateX(100%);
}

.hero-btn-primary:hover {
    background: #07501f;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(9, 97, 45, 0.55);
    color: #fff;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: #fff;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(6px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-3px);
    color: #fff;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 10;
    animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero-scroll-hint i {
    font-size: 1.1rem;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.7;
    }

    50% {
        transform: translateX(-50%) translateY(8px);
        opacity: 1;
    }
}

/* Splide hero personalizado */
#hero-carousel .splide__arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    pointer-events: none;
}

#hero-carousel .splide__arrow {
    pointer-events: all;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

#hero-carousel .splide__arrow:hover {
    background: rgba(9, 97, 45, 0.85);
    border-color: #09612d;
    transform: scale(1.1);
}

#hero-carousel .splide__arrow svg {
    fill: #fff;
    width: 1.2rem;
    height: 1.2rem;
}

#hero-carousel .splide__pagination {
    bottom: 1.25rem;
    z-index: 20;
}

#hero-carousel .splide__pagination__page {
    background: rgba(255, 255, 255, 0.45);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
    transition: all 0.35s ease;
    transform: scale(1);
}

#hero-carousel .splide__pagination__page.is-active {
    background: #d0980e;
    width: 28px;
    border-radius: 5px;
    transform: scale(1.1);
}

/* ── STATS BAND ──────────────────────────────────── */
.stats-band {
    background: linear-gradient(135deg, #07501f 0%, #09612d 50%, #064920 100%) !important;
    padding: 0 !important;
    position: relative;
    z-index: 50;
    box-shadow: 0 8px 32px rgba(9, 97, 45, 0.35);
    overflow: visible;
}

.stats-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d0980e, #f0c43f, #d0980e);
    background-size: 200% 100%;
    animation: shimmerBar 3s ease-in-out infinite;
}

@keyframes shimmerBar {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.stats-band-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: stretch;
    justify-content: space-around;
}

.stats-band-item {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.75rem 1.5rem;
    flex: 1;
    transition: background 0.3s ease;
    position: relative;
}

.stats-band-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.stats-band-icon {
    width: 52px;
    height: 52px;
    background: rgba(208, 152, 14, 0.18);
    border: 1.5px solid rgba(208, 152, 14, 0.4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.stats-band-item:hover .stats-band-icon {
    transform: scale(1.12) rotate(-6deg);
}

.stats-band-icon i {
    font-size: 1.35rem;
    color: #f0c43f;
}

.stats-band-data {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.stats-band-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.5px;
}

.stats-band-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.stats-band-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 14px 0;
    flex-shrink: 0;
}

/* ── MEJORAS NOTICIAS ────────────────────────────── */
.featured-news {
    background: #fff;
    position: relative;
}

.featured-news .section-header {
    position: relative;
    padding-bottom: 1.5rem;
}

.featured-news .section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #09612d, #d0980e);
    border-radius: 2px;
}

.featured-news .section-subtitle {
    background: linear-gradient(135deg, rgba(9, 97, 45, 0.1), rgba(208, 152, 14, 0.1));
    border: 1px solid rgba(9, 97, 45, 0.15);
    color: #09612d;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Mejora noticia principal */
.news-hero-main {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-hero-main:hover {
    transform: translateY(-6px);
}

.news-hero-image {
    position: relative;
    overflow: hidden;
}

.news-hero-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.news-hero-main:hover .news-hero-image img {
    transform: scale(1.05);
}

/* Mejora cards de noticias laterales */
.news-sidebar-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease !important;
    border-radius: 12px;
    overflow: hidden;
}

.news-sidebar-card:hover {
    transform: translateX(6px) !important;
    box-shadow: 0 8px 25px rgba(9, 97, 45, 0.12) !important;
}

/* Mejora cards grid noticias anteriores */
.news-card-scroll {
    transition: transform 0.35s ease, box-shadow 0.35s ease !important;
    border-radius: 14px;
    overflow: hidden;
}

.news-card-scroll:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
}

.news-card-scroll:hover img {
    transform: scale(1.06) !important;
}

.news-link-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #09612d;
    font-weight: 700;
    font-size: 0.875rem;
    position: relative;
    letter-spacing: 0.3px;
}

.news-link-more::after {
    content: '→';
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
}

.news-card-scroll:hover .news-link-more::after {
    opacity: 1;
    transform: translateX(2px);
}

/* Botón ver todas noticias mejorado */
.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 2rem;
    border: 2px solid #09612d;
    color: #09612d;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
}

.btn-secondary-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #09612d;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary-outline:hover {
    color: #fff;
    border-color: #09612d;
}

.btn-secondary-outline:hover::before {
    transform: scaleX(1);
}

.btn-secondary-outline span,
.btn-secondary-outline i,
.btn-secondary-outline>* {
    position: relative;
    z-index: 1;
}

/* ── MEJORAS BENTO GRID EVENTOS ──────────────────── */
.bento-card {
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease !important;
}

.bento-card:hover {
    transform: scale(1.025) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

.bento-card img {
    transition: transform 0.6s ease !important;
}

.bento-card:hover img {
    transform: scale(1.07) !important;
}

.bento-overlay {
    background: linear-gradient(to top, rgba(4, 36, 17, 0.92) 0%, rgba(9, 97, 45, 0.3) 55%, transparent 100%);
}

.bento-overlay-pink {
    background: linear-gradient(to top, rgba(130, 0, 60, 0.88) 0%, rgba(200, 50, 100, 0.3) 55%, transparent 100%);
}

.bento-overlay-blue {
    background: linear-gradient(to top, rgba(10, 20, 80, 0.88) 0%, rgba(30, 60, 150, 0.3) 55%, transparent 100%);
}

.bento-overlay-orange {
    background: linear-gradient(to top, rgba(100, 40, 0, 0.88) 0%, rgba(180, 80, 10, 0.3) 55%, transparent 100%);
}

.bento-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    color: #fff;
    margin-bottom: 0.6rem;
}

.badge-blue {
    background: rgba(30, 80, 200, 0.5);
    border-color: rgba(100, 150, 255, 0.3);
}

.badge-pink {
    background: rgba(180, 30, 80, 0.5);
    border-color: rgba(255, 100, 150, 0.3);
}

.badge-orange {
    background: rgba(180, 80, 10, 0.5);
    border-color: rgba(255, 160, 60, 0.3);
}

/* ── MEJORAS MULTIMEDIA ──────────────────────────── */
.stat-box {
    transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}

.stat-box:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2) !important;
}

/* ── MEJORAS TIENDA ──────────────────────────────── */
.product-pro-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease !important;
}

.product-pro-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.product-pro-image img {
    transition: transform 0.55s ease !important;
}

.product-pro-card:hover .product-pro-image img {
    transform: scale(1.07) !important;
}

.btn-add-cart {
    background: #09612d !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
}

.product-pro-card:hover .btn-add-cart {
    background: #064920 !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 16px rgba(9, 97, 45, 0.4) !important;
}

/* ── MEJORAS PATROCINADORES ──────────────────────── */
.sponsor-card-pro {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease !important;
}

.sponsor-card-pro:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 16px 35px rgba(9, 97, 45, 0.15) !important;
    border-color: rgba(9, 97, 45, 0.4) !important;
}

.sponsor-logo-wrapper img {
    transition: filter 0.35s ease, transform 0.35s ease !important;
}

.sponsor-card-pro:hover .sponsor-logo-wrapper img {
    filter: none !important;
    transform: scale(1.05) !important;
}

/* ── ANIMACIONES GLOBALES PREMIUM ────────────────── */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.data-animate-done {
    animation: fadeSlideUp 0.65s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Shimmer effect para loading states */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Glow verde institucional */
.glow-green {
    box-shadow: 0 0 20px rgba(9, 97, 45, 0.35), 0 0 60px rgba(9, 97, 45, 0.15);
}

/* ── RESPONSIVE HERO V2 ──────────────────────────── */
@media (max-width: 768px) {
    .hero-content-v2 {
        padding-top: 90px;
    }

    .hero-title-line1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .hero-title-line2 {
        font-size: clamp(2.2rem, 7vw, 3.2rem);
    }

    .hero-cta-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-scroll-hint {
        display: none;
    }

    .stats-band-inner {
        flex-wrap: wrap;
        gap: 0;
    }

    .stats-band-item {
        width: 50%;
        padding: 1.2rem 1rem;
    }

    .stats-band-divider {
        display: none;
    }

    .stats-band-number {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-content-v2 {
        padding-top: 80px;
    }

    .hero-title-line1 {
        font-size: 1.75rem;
    }

    .hero-title-line2 {
        font-size: 2.25rem;
    }

    .stats-band-item {
        width: 100%;
    }

    .stats-band-divider {
        display: none;
    }
}

/* =====================================================
   HEADER PROFESIONAL + TOPBAR REDES SOCIALES (IMPACT VERSION)
   ===================================================== */

/* ── TOPBAR ──────────────────────────────────────── */
.header-topbar {
    background: linear-gradient(90deg, #051c0d 0%, #094a24 50%, #051c0d 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1001;
    overflow: hidden;
}

.header-topbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg,
            transparent,
            transparent 12px,
            rgba(255, 255, 255, 0.015) 12px,
            rgba(255, 255, 255, 0.015) 24px);
    pointer-events: none;
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 44px;
    /* Un poco más alto para elegancia */
    gap: 1rem;
    position: relative;
}

/* Info izquierda */
.topbar-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.topbar-info i {
    color: #d0980e;
    font-size: 0.9rem;
    animation: rotateBall 6s linear infinite;
    filter: drop-shadow(0 0 5px rgba(208, 152, 14, 0.5));
}

/* Redes sociales derecha */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.topbar-social-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #d0980e;
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.topbar-socials {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Botones Topbar - Colores de marca POR DEFECTO para que destaquen */
.topbar-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    /* Diseño más corporativo/moderno en lugar de píldora */
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.topbar-social-btn i {
    font-size: 0.85rem;
}

.topbar-facebook {
    background: #1877f2;
    border: 1px solid #1877f2;
}

.topbar-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border: 1px solid transparent;
    /* El gradiente cubre */
}

.topbar-tiktok {
    background: #000000;
    border: 1px solid #333;
}

.topbar-tiktok i {
    color: #69c9d0;
}

.topbar-youtube {
    background: #FF0000;
    border: 1px solid #FF0000;
}

/* Hover effects */
.topbar-social-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ── NAVBAR MEJORADO (HEADER PRO) ─────────────────── */

.header-topbar+.header.header-pro {
    top: 0;
}

.header-pro {
    background: #ffffff;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.09);
    position: relative;
    border-bottom: none;
    overflow: visible;
}

/* Franja inferior tricolor: verde sólido + flash dorado centrado */
.header-pro::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #09612d;
    z-index: 5;
    pointer-events: none;
}

.header-pro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        #09612d    0%,
        #09612d   25%,
        #b8790d   35%,
        #fde08b   50%,
        #b8790d   65%,
        #09612d   75%,
        #09612d  100%
    );
    z-index: 6;
    pointer-events: none;
    box-shadow: 0 -1px 6px rgba(200, 135, 10, 0.25);
}

/* Acciones del nav */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* ── GRUPO CTA + REDES SOCIALES ──────────────── */
/* Contenedor unificado: botón + iconos lado a lado */
.nav-cta-group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    background: #f0f9f3;
    border: 1.5px solid #c8e8d4;
    border-radius: 50px;
    padding: 4px 8px 4px 4px;
    box-shadow: 0 2px 10px rgba(9, 97, 45, 0.1);
}

/* El botón Afíliate dentro del grupo */
.nav-cta-group .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 50px;
    padding: 0.55rem 1.1rem;
    font-size: 0.82rem;
    box-shadow: none;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Separador vertical entre botón e iconos */
.nav-cta-group .nav-socials {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    border-left: 1.5px solid #c8e8d4;
    padding-left: 8px;
    margin-left: 2px;
}

/* ── ICONOS SOCIALES ─────────────────────────── */
.nav-socials {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nsoc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.8rem;
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.nsoc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: 50%;
}
.nsoc:hover::before { opacity: 1; }

.nsoc-fb  { background: #1877f2; }
.nsoc-ig  { background: linear-gradient(135deg, #f09433 0%, #e6683c 30%, #dc2743 60%, #bc1888 100%); }
.nsoc-tt  { background: #000; }
.nsoc-tt i { color: #69c9d0; }

.nsoc:hover {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.28);
}

/* Separador (legado) */
.nav-divider,
.nav-sep {
    display: none;
}

/* ── AJUSTE STICKY POSICIÓN ──────────────────────── */
.header-topbar {
    position: sticky;
    top: 0;
    z-index: 1001;
}

.header-pro {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Cuando el header se hace pegajoso después del scroll */
.header-pro.scrolled {
    top: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Animación y peso para el CTA */
.cta-button {
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(9, 97, 45, 0.3);
}

.cta-button:hover {
    box-shadow: 0 6px 20px rgba(9, 97, 45, 0.4);
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1100px) {
    .nav-menu {
        gap: 0.9rem;
    }

    .nav-link {
        font-size: 0.78rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }
}

/* En tablet: ocultar los iconos sociales del grupo para no saturar */
@media (max-width: 960px) {
    .nav-cta-group .nav-socials {
        display: none;
    }
    .nav-cta-group {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
    }
    .nav-cta-group .cta-button {
        margin-right: 0;
    }
}

/* En móvil: ocultar el grupo entero (hamburger lo reemplaza) */
@media (max-width: 768px) {
    .nav-cta-group {
        display: none;
    }
}

@media (max-width: 768px) {
    .topbar-info {
        display: none;
    }

    .topbar-social-label {
        display: none;
    }

    .topbar-social-btn span {
        display: none;
    }

    .topbar-social-btn {
        padding: 0.4rem;
        border-radius: 50%;
        /* Vuelven a ser círculos en móvil para ahorrar espacio */
        width: 32px;
        height: 32px;
        justify-content: center;
    }

    .topbar-socials {
        /* Centramos en tablet/mobile si no hay info a la izq */
        width: 100%;
        justify-content: center;
        gap: 0.8rem;
    }

    .topbar-inner {
        height: 38px;
        padding: 0 0.5rem;
    }

    .header-pro {
        top: 38px;
    }

    /* Logo en móvil */
    .logo-img {
        height: 68px;
        top: 10px;
    }

    .header.scrolled .logo-img,
    .header-pro.scrolled .logo-img {
        height: 54px;
        top: 3px;
    }

    /* Pequeño ajuste en móvil para que el CTA no estorbe al logo/hamburger */
    .nav-actions .cta-button {
        display: none;
    }
}

@media (max-width: 480px) {

    /* En móviles muy pequeños, reducimos el topbar para maximizar pantalla */
    .topbar-inner {
        height: 36px;
    }

    .topbar-social-btn {
        width: 28px;
        height: 28px;
    }

    .topbar-social-btn i {
        font-size: 0.8rem;
    }

    .header-pro {
        top: 36px;
    }

    .logo-img {
        height: 60px;
        top: 8px;
    }
}