/* ===================================================================
   COMERCIALIZADORA Y DISTRIBUIDORA HG S.A.S - CSS Principal
   Diseño: Tecnológica Moderna (Dark + Acentos Vibrantes)
   Paleta: Púrpura #bd93f9, Verde #50fa7b, Rosa #ff79c6
   VERSION DEPURADA - SIN CONFLICTOS
   =================================================================== */

/* ===== CSS RESET Y VARIABLES ===== */
:root {
    /* Colores principales */
    --primary-dark: #0f0f23;
    --secondary-dark: #1e1e3f;
    --tertiary-dark: #2d2d5f;

    /* Acentos tecnológicos */
    --accent-purple: #bd93f9;
    --accent-green: #50fa7b;
    --accent-pink: #ff79c6;
    --whatsapp-green: #1DB954;

    /* Neutrales */
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --dark-gray: #334155;

    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark), var(--tertiary-dark));
    --gradient-accent: linear-gradient(135deg, var(--accent-purple), var(--accent-pink), var(--accent-green));
    --gradient-hero: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--accent-purple) 100%);

    /* Tipografía */
    --font-primary: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Espaciado */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Bordes */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;

    /* Sombras */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(189, 147, 249, 0.3);

    /* Transiciones */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.6;
}

body {
    font-family: var(--font-primary);
    background: var(--primary-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== IMPORT FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&family=Crimson+Text:wght@400;600&display=swap');

/* ===== TIPOGRAFÍA ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(189, 147, 249, 0.3));
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent-purple);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--accent-green);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--accent-pink);
}

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

a {
    color: var(--accent-purple);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--accent-pink);
    text-shadow: 0 0 10px rgba(255, 121, 198, 0.5);
}

/* ===== UTILIDADES ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.desktop-only {
    display: block;
}

.tablet-only,
.mobile-only {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--accent-purple);
    color: var(--primary-dark);
    padding: 8px;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    z-index: 9999;
    transition: var(--transition-normal);
}

.skip-link:focus {
    top: 6px;
}

/* ===== BOTONES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-xl);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    color: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-purple);
    border-color: var(--accent-purple);
}

.btn-secondary:hover {
    background: var(--accent-purple);
    color: var(--primary-dark);
    box-shadow: 0 0 25px rgba(189, 147, 249, 0.5);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}

.btn-whatsapp:hover {
    background: #1ed760;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.4);
    color: var(--white);
}

.btn-small {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.875rem;
}


/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(189, 147, 249, 0.2);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(15, 15, 35, 0.98);
    box-shadow: var(--shadow-lg);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.navbar-brand {
    z-index: 1001;
}

.brand-link {
    text-decoration: none;
    color: inherit;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--light-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-highlight {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1002;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-accent);
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(189, 147, 249, 0.4);
}

/* ===== MENÚS INNOVADORES ===== */

/* MENÚ ORBITAL (Desktop) */
.menu-orbital {
    position: relative;
    z-index: 1050;
}

.orbital-activator {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(189, 147, 249, 0.3);
    transition: all 0.3s ease;
}

.orbital-activator:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(189, 147, 249, 0.4);
}

.orbital-items {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 400px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1051;
}

.menu-orbital[aria-expanded="true"] .orbital-items {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.orbital-item {
    position: absolute;
    width: 60px;
    height: 35px;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(189, 147, 249, 0.6);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.3);
}

.menu-orbital[aria-expanded="true"] .orbital-item {
    opacity: 1;
    transform: scale(1);
}

.orbital-item:hover {
    background: rgba(189, 147, 249, 0.9);
    border-color: var(--accent-purple);
    color: var(--primary-dark);
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 30px rgba(189, 147, 249, 0.4);
}

/* MENÚ HEXAGONAL (Tablet) */
.menu-hexagonal {
    position: relative;
    z-index: 1050;
}

.hex-activator {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(189, 147, 249, 0.3);
    transition: all 0.3s ease;
}

.hex-activator:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(189, 147, 249, 0.4);
}

.hex-shape {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1rem;
}

.hex-items {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1051;
}

.menu-hexagonal[aria-expanded="true"] .hex-items {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hex-item {
    position: absolute;
    width: 80px;
    height: 40px;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(189, 147, 249, 0.6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: scale(0.3) translateY(-10px);
}

.menu-hexagonal[aria-expanded="true"] .hex-item {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.hex-item:hover {
    background: rgba(189, 147, 249, 0.9);
    border-color: var(--accent-purple);
    color: var(--primary-dark);
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 30px rgba(189, 147, 249, 0.4);
}

/* Posiciones hexagonales */
.hex-item[data-vertex="1"] {
    top: 0;
    left: 50%;
    margin-left: -40px;
    transition-delay: 0.1s;
}

.hex-item[data-vertex="2"] {
    top: 60px;
    right: 20px;
    transition-delay: 0.15s;
}

.hex-item[data-vertex="3"] {
    bottom: 60px;
    right: 20px;
    transition-delay: 0.2s;
}

.hex-item[data-vertex="4"] {
    bottom: 0;
    left: 50%;
    margin-left: -40px;
    transition-delay: 0.25s;
}

.hex-item[data-vertex="5"] {
    bottom: 60px;
    left: 20px;
    transition-delay: 0.3s;
}

.hex-item[data-vertex="6"] {
    top: 60px;
    left: 20px;
    transition-delay: 0.35s;
}

/* MENÚ MORPHING (Mobile) */
.menu-morphing {
    position: relative;
    z-index: 1050;
}

.morphing-activator {
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.morphing-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-purple);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-morphing[aria-expanded="true"] .morphing-dot:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-morphing[aria-expanded="true"] .morphing-dot:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-morphing[aria-expanded="true"] .morphing-dot:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.morphing-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1052;
    padding: 80px 20px 20px;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-morphing[aria-expanded="true"] .morphing-panel {
    right: 0;
}

.morphing-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.morphing-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-left: 4px solid var(--accent-purple);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(50px);
    animation: morphingItemSlide 0.5s ease-out forwards;
}

.morphing-item:nth-child(1) {
    animation-delay: 0.1s;
}

.morphing-item:nth-child(2) {
    animation-delay: 0.2s;
}

.morphing-item:nth-child(3) {
    animation-delay: 0.3s;
}

.morphing-item:nth-child(4) {
    animation-delay: 0.4s;
}

.morphing-item:hover {
    background: rgba(189, 147, 249, 0.2);
    border-left-color: var(--accent-green);
    transform: translateX(10px);
}

@keyframes morphingItemSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-top: 80px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(189, 147, 249, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(80, 250, 123, 0.1) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.title-subtitle {
    display: block;
    font-size: 0.6em;
    color: var(--accent-green);
    margin-top: var(--spacing-sm);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--accent-pink);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-2xl);
    max-width: 500px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.hero-products-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 558px;
    max-height: 848px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== SECTIONS GENERALES ===== */
section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 400;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    background: var(--secondary-dark);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 40%, rgba(255, 121, 198, 0.05) 0%, transparent 50%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(189, 147, 249, 0.2);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-purple);
}

.product-card:hover::before {
    opacity: 0.1;
}

.product-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-name {
    color: var(--accent-purple);
    margin-bottom: var(--spacing-sm);
}

.product-description-short {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
}

.product-specs {
    display: inline-block;
    background: rgba(189, 147, 249, 0.2);
    color: var(--accent-purple);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.product-open-catalog {
    background: transparent;
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    font-weight: 600;
}

.product-open-catalog:hover {
    background: var(--accent-green);
    color: var(--primary-dark);
    box-shadow: 0 0 20px rgba(80, 250, 123, 0.3);
}

/* ===== PRODUCT CATALOG ===== */
.product-catalog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(15px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.product-catalog.active {
    opacity: 1;
    visibility: visible;
}

.catalog-content {
    width: 90%;
    max-width: 1000px;
    height: 85vh;
    background: linear-gradient(135deg, #1e1e3f, #2d2d5f);
    border-radius: 20px;
    border: 2px solid #bd93f9;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.product-catalog.active .catalog-content {
    transform: scale(1);
}

.catalog-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff79c6;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 121, 198, 0.3);
}

.catalog-close:hover {
    background: #ff8fd6;
    transform: scale(1.1);
}

.catalog-image {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 60% 40%, rgba(189, 147, 249, 0.1), transparent 70%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.catalog-image img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.catalog-image:hover img {
    transform: scale(1.05);
}

.catalog-details {
    padding: 40px;
    overflow-y: auto;
    background: radial-gradient(circle at 40% 60%, rgba(80, 250, 123, 0.05), transparent 70%);
}

.catalog-details h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #bd93f9;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(135deg, #bd93f9, #ff79c6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.catalog-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    font-style: italic;
}

.catalog-specs,
.catalog-ingredients,
.catalog-occasions,
.catalog-benefits,
.catalog-profile,
.catalog-recommendations,
.catalog-characteristics,
.catalog-pairing {
    background: rgba(255, 255, 255, 0.06);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #50fa7b;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.catalog-specs:hover,
.catalog-ingredients:hover,
.catalog-occasions:hover,
.catalog-benefits:hover,
.catalog-profile:hover,
.catalog-recommendations:hover,
.catalog-characteristics:hover,
.catalog-pairing:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-left-color: #ff79c6;
}

.catalog-specs h4,
.catalog-ingredients h4,
.catalog-occasions h4,
.catalog-benefits h4,
.catalog-profile h4,
.catalog-recommendations h4,
.catalog-characteristics h4,
.catalog-pairing h4 {
    color: #50fa7b;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.catalog-specs ul,
.catalog-ingredients ul,
.catalog-occasions ul,
.catalog-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.catalog-specs li,
.catalog-ingredients li,
.catalog-occasions li,
.catalog-benefits li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.catalog-specs li::before,
.catalog-ingredients li::before,
.catalog-occasions li::before,
.catalog-benefits li::before {
    content: "▶";
    color: #bd93f9;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.9rem;
}

.catalog-ingredients p,
.catalog-occasions p,
.catalog-benefits p,
.catalog-profile p,
.catalog-recommendations p,
.catalog-characteristics p,
.catalog-pairing p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* Scroll personalizado para catálogo */
.catalog-details::-webkit-scrollbar {
    width: 8px;
}

.catalog-details::-webkit-scrollbar-track {
    background: transparent;
}

.catalog-details::-webkit-scrollbar-thumb {
    background: rgba(189, 147, 249, 0.4);
    border-radius: 4px;
}

.catalog-details::-webkit-scrollbar-thumb:hover {
    background: rgba(189, 147, 249, 0.6);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--primary-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--accent-green);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent-pink);
}

.testimonial-quote {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.testimonial-quote::before {
    content: '"';
    color: var(--accent-purple);
    font-size: 2rem;
    margin-right: var(--spacing-xs);
}

.testimonial-quote::after {
    content: '"';
    color: var(--accent-purple);
    font-size: 2rem;
    margin-left: var(--spacing-xs);
}

.testimonial-author strong {
    color: var(--accent-purple);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--tertiary-dark);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(80, 250, 123, 0.08) 0%, transparent 50%);
}

.about-content {
    position: relative;
    z-index: 2;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(189, 147, 249, 0.2);
    transition: var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.info-card h3 {
    color: var(--accent-purple);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-md);
    position: relative;
}

.info-card li::before {
    content: '▶';
    color: var(--accent-green);
    position: absolute;
    left: 0;
    top: 0;
}

.company-mission {
    background: rgba(189, 147, 249, 0.1);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--accent-purple);
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--gradient-primary);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 121, 198, 0.1) 0%, transparent 50%);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-3xl);
    position: relative;
    z-index: 2;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(189, 147, 249, 0.2);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: var(--accent-purple);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(189, 147, 249, 0.3);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(189, 147, 249, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(80, 250, 123, 0.2);
    height: fit-content;
}

.contact-info h3 {
    color: var(--accent-green);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(80, 250, 123, 0.1);
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

.contact-item:hover {
    background: rgba(80, 250, 123, 0.2);
    transform: translateY(-2px);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(29, 185, 84, 0.4);
    z-index: 9999;
    transition: var(--transition-normal);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(29, 185, 84, 0.6);
    color: var(--white);
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    color: var(--white);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(29, 185, 84, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(29, 185, 84, 0.4), 0 0 0 10px rgba(29, 185, 84, 0.1);
    }

    100% {
        box-shadow: 0 4px 20px rgba(29, 185, 84, 0.4);
    }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(189, 147, 249, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 999;
    backdrop-filter: blur(10px);
}

.back-to-top:hover {
    background: var(--accent-purple);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    border-top: 1px solid rgba(189, 147, 249, 0.2);
    padding: var(--spacing-3xl) 0 var(--spacing-xl) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-column h3,
.footer-column h4 {
    color: var(--accent-purple);
    margin-bottom: var(--spacing-lg);
    font-size: 1.2rem;
}

.footer-brand p {
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a,
.footer-contact a {
    color: var(--gray);
    transition: var(--transition-normal);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

/* ===== COOKIES BANNER ===== */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(189, 147, 249, 0.3);
    padding: var(--spacing-lg);
    z-index: 1500;
    transform: translateY(100%);
    transition: var(--transition-slow);
}

.cookies-banner.show {
    transform: translateY(0);
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.cookies-content h3 {
    color: var(--accent-purple);
    margin: 0;
}

.cookies-content p {
    color: var(--gray);
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookies-actions {
    display: flex;
    gap: var(--spacing-md);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1023px) {
    .desktop-only {
        display: none;
    }

    .tablet-only {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .cookies-content {
        flex-direction: column;
        text-align: center;
    }

    .cookies-content p {
        min-width: auto;
    }

    .hex-items {
        width: 240px;
        height: 240px;
    }

    .hex-item {
        width: 70px;
        height: 35px;
        font-size: 0.7rem;
    }

    .hex-item[data-vertex="1"],
    .hex-item[data-vertex="4"] {
        margin-left: -35px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .tablet-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    .hero-section {
        min-height: 90vh;
        padding: var(--spacing-2xl) 0;
    }

    .main-content {
        margin-top: 70px;
    }

    .navbar {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .brand-text {
        font-size: 0.7rem;
    }

    .brand-highlight {
        font-size: 1.4rem;
    }

    section {
        padding: var(--spacing-2xl) 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    /* Catálogo responsive */
    .catalog-content {
        width: 95%;
        height: 90vh;
        grid-template-columns: 1fr;
        grid-template-rows: 40% 1fr;
    }

    .catalog-image {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 25px;
    }

    .catalog-details {
        padding: 25px;
    }

    .catalog-details h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .catalog-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .catalog-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .video-container {
        width: clamp(280px, 90vw, 500px);
        height: clamp(200px, 50vh, 350px);
        border-radius: 20px;
    }

    .splash-video {
        border-radius: 20px;
    }
}

/* Mobile pequeño */
@media (max-width: 480px) {
    .catalog-content {
        width: 98%;
        height: 95vh;
        border-radius: 15px;
    }

    .catalog-image {
        padding: 20px;
    }

    .catalog-details {
        padding: 20px;
    }

    .catalog-specs,
    .catalog-ingredients,
    .catalog-occasions,
    .catalog-benefits,
    .catalog-profile,
    .catalog-recommendations,
    .catalog-characteristics,
    .catalog-pairing {
        padding: 15px;
        margin-bottom: 15px;
    }

    .video-container {
        width: clamp(260px, 95vw, 400px);
        height: clamp(180px, 45vh, 300px);
        border-radius: 16px;
    }
}

/* Desktop grande */
@media (min-width: 1024px) {
    .hero-products-image {
        margin-left: 170px;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .hero-products-image {
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }

    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (min-width: 1440px) {
    .hero-products-image {
        margin-left: 170px;
    }
}

@media (min-width: 2560px) {
    .hero-products-image {
        margin-left: 300px;
    }
}

/* ===== ANIMACIONES ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FOCUS STYLES PARA ACCESIBILIDAD ===== */
*:focus {
    outline: 2px solid var(--accent-purple);
    outline-offset: 2px;
}

/* ===== REDUCIR MOVIMIENTO PARA PREFERENCIAS DE ACCESIBILIDAD ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {

    .header,
    .whatsapp-float,
    .back-to-top,
    .cookies-banner {
        display: none !important;
    }

    .main-content {
        margin-top: 0;
    }

    body {
        background: white !important;
        color: black !important;
    }
}



/* ===================================================================
   FIX HERO IMAGE PROPORTIONS - Desktop & Laptop Only
   Arreglar proporciones de imagen hero sin tocar mobile
   =================================================================== */

/* ===== LAPTOP ESTÁNDAR (1024px - 1439px) ===== */
@media (min-width: 1024px) and (max-width: 1439px) {
    .hero-container {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        /* Más espacio para contenido */
        gap: 40px;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
    }

    .hero-content {
        padding-right: 20px;
    }

    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-products-image {
        width: 100%;
        max-width: 350px;
        /* Tamaño más proporcionado */
        height: auto;
        margin: 0 auto;
        display: block;
        filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3));
    }

    .hero-title {
        font-size: clamp(2.8rem, 4vw, 3.5rem);
        margin-bottom: 25px;
    }

    .hero-subtitle {
        font-size: clamp(1.4rem, 2.2vw, 1.8rem);
        margin-bottom: 25px;
    }

    .hero-description {
        font-size: 1.15rem;
        margin-bottom: 35px;
        max-width: 480px;
    }
}

/* ===== DESKTOP GRANDE (1440px - 1919px) ===== */
@media (min-width: 1440px) and (max-width: 1919px) {
    .hero-container {
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        /* Balance mejorado */
        gap: 60px;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .hero-content {
        padding-right: 30px;
    }

    .hero-visual {
        display: flex;
        justify-content: flex-start;
        /* Alinear a la izquierda en visual */
        align-items: center;
        padding-left: 20px;
    }

    .hero-products-image {
        width: 100%;
        max-width: 450px;
        /* Tamaño proporcionado para desktop */
        height: auto;
        margin: 0;
        display: block;
        filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4));
    }

    .hero-title {
        font-size: clamp(3.2rem, 4.5vw, 4rem);
        margin-bottom: 30px;
    }

    .hero-subtitle {
        font-size: clamp(1.6rem, 2.5vw, 2rem);
        margin-bottom: 30px;
    }

    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 40px;
        max-width: 520px;
    }
}

/* ===== DESKTOP EXTRA GRANDE (1920px - 2559px) ===== */
@media (min-width: 1920px) and (max-width: 2559px) {
    .hero-container {
        display: grid;
        grid-template-columns: 1.4fr 1fr;
        /* Más espacio para contenido */
        gap: 80px;
        align-items: center;
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 50px;
    }

    .hero-content {
        padding-right: 40px;
    }

    .hero-visual {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-left: 40px;
    }

    .hero-products-image {
        width: 100%;
        max-width: 520px;
        /* Tamaño grande pero proporcionado */
        height: auto;
        margin: 0;
        display: block;
        filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.5));
    }

    .hero-title {
        font-size: clamp(3.8rem, 5vw, 4.5rem);
        margin-bottom: 35px;
    }

    .hero-subtitle {
        font-size: clamp(1.8rem, 2.8vw, 2.2rem);
        margin-bottom: 35px;
    }

    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 45px;
        max-width: 580px;
    }
}

/* ===== PANTALLAS ULTRA ANCHAS (2560px+) ===== */
@media (min-width: 2560px) {
    .hero-container {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        /* Máximo espacio para contenido */
        gap: 100px;
        align-items: center;
        max-width: 1800px;
        margin: 0 auto;
        padding: 0 60px;
    }

    .hero-content {
        padding-right: 50px;
    }

    .hero-visual {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-left: 60px;
    }

    .hero-products-image {
        width: 100%;
        max-width: 580px;
        /* Tamaño máximo controlado */
        height: auto;
        margin: 0;
        display: block;
        filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.6));
    }

    .hero-title {
        font-size: clamp(4.2rem, 5.5vw, 5rem);
        margin-bottom: 40px;
    }

    .hero-subtitle {
        font-size: clamp(2rem, 3vw, 2.5rem);
        margin-bottom: 40px;
    }

    .hero-description {
        font-size: 1.3rem;
        margin-bottom: 50px;
        max-width: 620px;
    }
}

/* ===== ASEGURAR QUE MOBILE SIGUE IGUAL ===== */
@media (max-width: 1023px) {

    /* NO TOCAR - Mobile y tablet siguen igual */
    .hero-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }

    .hero-products-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {

    /* NO TOCAR - Mobile sigue igual */
    .hero-products-image {
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ===== OPTIMIZACIONES ADICIONALES ===== */

/* Mejorar textos en desktop */
@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
        /* Alinear texto a la izquierda en desktop */
    }

    .hero-cta {
        margin-top: 40px;
        text-align: left;
    }

    .btn-primary {
        min-width: 220px;
        padding: 18px 35px;
        font-size: 1.1rem;
    }
}

/* Espaciado vertical en desktop */
@media (min-width: 1024px) {
    .hero-section {
        min-height: 90vh;
        padding: 0;
    }
}

/* Hover effects solo en desktop */
@media (min-width: 1024px) {
    .hero-products-image {
        transition: transform 0.6s ease, filter 0.6s ease;
    }

    .hero-visual:hover .hero-products-image {
        transform: scale(1.02);
        filter: drop-shadow(0 25px 60px rgba(189, 147, 249, 0.3));
    }
}

/* ===== DEBUG HELPERS (Remover en producción) ===== */
/*
@media (min-width: 1024px) {
    .hero-container {
        border: 2px solid red;
    }
    
    .hero-content {
        border: 2px solid blue;
    }
    
    .hero-visual {
        border: 2px solid green;
    }
}
*/











/* ===================================================================
   SPLASH SCREEN PROFESIONAL - COMERCIALIZADORA HG S.A.S
   Vista elegante y proporcionada para todas las pantallas
   =================================================================== */

/* ===== CONTAINER PRINCIPAL DEL SPLASH ===== */
.video-splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a1a 0%, #020003 50%, #000002 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

.video-splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.splash-main-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "content media";
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 60px;
}

/* ===== ÁREA DE CONTENIDO (Izquierda) ===== */
.splash-content-area {
    grid-area: content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 40px 0;
    animation: slideInLeft 1.2s ease-out;
}

/* ===== ÁREA DE MEDIA (Derecha) ===== */
.splash-media-area {
    grid-area: media;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    animation: slideInRight 1.2s ease-out;
}

/* ===== TEXTO DE LA EMPRESA ===== */
.company-text-section {
    margin-bottom: 40px;
}

.company-legal-name {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.company-brand-name {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #bd93f9, #ff79c6, #50fa7b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.company-tagline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    font-weight: 500;
    color: #50fa7b;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

/* ===== PRODUCTO HIGHLIGHT ===== */
.product-highlight-section {
    margin-bottom: 40px;
}

.product-name-main {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 800;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(189, 147, 249, 0.6),
        0 0 40px rgba(189, 147, 249, 0.3),
        0 0 60px rgba(189, 147, 249, 0.1);
    letter-spacing: 4px;
    margin-bottom: 15px;
    line-height: 1;
    animation: glowPulse 3s ease-in-out infinite alternate, fadeInUp 0.8s ease-out 0.9s both;
}

.product-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-weight: 400;
    color: #ff79c6;
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.product-experience {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out 1.3s both;
}

/* ===== CONTAINER DE VIDEO/IMAGEN ===== */
.video-container {
    position: relative;
    width: 100%;
    max-width: 600px; /* Aumentado para mejor visibilidad */
    height: auto;
    aspect-ratio: 16/10; /* Aspect ratio más cuadrado para mejor visualización */
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(189, 147, 249, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.splash-video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* CAMBIO CLAVE: contain en lugar de cover para ver todo el video */
    object-position: center; /* Centrar el video */
    border-radius: 25px;
    background: linear-gradient(135deg, #000002, #000000); /* Fondo para áreas vacías */
}

/* ===== INDICADOR DE PROGRESO ===== */
.loading-section {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    animation: fadeInUp 0.8s ease-out 1.5s both;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar-modern {
    width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #bd93f9, #ff79c6, #50fa7b);
    border-radius: 2px;
    animation: progressFlow 4s ease-in-out forwards;
    box-shadow: 0 0 10px rgba(189, 147, 249, 0.5);
}

.loading-text-modern {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== RESPONSIVE TABLET (768px - 1023px) ===== */
@media (max-width: 1023px) {
    .splash-main-container {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "media"
            "content";
        gap: 40px;
        padding: 0 30px;
        text-align: center;
    }

    .splash-content-area {
        align-items: center;
        text-align: center;
    }

    .company-legal-name,
    .product-subtitle,
    .product-experience {
        text-align: center;
    }

    .video-container {
        max-width: 500px; /* Aumentado para tablet */
        aspect-ratio: 16/10; /* Mantener aspect ratio más cuadrado */
    }

    .company-brand-name {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .product-name-main {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }
}

/* ===== RESPONSIVE MOBILE (320px - 767px) ===== */
@media (max-width: 767px) {
    .splash-main-container {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "media"
            "content";
        gap: 30px;
        padding: 0 20px;
        height: 100%;
        justify-content: center;
    }

    .splash-content-area {
        padding: 20px 0;
        align-items: center;
        text-align: center;
    }

    .splash-media-area {
        padding: 20px 0;
    }

    .video-container {
        max-width: 380px; /* Aumentado significativamente para mobile */
        aspect-ratio: 16/10; /* Aspect ratio optimizado para mejor visualización */
        border-radius: 20px;
    }

    .splash-video {
        border-radius: 20px;
        object-fit: contain; /* Asegurar que se vea completo en mobile */
    }

    .company-legal-name {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        margin-bottom: 6px;
    }

    .company-brand-name {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .company-tagline {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        margin-bottom: 25px;
    }

    .product-name-main {
        font-size: clamp(2.2rem, 8vw, 3rem);
        letter-spacing: 3px;
        margin-bottom: 12px;
    }

    .product-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 6px;
    }

    .product-experience {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
        letter-spacing: 1px;
    }

    .loading-section {
        bottom: 30px;
    }

    .progress-bar-modern {
        width: 100px;
    }

    .loading-text-modern {
        font-size: 0.75rem;
    }
}

/* ===== RESPONSIVE MOBILE PEQUEÑO (320px - 374px) ===== */
@media (max-width: 374px) {
    .splash-main-container {
        padding: 0 15px;
        gap: 25px;
    }

    .video-container {
        max-width: 320px; /* Mantener buen tamaño incluso en móviles pequeños */
        aspect-ratio: 16/10; /* Aspect ratio consistente */
    }

    .company-brand-name {
        font-size: clamp(1.6rem, 9vw, 2.2rem);
    }

    .product-name-main {
        font-size: clamp(2rem, 9vw, 2.5rem);
        letter-spacing: 2px;
    }

    .loading-section {
        bottom: 20px;
    }

    .progress-container {
        gap: 10px;
    }

    .progress-bar-modern {
        width: 80px;
        height: 2px;
    }

    .loading-text-modern {
        font-size: 0.7rem;
    }
}

/* ===== RESPONSIVE DESKTOP GRANDE (1400px+) ===== */
@media (min-width: 1400px) {
    .splash-main-container {
        max-width: 1600px;
        gap: 80px;
        padding: 0 60px;
    }

    .video-container {
        max-width: 700px; /* Contenedor más grande para desktop */
        aspect-ratio: 16/10; /* Aspect ratio consistente */
    }

    .company-brand-name {
        font-size: clamp(3.5rem, 4vw, 4.5rem);
    }

    .product-name-main {
        font-size: clamp(4.5rem, 5vw, 6rem);
    }

    .loading-section {
        bottom: 50px;
    }

    .progress-bar-modern {
        width: 150px;
        height: 4px;
    }
}

/* ===== RESPONSIVE ULTRA WIDE (1920px+) ===== */
@media (min-width: 1920px) {
    .splash-main-container {
        max-width: 1800px;
        gap: 100px;
        padding: 0 80px;
    }

    .video-container {
        max-width: 800px; /* Contenedor máximo para ultra wide */
        aspect-ratio: 16/10; /* Mantener aspect ratio */
    }

    .company-brand-name {
        font-size: clamp(4rem, 4.5vw, 5rem);
    }

    .product-name-main {
        font-size: clamp(5rem, 5.5vw, 7rem);
    }
}

/* ===== LANDSCAPE MOBILE ===== */
@media (max-width: 767px) and (orientation: landscape) and (max-height: 500px) {
    .splash-main-container {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "content media";
        gap: 20px;
        padding: 0 20px;
    }

    .splash-content-area {
        text-align: left;
        align-items: flex-start;
        padding: 10px 0;
    }

    .splash-media-area {
        padding: 10px 0;
    }

    .video-container {
        max-width: 280px; /* Optimizado para landscape */
        aspect-ratio: 16/10; /* Aspect ratio consistente */
    }

    .splash-video {
        object-fit: contain; /* Asegurar que se vea completo en landscape */
    }

    .company-brand-name {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
        margin-bottom: 10px;
    }

    .product-name-main {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        margin-bottom: 8px;
    }

    .loading-section {
        bottom: 15px;
    }
}

/* ===== ANIMACIONES ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0% {
        text-shadow: 
            0 0 20px rgba(189, 147, 249, 0.6),
            0 0 40px rgba(189, 147, 249, 0.3),
            0 0 60px rgba(189, 147, 249, 0.1);
    }
    100% {
        text-shadow: 
            0 0 30px rgba(189, 147, 249, 0.8),
            0 0 60px rgba(189, 147, 249, 0.5),
            0 0 90px rgba(189, 147, 249, 0.2);
    }
}

@keyframes progressFlow {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ===== ESTADOS DE ACCESIBILIDAD ===== */
@media (prefers-reduced-motion: reduce) {
    .video-splash-screen,
    .splash-content-area,
    .splash-media-area,
    .company-legal-name,
    .company-brand-name,
    .company-tagline,
    .product-name-main,
    .product-subtitle,
    .product-experience,
    .loading-section {
        animation: none !important;
        transition: opacity 0.3s ease !important;
    }

    .product-name-main {
        animation: none !important;
    }

    .progress-bar-modern::before {
        animation: none !important;
        left: 0 !important;
        width: 100% !important;
    }
}

/* ===== EFECTOS ADICIONALES ===== */
.splash-main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(189, 147, 249, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(80, 250, 123, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 121, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}








/* ===================================================================
   HERO MOBILE PROFESIONAL - Diseño moderno y atractivo
   Agregar al final de styles.css o responsive.css
   =================================================================== */

/* ===== HERO MOBILE PROFESIONAL (320px - 767px) ===== */
@media (max-width: 767px) {
    
    .hero-section {
        min-height: 100vh;
        min-height: 100dvh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 80px 0 40px;
        overflow: hidden;
        
        /* Fondo dinámico con gradiente animado */
        background: linear-gradient(135deg, 
            #0f0f23 0%, 
            #1e1e3f 25%, 
            #2d1b4e 50%, 
            #1e1e3f 75%, 
            #0f0f23 100%);
        background-size: 400% 400%;
        animation: gradientShift 8s ease infinite;
    }
    
    /* Partículas flotantes de fondo */
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            radial-gradient(circle at 20% 20%, rgba(189, 147, 249, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(80, 250, 123, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 60% 40%, rgba(255, 121, 198, 0.08) 0%, transparent 50%);
        animation: particleFloat 15s ease-in-out infinite;
        pointer-events: none;
    }
    
    /* Efecto de resplandor sutil */
    .hero-section::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(189, 147, 249, 0.1) 0%, transparent 70%);
        transform: translate(-50%, -50%);
        animation: glow 4s ease-in-out infinite alternate;
        pointer-events: none;
    }
    
    .hero-container {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 100%;
        max-width: 100vw;
        padding: 0 20px;
        text-align: center;
    }
    
    /* Imagen con efectos modernos */
    .hero-visual {
        order: 1;
        position: relative;
        margin-bottom: 20px;
    }
    
    .products-showcase-hero {
        position: relative;
        display: inline-block;
    }
    
    .hero-products-image {
        width: 280px;
        height: auto;
        max-width: 90vw;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
        transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        animation: floatImage 6s ease-in-out infinite;
    }
    
    /* Anillo de resplandor alrededor de la imagen */
    .products-showcase-hero::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 320px;
        height: 320px;
        border: 2px solid transparent;
        border-radius: 50%;
        background: linear-gradient(45deg, rgba(189, 147, 249, 0.3), rgba(80, 250, 123, 0.3), rgba(255, 121, 198, 0.3));
        background-clip: border-box;
        transform: translate(-50%, -50%) scale(0.8);
        animation: ringPulse 3s ease-in-out infinite;
        pointer-events: none;
        opacity: 0.7;
    }
    
    /* Contenido del texto */
    .hero-content {
        order: 2;
        position: relative;
        z-index: 3;
        width: 100%;
        animation: fadeInUp 1s ease-out 0.3s both;
    }
    
    /* Título con efecto gradiente dinámico */
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 24px;
        background: linear-gradient(135deg, 
            #bd93f9 0%, 
            #ff79c6 25%, 
            #50fa7b 50%, 
            #ff79c6 75%, 
            #bd93f9 100%);
        background-size: 300% 300%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientText 4s ease infinite;
        text-shadow: 0 0 20px rgba(189, 147, 249, 0.3);
        position: relative;
    }
    
    /* Efecto de brillo en el título */
    .hero-title::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(255, 255, 255, 0.2), 
            transparent);
        animation: titleShine 3s ease-in-out infinite;
    }
    
    .title-subtitle {
        display: block;
        font-size: clamp(1.1rem, 5vw, 1.5rem);
        color: #50fa7b;
        margin-top: 12px;
        font-weight: 600;
        text-shadow: 0 0 10px rgba(80, 250, 123, 0.3);
    }
    
    /* Subtítulo con animación de escritura */
    .hero-subtitle {
        font-size: clamp(1.1rem, 4.5vw, 1.4rem);
        color: #ff79c6;
        margin-bottom: 24px;
        font-weight: 500;
        text-shadow: 0 0 10px rgba(255, 121, 198, 0.3);
        animation: fadeInUp 1s ease-out 0.6s both;
    }
    
    /* Descripción con mejor tipografía */
    .hero-description {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.7;
        margin-bottom: 32px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        animation: fadeInUp 1s ease-out 0.9s both;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    /* CTA con efectos modernos */
    .hero-cta {
        margin-top: 24px;
        animation: fadeInUp 1s ease-out 1.2s both;
    }
    
    .hero-cta .btn {
        position: relative;
        padding: 18px 36px;
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 50px;
        background: linear-gradient(135deg, #bd93f9, #ff79c6);
        color: #ffffff;
        text-decoration: none;
        border: none;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 
            0 8px 25px rgba(189, 147, 249, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        min-width: 280px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    /* Efecto de ondas en el botón */
    .hero-cta .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transition: all 0.6s ease;
        transform: translate(-50%, -50%);
    }
    
    .hero-cta .btn:active::before {
        width: 300px;
        height: 300px;
    }
    
    .hero-cta .btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 
            0 15px 40px rgba(189, 147, 249, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    
    /* Indicador de scroll suave */
    .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 50px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 25px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 8px;
        animation: fadeInUp 1s ease-out 1.5s both;
    }
    
    .scroll-indicator::before {
        content: '';
        width: 4px;
        height: 8px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 2px;
        animation: scrollDot 2s ease-in-out infinite;
    }
}

/* ===== ANIMACIONES ===== */

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(2deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes glow {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(1deg); }
    66% { transform: translateY(4px) rotate(-0.5deg); }
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
}

@keyframes gradientText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes titleShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(15px); opacity: 0.5; }
    100% { transform: translateY(0); opacity: 1; }
}

/* ===== MOBILE PEQUEÑO (320px - 480px) ===== */
@media (max-width: 480px) {
    .hero-container {
        padding: 0 16px;
        gap: 32px;
    }
    
    .hero-products-image {
        width: 240px;
    }
    
    .products-showcase-hero::before {
        width: 280px;
        height: 280px;
    }
    
    .hero-cta .btn {
        min-width: 260px;
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
        width: 26px;
        height: 45px;
    }
}

/* ===== OPTIMIZACIONES DE PERFORMANCE ===== */
@media (prefers-reduced-motion: reduce) {
    .hero-section,
    .hero-section::before,
    .hero-section::after,
    .hero-products-image,
    .products-showcase-hero::before,
    .hero-title,
    .hero-title::after,
    .scroll-indicator::before {
        animation: none !important;
    }
    
    .hero-cta .btn:hover {
        transform: none;
    }
}


/* ===================================================================
   HERO MOBILE - FIX BOTÓN SIEMPRE VISIBLE
   Agregar este CSS DESPUÉS del anterior
   =================================================================== */

@media (max-width: 767px) {
    
    /* AJUSTAR ALTURA PARA QUE EL BOTÓN SIEMPRE SE VEA */
    .hero-section {
        min-height: calc(100vh - 20px); /* Reducir un poco la altura */
        min-height: calc(100dvh - 20px); /* Para móviles modernos */
        padding: 90px 0 60px; /* Más padding inferior */
        display: flex;
        align-items: flex-start; /* Cambiar a flex-start para empezar desde arriba */
        justify-content: center;
    }
    
    .hero-container {
        gap: 24px; /* Reducir gap entre elementos */
        padding: 20px 16px 40px; /* Más padding inferior */
        max-width: 100%;
        margin-top: auto;
        margin-bottom: auto;
    }
    
    /* IMAGEN MÁS COMPACTA */
    .hero-products-image {
        width: 240px; /* Reducir tamaño de imagen */
        max-width: 75vw; /* Máximo 75% del ancho de pantalla */
    }
    
    /* TEXTOS MÁS COMPACTOS */
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.4rem); /* Título un poco más pequeño */
        margin-bottom: 16px; /* Menos margen */
        line-height: 1.1;
    }
    
    .title-subtitle {
        font-size: clamp(1rem, 4vw, 1.3rem);
        margin-top: 8px;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 16px; /* Menos margen */
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.5; /* Línea más compacta */
        margin-bottom: 24px; /* Menos margen */
        max-width: 85%;
    }
    
    /* BOTÓN SIEMPRE VISIBLE */
    .hero-cta {
        margin-top: 16px;
        margin-bottom: 20px; /* Margen inferior para asegurar visibilidad */
        position: relative;
        z-index: 10;
    }
    
    .hero-cta .btn {
        padding: 14px 28px; /* Botón más compacto */
        font-size: 1rem;
        min-width: 240px; /* Ancho mínimo más pequeño */
        border-radius: 30px; /* Border radius más pequeño */
        
        /* Asegurar que el botón no se corte */
        margin-bottom: 10px;
        position: relative;
        
        /* Sombra menos agresiva */
        box-shadow: 
            0 6px 20px rgba(189, 147, 249, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    
    .hero-cta .btn:hover {
        transform: translateY(-2px) scale(1.02); /* Hover menos agresivo */
        box-shadow: 
            0 10px 30px rgba(189, 147, 249, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    
    /* QUITAR INDICADOR DE SCROLL EN PANTALLAS PEQUEÑAS */
    .scroll-indicator {
        display: none; /* Ocultar para dar más espacio al botón */
    }
    
    /* AJUSTES PARA PANTALLAS MUY PEQUEÑAS */
    @media (max-height: 700px) {
        .hero-section {
            min-height: 95vh;
            padding: 80px 0 50px;
        }
        
        .hero-container {
            gap: 20px;
        }
        
        .hero-products-image {
            width: 200px;
        }
        
        .hero-title {
            font-size: clamp(1.6rem, 6vw, 2rem);
            margin-bottom: 12px;
        }
        
        .hero-subtitle {
            margin-bottom: 12px;
        }
        
        .hero-description {
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        
        .hero-cta .btn {
            padding: 12px 24px;
            min-width: 220px;
            font-size: 0.95rem;
        }
    }
    
    /* AJUSTES PARA PANTALLAS MUY ALTAS (PARA QUE NO SE VEA PERDIDO) */
    @media (min-height: 900px) {
        .hero-section {
            min-height: 80vh; /* Usar menos altura en pantallas muy altas */
            max-height: 900px; /* Altura máxima */
        }
    }
}

/* ===== MOBILE PEQUEÑO ESPECÍFICO ===== */
@media (max-width: 480px) {
    .hero-container {
        padding: 16px 12px 30px;
        gap: 20px;
    }
    
    .hero-products-image {
        width: 220px;
        max-width: 70vw;
    }
    
    .hero-cta .btn {
        min-width: 220px;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .hero-description {
        max-width: 90%;
        font-size: 0.95rem;
    }
}

/* ===== MOBILE LANDSCAPE (HORIZONTAL) ===== */
@media (max-width: 767px) and (orientation: landscape) and (max-height: 500px) {
    .hero-section {
        min-height: 85vh;
        padding: 20px 0 30px;
    }
    
    .hero-container {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        align-items: center;
    }
    
    .hero-content {
        flex: 1;
        order: 1;
    }
    
    .hero-visual {
        flex: 1;
        order: 2;
    }
    
    .hero-products-image {
        width: 180px;
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        text-align: left;
    }
    
    .hero-subtitle,
    .hero-description {
        text-align: left;
    }
    
    .hero-cta {
        text-align: left;
    }
    
    .hero-cta .btn {
        min-width: 200px;
    }
}






















/* ===================================================================
   CSS MAPA PROFESIONAL - AGREGAR A TU ARCHIVO CSS PRINCIPAL
   Estilos optimizados y separados para el mapa interactivo
   =================================================================== */

/* ===== CONTENEDOR PRINCIPAL ===== */
.coverage-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1e1e3f 100%);
    position: relative;
}

.coverage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(189, 147, 249, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== HEADER ===== */
.coverage-header {
    text-align: center;
    margin-bottom: 50px;
}

.coverage-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #bd93f9, #ff79c6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.coverage-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.coverage-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* ===== TARJETA DEL MAPA ===== */
.map-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(189, 147, 249, 0.2);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.map-visual {
    margin-bottom: 25px;
}

.colombia-professional {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8), rgba(30, 30, 63, 0.9));
}

.colombia-border {
    transition: all 0.3s ease;
}

.cundinamarca-region {
    opacity: 0.9;
    transition: all 0.3s ease;
}

.cundinamarca-region:hover {
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(189, 147, 249, 0.6));
}

.bogota-marker {
    cursor: pointer;
    transition: all 0.3s ease;
}

.bogota-marker:hover {
    transform: scale(1.1);
}

.capital-main {
    filter: drop-shadow(0 0 12px rgba(189, 147, 249, 0.8));
}

.map-labels text {
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}

.coverage-stats-overlay {
    opacity: 0.95;
}

.map-interactive-area {
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-interactive-area:hover {
    fill: rgba(189, 147, 249, 0.1);
}

.map-title {
    color: #bd93f9;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.map-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
}

/* ===== DETALLES DE COBERTURA ===== */
.coverage-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.location-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(189, 147, 249, 0.2);
    padding: 24px;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(189, 147, 249, 0.4);
}

.location-card.primary {
    border-color: rgba(189, 147, 249, 0.4);
    background: rgba(189, 147, 249, 0.08);
}

.location-card.secondary {
    border-color: rgba(80, 250, 123, 0.4);
    background: rgba(80, 250, 123, 0.08);
}

/* ===== HEADER DE UBICACIÓN ===== */
.location-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.location-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.location-icon .icon {
    font-size: 24px;
}

.status-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(15, 15, 35, 0.8);
}

.status-dot.active {
    background: #50fa7b;
    box-shadow: 0 0 12px rgba(80, 250, 123, 0.6);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { 
        box-shadow: 0 0 12px rgba(80, 250, 123, 0.6); 
    }
    50% { 
        box-shadow: 0 0 20px rgba(80, 250, 123, 0.9); 
    }
}

.location-info {
    flex: 1;
}

.location-name {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.location-type {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== BOTONES WHATSAPP PROFESIONALES ===== */
.contact-location-btn {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 14px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-location-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.contact-location-btn:hover {
    background: linear-gradient(135deg, #2EE76F, #1FAE5E);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.contact-location-btn:hover::before {
    left: 100%;
}

.contact-location-btn:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.contact-location-btn svg {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Efecto de ondas al hacer click */
.contact-location-btn.clicked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

/* ===== DETALLES DE UBICACIÓN ===== */
.location-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.detail-value {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== CARACTERÍSTICAS ===== */
.location-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(189, 147, 249, 0.3);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

/* ===== ESTADÍSTICAS ===== */
.coverage-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(189, 147, 249, 0.2);
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(189, 147, 249, 0.4);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #bd93f9, #ff79c6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

/* ===== CTA DE EXPANSIÓN ===== */
.expansion-cta {
    background: linear-gradient(135deg, rgba(189, 147, 249, 0.1), rgba(255, 121, 198, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(189, 147, 249, 0.3);
    padding: 30px;
    text-align: center;
}

.cta-title {
    color: #bd93f9;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #bd93f9, #ff79c6, #50fa7b);
    background-size: 300% 300%;
    border: none;
    border-radius: 30px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(189, 147, 249, 0.4);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%) skewX(-45deg);
    transition: transform 0.8s ease;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(189, 147, 249, 0.6);
    background-position: 100% 0;
    animation: gradientShift 3s ease infinite;
}

.cta-button:hover::before {
    transform: translateX(100%) skewX(-45deg);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

.cta-button svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (min-width: 768px) {
    .coverage-section {
        padding: 80px 0;
    }
    
    .coverage-main {
        grid-template-columns: 400px 1fr;
        gap: 50px;
        align-items: start;
    }
    
    .map-card {
        padding: 40px;
    }
    
    .colombia-professional {
        max-width: 100%;
    }
    
    .coverage-details {
        gap: 30px;
    }
    
    .coverage-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .location-details {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px;
    }
    
    .detail-item:last-child {
        border-right: none;
    }
    
    .expansion-cta {
        padding: 40px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .coverage-section {
        padding: 100px 0;
    }
    
    .coverage-main {
        grid-template-columns: 450px 1fr;
        gap: 60px;
    }
    
    .coverage-details {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .coverage-main {
        grid-template-columns: 500px 1fr;
    }
}

/* Mobile optimizations */
@media (max-width: 480px) {
    .coverage-section {
        padding: 40px 0;
    }
    
    .coverage-header {
        margin-bottom: 30px;
    }
    
    .coverage-main {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .map-card {
        padding: 20px;
    }
    
    .location-card {
        padding: 20px;
    }
    
    .location-header {
        gap: 12px;
    }
    
    .location-icon {
        width: 44px;
        height: 44px;
    }
    
    .location-icon .icon {
        font-size: 20px;
    }
    
    .location-name {
        font-size: 1.1rem;
    }
    
    .contact-location-btn {
        width: 40px;
        height: 40px;
    }
    
    .contact-location-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .coverage-stats {
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .stat-card {
        padding: 20px 16px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .expansion-cta {
        padding: 24px 20px;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

/* ===== NOTIFICACIONES Y EFECTOS ADICIONALES ===== */
.success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    z-index: 1000;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    max-width: 300px;
}

.notification-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ===== ANIMACIÓN DE RIPPLE PARA TOUCH ===== */
@keyframes rippleAnimation {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* ===== PULSO SUTIL PARA CTA ===== */
@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(189, 147, 249, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(189, 147, 249, 0.6);
    }
}



/* ===================================================================
   CSS EFECTOS PROFESIONALES - AGREGAR A TU ARCHIVO CSS EXISTENTE
   Solo agregar estos estilos, no reemplazar nada
   =================================================================== */

/* ===== EFECTOS PROFESIONALES DEL MAPA ===== */

/* Zona de cobertura principal */
.zona-cobertura-principal {
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 20px rgba(189, 147, 249, 0.3));
}

.zona-cobertura-principal:hover {
    filter: drop-shadow(0 0 30px rgba(189, 147, 249, 0.5));
    transform: scale(1.02);
}

/* Anillos de cobertura con efectos */
.coverage-rings circle {
    transition: all 0.3s ease;
}

.coverage-rings:hover circle {
    stroke-width: 3;
    filter: drop-shadow(0 0 15px currentColor);
}

/* Marcador de Bogotá mejorado */
.bogota-marker {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bogota-marker:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 25px rgba(189, 147, 249, 0.8));
}

.capital-main {
    transition: all 0.3s ease;
}

.bogota-marker:hover .capital-main {
    fill: #ff79c6;
    filter: drop-shadow(0 0 15px rgba(255, 121, 198, 0.8));
}

/* Labels con efectos hover */
.map-labels rect {
    transition: all 0.3s ease;
}

.map-labels:hover rect {
    fill: rgba(15, 15, 35, 1);
    stroke: rgba(189, 147, 249, 0.8);
    stroke-width: 2;
    filter: drop-shadow(0 4px 15px rgba(189, 147, 249, 0.4));
}

.map-labels text {
    transition: all 0.3s ease;
}

.map-labels:hover text {
    filter: drop-shadow(0 0 8px currentColor);
}

/* Panel de estadísticas mejorado */
.coverage-stats-overlay {
    transition: all 0.3s ease;
}

.coverage-stats-overlay:hover {
    transform: scale(1.05);
}

.coverage-stats-overlay rect {
    transition: all 0.3s ease;
}

.coverage-stats-overlay:hover rect {
    fill: rgba(15, 15, 35, 1);
    stroke: rgba(189, 147, 249, 0.6);
    stroke-width: 2;
    filter: drop-shadow(0 8px 25px rgba(189, 147, 249, 0.3));
}

/* Efectos para el SVG principal */
.colombia-professional {
    transition: all 0.4s ease;
    border-radius: 16px;
    overflow: hidden;
}

.colombia-professional:hover {
    filter: brightness(1.05) contrast(1.1);
    transform: scale(1.01);
}

/* Área interactiva */
.map-interactive-area {
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-interactive-area:hover {
    fill: rgba(189, 147, 249, 0.1);
    stroke: rgba(189, 147, 249, 0.3);
    stroke-width: 2;
}

/* Efectos de partículas (solo desktop) */
@media (min-width: 1024px) {
    .map-card {
        position: relative;
        overflow: hidden;
    }
    
    .map-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(189, 147, 249, 0.03) 1px, transparent 1px);
        background-size: 30px 30px;
        animation: particleFloat 20s linear infinite;
        pointer-events: none;
        opacity: 0.5;
    }
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(-50px, -50px) rotate(360deg);
    }
}

/* Glow effects dinámicos */
@keyframes dynamicGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(189, 147, 249, 0.3));
    }
    25% {
        filter: drop-shadow(0 0 25px rgba(255, 121, 198, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(80, 250, 123, 0.3));
    }
    75% {
        filter: drop-shadow(0 0 25px rgba(139, 233, 253, 0.4));
    }
}

/* Aplicar glow dinámico al mapa completo */
.map-card:hover .colombia-professional {
    animation: dynamicGlow 4s ease-in-out infinite;
}

/* Efectos de gradiente animado en el fondo */
.map-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(189, 147, 249, 0.05) 0%, 
        rgba(255, 121, 198, 0.05) 25%, 
        rgba(80, 250, 123, 0.05) 50%, 
        rgba(139, 233, 253, 0.05) 75%, 
        rgba(189, 147, 249, 0.05) 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.map-card:hover::after {
    opacity: 1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Efectos de pulso para los elementos principales */
.zona-cobertura-principal {
    animation: zonaPulse 6s ease-in-out infinite;
}

@keyframes zonaPulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* Mejoras de accesibilidad con efectos */
@media (prefers-reduced-motion: reduce) {
    .zona-cobertura-principal,
    .coverage-rings circle,
    .bogota-marker,
    .map-card::before,
    .map-card::after {
        animation: none !important;
    }
    
    .colombia-professional:hover {
        transform: none;
    }
}

/* Focus states para accesibilidad */
.map-interactive-area:focus {
    outline: 3px solid #bd93f9;
    outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bogota-marker:hover {
        transform: scale(1.1);
    }
    
    .zona-cobertura-principal:hover {
        transform: none;
    }
    
    .map-card::before,
    .map-card::after {
        display: none;
    }
}





/* ===================================================================
   FORMULARIO DE CONTACTO - CSS ULTRA ESPECÍFICO
   SOLUCIÓN DEFINITIVA PARA PLACEHOLDERS Y SELECT OPTIONS
   =================================================================== */

/* ===== RESET COMPLETO Y FORZADO ===== */
* {
    box-sizing: border-box;
}

/* ===== SECCIÓN CONTACTO ===== */
.contact-section {
    background: #1e1e3f !important;
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(189, 147, 249, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* ===== HEADER DE SECCIÓN ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #bd93f9 !important;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ffffff !important;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== CONTENIDO PRINCIPAL ===== */
.contact-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
    align-items: start;
}

/* ===== CONTENEDOR DEL FORMULARIO ===== */
.form-container {
    background: rgba(45, 45, 95, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(189, 147, 249, 0.2);
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(189, 147, 249, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    color: #bd93f9 !important;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #ffffff !important;
    font-size: 0.9rem;
}

/* ===== SECCIONES DEL FORMULARIO ===== */
.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(30, 30, 63, 0.6) !important;
    border-radius: 20px;
    border: 1px solid rgba(189, 147, 249, 0.1);
}

.section-title-form {
    color: #50fa7b !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== FILAS Y GRUPOS DE FORMULARIO ===== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ===== LABELS TOTALMENTE BLANCOS ===== */
.form-label {
    color: #ffffff !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.9rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* ===== INPUTS - SOLUCIÓN DEFINITIVA ===== */
input[type="text"],
input[type="email"], 
input[type="tel"],
textarea,
select {
    background: #2d2d5f !important;
    border: 2px solid rgba(189, 147, 249, 0.3) !important;
    border-radius: 12px !important;
    padding: 1rem !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* ===== PLACEHOLDERS TOTALMENTE BLANCOS - TODOS LOS NAVEGADORES ===== */
input::placeholder,
textarea::placeholder {
    color: #ffffff !important;
    opacity: 1 !important;
    font-weight: 400 !important;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #ffffff !important;
    opacity: 1 !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #ffffff !important;
    opacity: 1 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #ffffff !important;
    opacity: 1 !important;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* ===== FOCUS STATES ===== */
input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    border-color: #bd93f9 !important;
    box-shadow: 0 0 0 3px rgba(189, 147, 249, 0.2) !important;
    background: #1e1e3f !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* ===== TEXTAREA ESPECÍFICO ===== */
textarea {
    resize: vertical !important;
    min-height: 120px !important;
    font-family: 'Inter', sans-serif !important;
}

/* ===== SELECT Y OPTIONS - SOLUCIÓN ULTRA ESPECÍFICA ===== */
select {
    cursor: pointer !important;
    background: #2d2d5f !important;
    color: #ffffff !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 1rem center !important;
    background-repeat: no-repeat !important;
    background-size: 1.5rem !important;
    padding-right: 3rem !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

/* ===== OPTIONS ULTRA ESPECÍFICAS ===== */
select option {
    background: #1e1e3f !important;
    color: #ffffff !important;
    padding: 15px !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    border: none !important;
    outline: none !important;
}

select option:hover {
    background: #bd93f9 !important;
    color: #0f0f23 !important;
}

select option:checked,
select option:selected {
    background: #50fa7b !important;
    color: #0f0f23 !important;
    font-weight: 600 !important;
}

/* ===== FORZAR EN NAVEGADORES ESPECÍFICOS ===== */

/* Chrome y Safari */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    select option {
        background: #1e1e3f !important;
        color: #ffffff !important;
    }
    
    select option:hover {
        background: #bd93f9 !important;
        color: #0f0f23 !important;
    }
}

/* Firefox */
@-moz-document url-prefix() {
    select option {
        background: #1e1e3f !important;
        color: #ffffff !important;
    }
    
    select option:hover {
        background: #bd93f9 !important;
        color: #0f0f23 !important;
    }
}

/* Edge */
@supports (-ms-ime-align: auto) {
    select option {
        background: #1e1e3f !important;
        color: #ffffff !important;
    }
}

/* ===== MENSAJES DE ERROR ===== */
.form-error {
    color: #ff79c6 !important;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-error.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CHECKBOXES ===== */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
    line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #2d2d5f !important;
    border: 2px solid rgba(189, 147, 249, 0.3) !important;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-container:hover .checkmark {
    border-color: #bd93f9 !important;
    background: rgba(189, 147, 249, 0.1) !important;
}

.checkbox-container input:checked ~ .checkmark {
    background: #bd93f9 !important;
    border-color: #bd93f9 !important;
}

.checkbox-container input:checked ~ .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #0f0f23;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    color: #ffffff !important;
    font-size: 0.9rem !important;
    line-height: 1.5;
}

.form-link {
    color: #50fa7b !important;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.form-link:hover {
    color: #ff79c6 !important;
    text-shadow: 0 0 5px rgba(255, 121, 198, 0.5);
}

/* ===== BOTONES DE ACCIÓN ===== */
.form-actions {
    margin-top: 2rem;
    text-align: center;
}

.submit-btn {
    background: #bd93f9 !important;
    color: #0f0f23 !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 1rem 2rem !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
    margin-bottom: 1.5rem;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
    background: #50fa7b !important;
}

.submit-btn:active {
    transform: translateY(-1px) !important;
}

.submit-btn:disabled {
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.btn-loading {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.alternative-contact {
    margin-top: 1.5rem;
}

.alt-text {
    color: #ffffff !important;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.alt-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.whatsapp-btn,
.phone-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #1DB954 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}

.whatsapp-btn:hover {
    background: #1ed760 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.4);
    color: #ffffff !important;
}

.phone-btn {
    background: rgba(255, 121, 198, 0.2) !important;
    color: #ff79c6 !important;
    border: 2px solid #ff79c6;
}

.phone-btn:hover {
    background: #ff79c6 !important;
    color: #0f0f23 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 121, 198, 0.4);
}

.whatsapp-btn svg,
.phone-btn svg {
    width: 20px;
    height: 20px;
}

/* ===== MENSAJE DE ÉXITO ===== */
.success-message {
    background: rgba(80, 250, 123, 0.1) !important;
    border: 2px solid #50fa7b !important;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.success-icon {
    width: 60px;
    height: 60px;
    color: #50fa7b !important;
}

.success-message h3 {
    color: #50fa7b !important;
    margin: 0;
}

.success-message p {
    color: #ffffff !important;
    margin: 0;
}

.new-form-btn {
    background: transparent !important;
    color: #50fa7b !important;
    border: 2px solid #50fa7b !important;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.new-form-btn:hover {
    background: #50fa7b !important;
    color: #0f0f23 !important;
}

/* ===== INFORMACIÓN DE CONTACTO ===== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card,
.benefits-card {
    background: rgba(45, 45, 95, 0.8) !important;
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(80, 250, 123, 0.2);
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-card:hover,
.benefits-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(80, 250, 123, 0.2);
}

.info-title,
.benefits-title {
    color: #50fa7b !important;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-item,
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(80, 250, 123, 0.05) !important;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover,
.benefit-item:hover {
    background: rgba(80, 250, 123, 0.1) !important;
    transform: translateX(5px);
}

.contact-icon,
.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-content,
.benefit-content {
    flex: 1;
}

.contact-content strong,
.benefit-content strong {
    color: #50fa7b !important;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.contact-content a {
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-content a:hover {
    color: #bd93f9 !important;
    text-shadow: 0 0 5px rgba(189, 147, 249, 0.5);
}

.contact-content span,
.benefit-content p {
    color: #ffffff !important;
    font-size: 0.9rem !important;
    line-height: 1.4;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
    .contact-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-container,
    .info-card,
    .benefits-card {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .form-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .alt-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .whatsapp-btn,
    .phone-btn {
        justify-content: center;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
        margin: 0;
        box-sizing: border-box;
    }
    
    /* Evitar superposición específica */
    .whatsapp-btn {
        margin-bottom: 0.5rem;
    }
    
    .phone-btn {
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .form-container,
    .info-card,
    .benefits-card {
        padding: 1rem;
        border-radius: 20px;
    }
    
    .submit-btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}




/* AJEDREZ News Modal System - Complete CSS */

/* ==========================================================================
   MODAL SYSTEM STYLES
   ========================================================================== */

/* News Cards Enhancement */
.news-card {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(189, 147, 249, 0.3);
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(189, 147, 249, 0.1) 0%, 
        rgba(80, 250, 123, 0.1) 50%, 
        rgba(255, 121, 198, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 1;
}

.news-card:hover::before {
    opacity: 1;
}

.news-card .news-content {
    position: relative;
    z-index: 2;
}

/* Modal Overlay */
.news-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Container */
.news-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    background: linear-gradient(135deg, #1e1e3f 0%, #0f0f23 100%);
    border-radius: 20px;
    border: 2px solid rgba(189, 147, 249, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-modal-overlay.active .news-modal {
    transform: translate(-50%, -50%) scale(1);
}

/* Modal Header */
.modal-header {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e1e3f 0%, #0f0f23 100%);
}

.modal-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Volver a cover para llenar todo el espacio */
    object-position: center center; /* Centrar la imagen */
    transition: transform 0.6s ease;
    display: block;
}

.modal-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px; /* Gradiente sutil en la parte inferior */
    background: linear-gradient(transparent, rgba(15, 15, 35, 0.5)); /* Muy sutil */
    z-index: 2;
    pointer-events: none;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(15, 15, 35, 0.8);
    border: 2px solid var(--accent-purple);
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.modal-close:hover {
    background: var(--accent-purple);
    transform: rotate(90deg);
}

/* Modal Content */
.modal-content {
    padding: 30px;
    color: var(--white);
    overflow-y: auto;
    max-height: calc(90vh - 300px);
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(30, 30, 63, 0.3);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 4px;
}

.modal-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.modal-date {
    color: var(--accent-green);
    font-size: 1.1rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-date::before {
    content: '📅';
    font-size: 1.2rem;
}

.modal-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.modal-text p {
    margin-bottom: 20px;
}

.modal-text h3 {
    color: var(--accent-purple);
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
    position: relative;
    padding-left: 20px;
}

.modal-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-purple), var(--accent-pink));
    border-radius: 2px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(189, 147, 249, 0.1), rgba(80, 250, 123, 0.1));
    border: 1px solid rgba(189, 147, 249, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-purple), var(--accent-green));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    background: rgba(30, 30, 63, 0.5);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(189, 147, 249, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 10px 20px rgba(189, 147, 249, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-green);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    position: relative;
    padding-left: 45px; /* Más espacio para la viñeta */
    color: var(--text-gray);
    transition: color 0.3s ease;
    line-height: 1.6;
    word-wrap: break-word;
}

.feature-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.2rem;
    width: 30px; /* Ancho fijo para la viñeta */
    text-align: center;
}

.feature-list li:hover {
    color: var(--accent-purple);
}

.cta-section {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

.cta-section h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1rem;
}

.cta-button {
    background: var(--whatsapp-green);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px; /* Menos redondeado */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}

.cta-button:hover {
    background: #16a085;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 185, 84, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Gradientes específicos por tipo de noticia - SIN OPACIDAD */
.modal-expansion .modal-header::after {
    display: none; /* Eliminar overlay completamente */
}

.modal-distribuidores .modal-header::after {
    display: none; /* Eliminar overlay completamente */
}

.modal-tendencias .modal-header::after {
    display: none; /* Eliminar overlay completamente */
}

/* Alternativa: Si quieres un sutil borde, usar solo border */
.modal-expansion .modal-header {
    border-bottom: 3px solid rgba(46, 110, 179, 0.5);
}

.modal-distribuidores .modal-header {
    border-bottom: 3px solid rgba(80, 250, 123, 0.5);
}

.modal-tendencias .modal-header {
    border-bottom: 3px solid rgba(255, 121, 198, 0.5);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

/* Animaciones de entrada para las tarjetas */
@keyframes newsCardEntry {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animación del modal de entrada */
@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5) rotateX(20deg);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotateX(0deg);
    }
}

.news-modal-overlay.active .news-modal {
    animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Animaciones de texto */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animación del botón CTA */
@keyframes ctaPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(29, 185, 84, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(29, 185, 84, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(29, 185, 84, 0);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Desktop Grande 2560px+ */
@media (min-width: 2560px) {
    .modal-title {
        font-size: 3.5rem;
    }
    
    .modal-content {
        padding: 50px;
        font-size: 1.3rem;
    }
}

/* Laptop Estándar 1024px - 1439px */
@media (min-width: 1024px) and (max-width: 1439px) {
    .news-modal {
        max-width: 950px;
    }
    
    .modal-content {
        padding: 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Tablet Horizontal 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .news-modal {
        width: 95%;
        max-width: 800px;
        max-height: 90vh;
    }
    
    .modal-header {
        height: 250px;
    }
    
    .modal-header-image {
        object-fit: cover; /* Mantener imagen llenando espacio en tablet */
    }
    
    .modal-title {
        font-size: 2.2rem;
    }
    
    .modal-content {
        padding: 20px;
        max-height: calc(90vh - 250px);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .highlight-box, .cta-section {
        padding: 20px;
    }
}

/* Tablet Vertical y Mobile */
@media (max-width: 767px) {
    .news-modal {
        width: 98%;
        max-height: 95vh;
    }
    
    .modal-header {
        height: 200px;
    }
    
    .modal-header-image {
        object-fit: cover; /* Imagen llenando espacio en móvil */
        background: none; /* Quitar fondo extra */
    }
    
    .modal-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .modal-content {
        padding: 20px;
        max-height: calc(95vh - 200px);
    }
    
    .modal-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Mobile Estándar 375px - 413px */
@media (min-width: 375px) and (max-width: 413px) {
    .modal-title {
        font-size: 1.6rem;
    }
    
    .modal-date {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .modal-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .modal-text h3 {
        font-size: 1.2rem;
        margin: 20px 0 10px 0;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .feature-list li {
        padding: 10px 0;
        font-size: 0.9rem;
        padding-left: 40px; /* Espacio suficiente en mobile */
        line-height: 1.5;
    }
    
    .feature-list li::before {
        top: 10px;
        font-size: 1.1rem;
        width: 25px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
        min-width: 180px;
        gap: 10px;
    }
}

/* Mobile Pequeño 320px - 374px */
@media (max-width: 374px) {
    .news-modal {
        width: 98%;
        max-height: 95vh;
    }
    
    .modal-header {
        height: 180px;
    }
    
    .modal-header-image {
        object-fit: cover; /* Imagen llenando todo el espacio */
        background: none;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 18px;
        top: 15px;
        right: 15px;
    }
    
    .modal-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .modal-date {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .modal-content {
        padding: 12px;
        max-height: calc(95vh - 180px);
    }
    
    .modal-text {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .modal-text h3 {
        font-size: 1.1rem;
        margin: 15px 0 8px 0;
        padding-left: 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .stat-number {
        font-size: 1.6rem;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .highlight-box, .cta-section {
        padding: 12px;
        margin: 15px 0;
    }
    
    .feature-list li {
        padding: 8px 0;
        font-size: 0.85rem;
        padding-left: 35px; /* Suficiente espacio para viñeta */
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .feature-list li::before {
        top: 8px;
        font-size: 1rem;
        width: 20px;
        left: 5px;
    }
    
    .cta-section {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .cta-section h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .cta-section p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
        border-radius: 10px;
        min-width: 160px;
        gap: 8px;
    }
}

/* Ajustes especiales para altura de pantalla */
@media (max-height: 600px) {
    .news-modal {
        max-height: 95vh;
    }
    
    .modal-header {
        height: 150px;
    }
    
    .modal-content {
        max-height: calc(95vh - 150px);
        padding: 15px;
    }
    
    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Optimizaciones para pantallas táctiles */
@media (hover: none) and (pointer: coarse) {
    .news-card:hover {
        transform: none;
    }
    
    .news-card:active {
        transform: scale(0.98);
    }
    
    .modal-close {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .cta-button {
        min-height: 48px; /* Tamaño táctil recomendado */
        min-width: 48px;
        padding: 14px 20px;
    }
    
    .feature-list li {
        padding: 12px 0; /* Más espacio para touch */
        padding-left: 45px;
    }
    
    .feature-list li::before {
        width: 30px;
        text-align: center;
    }
}

/* Reducir animaciones en dispositivos de baja potencia */
@media (prefers-reduced-motion: reduce) {
    .news-card,
    .news-modal,
    .modal-title,
    .modal-date,
    .modal-text,
    .stat-number,
    .feature-list li,
    .highlight-box,
    .cta-button {
        animation: none !important;
        transition: none !important;
    }
    
    .news-modal-overlay.active .news-modal {
        transform: translate(-50%, -50%) scale(1);
    }
}


/* 1. ELIMINAR ROTACIONES EN particleFloat (solo fondo) */
@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); } /* Sin rotación */
    33% { transform: translateY(-10px) rotate(0deg); }    /* Sin rotación */
    66% { transform: translateY(5px) rotate(0deg); }      /* Sin rotación */
}

/* 2. ELIMINAR ROTACIONES EN floatImage (solo imágenes de fondo) */
@keyframes floatImage {
    0%, 100% { transform: translateY(0px) rotate(0deg); } /* Sin rotación */
    33% { transform: translateY(-8px) rotate(0deg); }     /* Sin rotación */
    66% { transform: translateY(4px) rotate(0deg); }      /* Sin rotación */
}

/* 3. ELIMINAR ROTACIONES EN backgroundFloat (solo fondo) */
@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); } /* Sin rotación */
    50% { transform: translateY(-20px) rotate(0deg); }    /* Sin rotación */
}

/* 4. ELIMINAR ROTACIÓN 360 GRADOS EN partículas de fondo */
@media (min-width: 1024px) {
    @keyframes particleFloat {
        0% { transform: translate(0, 0) rotate(0deg); }       /* Sin rotación */
        100% { transform: translate(-50px, -50px) rotate(0deg); } /* Sin rotación */
    }
}

/* 5. MANTENER efectos de círculo y elementos interactivos en MOBILE */
/* NO tocar estas animaciones - son para UX mobile */
@media (max-width: 767px) {
    /* Permitir rotaciones en elementos específicos de mobile */
    .orbital-activator,
    .hex-activator, 
    .morphing-trigger,
    .circle-effect,
    .mobile-circle,
    .spinner,
    .whatsapp-float {
        /* Mantener sus animaciones originales */
        animation: unset !important;
    }
    
    /* Permitir que el spinner mantenga su rotación */
    .spinner {
        animation: spin 1s linear infinite !important;
    }
}

/* 6. ELIMINAR solo efectos de fondo, NO elementos interactivos */
.hero-section::before,
.splash-main-container::before,
.map-card::before {
    animation: none !important; /* Solo elementos de fondo */
}



/* ===================================================================
   📱 FIX FORMULARIO CENTRADO MOBILE - COMERCIALIZADORA HG S.A.S
   Soluciona el problema de descentrado del formulario en mobile
   =================================================================== */

/* ===== FORMULARIO MOBILE - CENTRADO PERFECTO ===== */
@media (max-width: 767px) {
    
    /* SECCIÓN PRINCIPAL DEL CONTACTO */
    .contact-section {
        padding: 2rem 0 !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* CONTENEDOR PRINCIPAL */
    .contact-main {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
    }
    
    /* CONTENEDOR DEL FORMULARIO - CENTRADO PERFECTO */
    .form-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 1.5rem !important;
        
        /* CENTRADO HORIZONTAL */
        margin-left: auto !important;
        margin-right: auto !important;
        
        /* ELIMINAR CUALQUIER TRANSFORM QUE LO DESCENTRE */
        transform: none !important;
        left: auto !important;
        right: auto !important;
        
        /* BACKGROUND Y ESTILO */
        background: rgba(45, 45, 95, 0.95) !important;
        border-radius: 20px !important;
        border: 1px solid rgba(189, 147, 249, 0.3) !important;
        
        /* BOX SIZING PARA INCLUIR PADDING */
        box-sizing: border-box !important;
    }
    
    /* HEADER DEL FORMULARIO */
    .form-header {
        text-align: center !important;
        margin-bottom: 1.5rem !important;
        padding: 0 !important;
    }
    
    .form-title {
        font-size: 1.4rem !important;
        color: #bd93f9 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .form-subtitle {
        font-size: 0.9rem !important;
        color: #ffffff !important;
        line-height: 1.4 !important;
    }
    
    /* SECCIONES DEL FORMULARIO */
    .form-section {
        width: 100% !important;
        margin-bottom: 1.5rem !important;
        padding: 1rem !important;
        background: rgba(30, 30, 63, 0.7) !important;
        border-radius: 15px !important;
        border: 1px solid rgba(189, 147, 249, 0.2) !important;
        box-sizing: border-box !important;
    }
    
    /* TÍTULO DE SECCIÓN */
    .section-title-form {
        color: #50fa7b !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }
    
    /* FILAS DEL FORMULARIO - UNA COLUMNA EN MOBILE */
    .form-row {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 1rem !important;
        margin-bottom: 1rem !important;
        width: 100% !important;
    }
    
    /* GRUPOS DE FORMULARIO */
    .form-group {
        width: 100% !important;
        margin-bottom: 1rem !important;
        box-sizing: border-box !important;
    }
    
    /* LABELS */
    .form-label {
        color: #ffffff !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
        display: block !important;
        text-align: left !important;
    }
    
    /* INPUTS - CENTRADOS Y CON BUEN TAMAÑO */
    input[type="text"],
    input[type="email"], 
    input[type="tel"],
    select,
    textarea {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 16px !important;
        font-size: 16px !important; /* Evita zoom en iOS */
        min-height: 48px !important; /* Touch target */
        
        /* ESTILO VISUAL */
        background: #2d2d5f !important;
        border: 2px solid rgba(189, 147, 249, 0.3) !important;
        border-radius: 10px !important;
        color: #ffffff !important;
        
        /* BOX MODEL */
        box-sizing: border-box !important;
        margin: 0 !important;
        
        /* CENTRADO */
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        
        /* TRANSICIÓN */
        transition: all 0.3s ease !important;
    }
    
    /* TEXTAREA ESPECÍFICO */
    textarea {
        min-height: 100px !important;
        resize: vertical !important;
        font-family: inherit !important;
        line-height: 1.4 !important;
    }
    
    /* FOCUS STATES */
    input:focus,
    select:focus,
    textarea:focus {
        outline: none !important;
        border-color: #bd93f9 !important;
        box-shadow: 0 0 0 3px rgba(189, 147, 249, 0.2) !important;
        background: #363672 !important;
    }
    
    /* PLACEHOLDERS */
    input::placeholder,
    textarea::placeholder {
        color: rgba(255, 255, 255, 0.6) !important;
        font-size: 14px !important;
    }
    
    /* ACCIONES DEL FORMULARIO */
    .form-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        margin-top: 1.5rem !important;
        width: 100% !important;
    }
    
    /* BOTÓN PRINCIPAL */
    .form-submit,
    .new-form-btn,
    .btn-primary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 14px 20px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        min-height: 50px !important;
        
        /* ESTILO */
        background: linear-gradient(135deg, #bd93f9, #ff79c6) !important;
        border: none !important;
        border-radius: 12px !important;
        color: #ffffff !important;
        
        /* CENTRADO */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
        
        /* EFECTOS */
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 15px rgba(189, 147, 249, 0.3) !important;
    }
    
    .form-submit:hover,
    .new-form-btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(189, 147, 249, 0.4) !important;
    }
    
    /* BOTONES ALTERNATIVOS */
    .alt-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        margin-top: 1rem !important;
        width: 100% !important;
    }
    
    .whatsapp-btn,
    .phone-btn {
        width: 100% !important;
        padding: 12px 16px !important;
        font-size: 0.9rem !important;
        min-height: 48px !important;
        
        /* CENTRADO */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        
        /* ESTILO */
        background: rgba(30, 30, 63, 0.8) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 10px !important;
        color: #ffffff !important;
        text-decoration: none !important;
        
        /* EFECTOS */
        transition: all 0.3s ease !important;
    }
    
    .whatsapp-btn {
        background: rgba(29, 185, 84, 0.2) !important;
        border-color: rgba(29, 185, 84, 0.4) !important;
    }
    
    .whatsapp-btn:hover {
        background: rgba(29, 185, 84, 0.3) !important;
        transform: translateY(-1px) !important;
    }
    
    /* INFORMACIÓN DE CONTACTO - TAMBIÉN CENTRADA */
    .contact-info {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .info-card,
    .benefits-card {
        width: 100% !important;
        margin: 0 auto 1.5rem auto !important;
        padding: 1.5rem !important;
        background: rgba(45, 45, 95, 0.8) !important;
        border-radius: 20px !important;
        border: 1px solid rgba(80, 250, 123, 0.2) !important;
        box-sizing: border-box !important;
    }
    
    /* TÍTULO DE INFO */
    .info-title,
    .benefits-title {
        color: #50fa7b !important;
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
    }
    
    /* ITEMS DE CONTACTO */
    .contact-item,
    .benefit-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        margin-bottom: 1rem !important;
        padding: 1rem !important;
        background: rgba(80, 250, 123, 0.05) !important;
        border-radius: 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* ICONOS */
    .contact-icon,
    .benefit-icon {
        font-size: 1.2rem !important;
        flex-shrink: 0 !important;
        color: #50fa7b !important;
    }
    
    /* CONTENIDO */
    .contact-content,
    .benefit-content {
        flex: 1 !important;
        color: #ffffff !important;
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
    
    .contact-content strong,
    .benefit-content strong {
        color: #50fa7b !important;
        display: block !important;
        margin-bottom: 0.25rem !important;
        font-size: 0.85rem !important;
    }
    
    /* LINKS EN CONTACTO */
    .contact-content a {
        color: #ffffff !important;
        text-decoration: none !important;
        transition: color 0.3s ease !important;
    }
    
    .contact-content a:hover {
        color: #bd93f9 !important;
    }
}

/* ===== MOBILE LANDSCAPE (480px - 767px) ===== */
@media (min-width: 480px) and (max-width: 767px) {
    .form-container {
        max-width: 450px !important;
        margin: 0 auto !important;
    }
    
    .form-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }
}

/* ===== MOBILE EXTRA PEQUEÑO (320px - 479px) ===== */
@media (max-width: 479px) {
    .contact-main {
        padding: 0 12px !important;
    }
    
    .form-container {
        padding: 1.25rem !important;
        border-radius: 15px !important;
    }
    
    .form-section {
        padding: 0.75rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    input[type="text"],
    input[type="email"], 
    input[type="tel"],
    select,
    textarea {
        padding: 10px 12px !important;
        font-size: 16px !important;
    }
}

/* ===== PREVENIR ZOOM EN IOS ===== */
@supports (-webkit-overflow-scrolling: touch) {
    input[type="text"],
    input[type="email"], 
    input[type="tel"],
    select,
    textarea {
        font-size: 16px !important;
        -webkit-appearance: none !important;
        -webkit-border-radius: 0 !important;
        border-radius: 10px !important;
    }
}

/* ===== OPTIMIZACIONES TÁCTILES ===== */
@media (max-width: 767px) {
    * {
        -webkit-tap-highlight-color: transparent !important;
    }
    
    input,
    button,
    select,
    textarea {
        -webkit-tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        user-select: none !important;
    }
    
    input:focus,
    textarea:focus {
        -webkit-user-select: text !important;
        user-select: text !important;
    }
}


/* ===================================================================
   📞 INFORMACIÓN DE CONTACTO PROFESIONAL - BIEN DISEÑADA
   Elimina el diseño horrible y crea algo que se vea bien
   =================================================================== */

/* ===== RESETEAR INFORMACIÓN DE CONTACTO COMPLETAMENTE ===== */
@media (min-width: 1024px) {
    
    /* CONTENEDOR PRINCIPAL */
    .contact-info {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    /* TARJETA DE INFORMACIÓN PRINCIPAL */
    .info-card {
        background: linear-gradient(135deg, rgba(45, 45, 95, 0.9), rgba(30, 30, 63, 0.8)) !important;
        border: 1px solid rgba(80, 250, 123, 0.3) !important;
        border-radius: 20px !important;
        padding: 2rem !important;
        backdrop-filter: blur(15px) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* TÍTULO PRINCIPAL */
    .info-title {
        color: #50fa7b !important;
        font-size: 1.4rem !important;
        font-weight: 700 !important;
        text-align: center !important;
        margin-bottom: 2rem !important;
        letter-spacing: 0.5px !important;
        text-transform: uppercase !important;
    }
    
    /* CADA ITEM DE CONTACTO - DISEÑO LIMPIO */
    .contact-item {
        display: flex !important;
        align-items: center !important;
        gap: 1.5rem !important;
        padding: 1.5rem 1.2rem !important;
        margin-bottom: 1.2rem !important;
        background: rgba(15, 15, 35, 0.4) !important;
        border: 1px solid rgba(189, 147, 249, 0.2) !important;
        border-radius: 15px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .contact-item::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 4px !important;
        height: 100% !important;
        background: linear-gradient(to bottom, #50fa7b, #bd93f9) !important;
        transition: width 0.3s ease !important;
    }
    
    .contact-item:hover {
        background: rgba(189, 147, 249, 0.1) !important;
        border-color: rgba(189, 147, 249, 0.4) !important;
        transform: translateX(8px) translateY(-2px) !important;
        box-shadow: 0 5px 15px rgba(189, 147, 249, 0.2) !important;
    }
    
    .contact-item:hover::before {
        width: 6px !important;
    }
    
    /* ICONOS - PROFESIONALES Y SERIOS */
    .contact-icon {
        width: 45px !important;
        height: 45px !important;
        background: rgba(45, 45, 95, 0.8) !important;
        border: 2px solid rgba(80, 250, 123, 0.4) !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.2rem !important;
        color: #50fa7b !important;
        flex-shrink: 0 !important;
        transition: all 0.3s ease !important;
    }
    
    .contact-item:hover .contact-icon {
        background: rgba(80, 250, 123, 0.1) !important;
        border-color: rgba(80, 250, 123, 0.6) !important;
        color: #ffffff !important;
    }
    
    /* CONTENIDO - BIEN ORGANIZADO */
    .contact-content {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.3rem !important;
    }
    
    /* ETIQUETAS - MÁS PEQUEÑAS Y ELEGANTES */
    .contact-content strong {
        color: #50fa7b !important;
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        margin-bottom: 0.2rem !important;
        opacity: 0.9 !important;
    }
    
    /* INFORMACIÓN PRINCIPAL - MÁS GRANDE Y CLARA */
    .contact-content a,
    .contact-content span {
        color: #ffffff !important;
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        line-height: 1.3 !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        word-break: break-word !important;
    }
    
    /* TELÉFONO - SIN SALTOS DE LÍNEA */
    .contact-content a[href^="tel:"] {
        font-family: 'Inter', sans-serif !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        color: #ffffff !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .contact-content a[href^="tel:"]:hover {
        color: #50fa7b !important;
        text-shadow: 0 0 5px rgba(80, 250, 123, 0.4) !important;
    }
    
    /* EMAIL - SIN SALTOS DE LÍNEA */
    .contact-content a[href^="mailto:"] {
        font-family: 'Inter', sans-serif !important;
        font-size: 0.95rem !important;
        color: #ffffff !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .contact-content a[href^="mailto:"]:hover {
        color: #bd93f9 !important;
        text-shadow: 0 0 5px rgba(189, 147, 249, 0.4) !important;
    }
    
    /* UBICACIÓN Y HORARIOS - TEXTO NORMAL */
    .contact-content span {
        font-family: 'Inter', sans-serif !important;
        font-size: 1rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    /* ITEM ESPECÍFICO PARA HORARIOS */
    .contact-item:last-child .contact-content span {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
    
    /* ÚLTIMO ITEM SIN MARGIN BOTTOM */
    .contact-item:last-child {
        margin-bottom: 0 !important;
    }
}

/* ===== TARJETA DE BENEFICIOS - TAMBIÉN MEJORADA ===== */
@media (min-width: 1024px) {
    
    .benefits-card {
        background: linear-gradient(135deg, rgba(30, 30, 63, 0.9), rgba(45, 45, 95, 0.8)) !important;
        border: 1px solid rgba(255, 121, 198, 0.3) !important;
        border-radius: 20px !important;
        padding: 2rem !important;
        backdrop-filter: blur(15px) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    }
    
    .benefits-title {
        color: #ff79c6 !important;
        font-size: 1.3rem !important;
        font-weight: 700 !important;
        text-align: center !important;
        margin-bottom: 1.5rem !important;
        letter-spacing: 0.5px !important;
        text-transform: uppercase !important;
    }
    
    .benefit-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        padding: 1rem !important;
        margin-bottom: 1rem !important;
        background: rgba(255, 121, 198, 0.05) !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255, 121, 198, 0.1) !important;
        transition: all 0.3s ease !important;
    }
    
    .benefit-item:hover {
        background: rgba(255, 121, 198, 0.1) !important;
        border-color: rgba(255, 121, 198, 0.3) !important;
        transform: translateX(5px) !important;
    }
    
    .benefit-icon {
        width: 32px !important;
        height: 32px !important;
        background: rgba(30, 30, 63, 0.8) !important;
        border: 1px solid rgba(255, 121, 198, 0.4) !important;
        border-radius: 6px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1rem !important;
        color: #ff79c6 !important;
        flex-shrink: 0 !important;
        margin-top: 0.2rem !important;
    }
    
    .benefit-content {
        flex: 1 !important;
    }
    
    .benefit-content strong {
        color: #ff79c6 !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 0.3rem !important;
        display: block !important;
    }
    
    .benefit-content p {
        color: rgba(255, 255, 255, 0.85) !important;
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin: 0 !important;
    }
}

/* ===== LAPTOP MEDIANO (1024px - 1199px) ===== */
@media (min-width: 1024px) and (max-width: 1199px) {
    
    .info-card,
    .benefits-card {
        padding: 1.8rem !important;
    }
    
    .contact-item {
        padding: 1.2rem 1rem !important;
        gap: 1.2rem !important;
    }
    
    .contact-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }
    
    .contact-content a[href^="tel:"] {
        font-size: 1.1rem !important;
    }
    
    .contact-content a[href^="mailto:"] {
        font-size: 0.9rem !important;
    }
}

/* ===== DESKTOP GRANDE (1200px+) ===== */
@media (min-width: 1200px) {
    
    .contact-item {
        padding: 1.8rem 1.5rem !important;
        gap: 1.8rem !important;
    }
    
    .contact-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.3rem !important;
    }
    
    .contact-content a[href^="tel:"] {
        font-size: 1.3rem !important;
    }
    
    .contact-content a[href^="mailto:"] {
        font-size: 1rem !important;
    }
    
    .contact-content a,
    .contact-content span {
        font-size: 1.1rem !important;
    }
}

/* ===== EFECTOS ADICIONALES ===== */
@media (min-width: 1024px) {
    
    /* GLOW EFFECT AL HOVER DE TODA LA TARJETA */
    .info-card:hover {
        box-shadow: 0 12px 30px rgba(80, 250, 123, 0.2) !important;
        border-color: rgba(80, 250, 123, 0.5) !important;
    }
    
    .benefits-card:hover {
        box-shadow: 0 12px 30px rgba(255, 121, 198, 0.2) !important;
        border-color: rgba(255, 121, 198, 0.5) !important;
    }
    
    /* ANIMACIÓN SUTIL EN LOS ICONOS - MÁS PROFESIONAL */
    .contact-item:hover .contact-icon {
        transform: translateY(-1px) !important;
    }
    
    /* CURSOR POINTER EN ELEMENTOS CLICKEABLES */
    .contact-content a {
        cursor: pointer !important;
    }
}

/* ===== MOBILE - INFORMACIÓN DE CONTACTO PROFESIONAL ===== */
@media (max-width: 767px) {
    
    /* CONTENEDOR MOBILE */
    .contact-info {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* TARJETA DE INFORMACIÓN MOBILE */
    .info-card {
        background: linear-gradient(135deg, rgba(45, 45, 95, 0.9), rgba(30, 30, 63, 0.8)) !important;
        border: 1px solid rgba(80, 250, 123, 0.3) !important;
        border-radius: 20px !important;
        padding: 1.5rem !important;
        backdrop-filter: blur(15px) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* TÍTULO MOBILE */
    .info-title {
        color: #50fa7b !important;
        font-size: 1.2rem !important;
        font-weight: 700 !important;
        text-align: center !important;
        margin-bottom: 1.5rem !important;
        letter-spacing: 0.5px !important;
        text-transform: uppercase !important;
    }
    
    /* ITEMS DE CONTACTO MOBILE */
    .contact-item {
        display: flex !important;
        align-items: center !important;
        gap: 1rem !important;
        padding: 1.2rem 1rem !important;
        margin-bottom: 1rem !important;
        background: rgba(15, 15, 35, 0.4) !important;
        border: 1px solid rgba(189, 147, 249, 0.2) !important;
        border-radius: 12px !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        overflow: hidden !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contact-item::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 3px !important;
        height: 100% !important;
        background: linear-gradient(to bottom, #50fa7b, #bd93f9) !important;
    }
    
    .contact-item:active {
        background: rgba(189, 147, 249, 0.1) !important;
        border-color: rgba(189, 147, 249, 0.4) !important;
        transform: scale(0.98) !important;
    }
    
    /* ICONOS MOBILE - PROFESIONALES */
    .contact-icon {
        width: 40px !important;
        height: 40px !important;
        background: rgba(45, 45, 95, 0.8) !important;
        border: 2px solid rgba(80, 250, 123, 0.4) !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.1rem !important;
        color: #50fa7b !important;
        flex-shrink: 0 !important;
        transition: all 0.3s ease !important;
    }
    
    /* CONTENIDO MOBILE */
    .contact-content {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.2rem !important;
        min-width: 0 !important;
        width: 100% !important;
    }
    
    /* ETIQUETAS MOBILE */
    .contact-content strong {
        color: #50fa7b !important;
        font-size: 0.75rem !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.8px !important;
        margin-bottom: 0.1rem !important;
        opacity: 0.9 !important;
    }
    
    /* TELÉFONO MOBILE - SIN SALTOS */
    .contact-content a[href^="tel:"] {
        font-family: 'Inter', sans-serif !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #ffffff !important;
        letter-spacing: 0.3px !important;
        text-decoration: none !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
        width: 100% !important;
        max-width: calc(100vw - 140px) !important;
    }
    
    .contact-content a[href^="tel:"]:active {
        color: #50fa7b !important;
    }
    
    /* EMAIL MOBILE - SIN SALTOS */
    .contact-content a[href^="mailto:"] {
        font-family: 'Inter', sans-serif !important;
        font-size: 0.9rem !important;
        color: #ffffff !important;
        text-decoration: none !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
        width: 100% !important;
        max-width: calc(100vw - 140px) !important;
    }
    
    .contact-content a[href^="mailto:"]:active {
        color: #bd93f9 !important;
    }
    
    /* UBICACIÓN Y HORARIOS MOBILE */
    .contact-content span {
        font-family: 'Inter', sans-serif !important;
        font-size: 0.9rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
        line-height: 1.3 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    /* ÚLTIMO ITEM SIN MARGIN */
    .contact-item:last-child {
        margin-bottom: 0 !important;
    }
    
    /* TARJETA DE BENEFICIOS MOBILE */
    .benefits-card {
        background: linear-gradient(135deg, rgba(30, 30, 63, 0.9), rgba(45, 45, 95, 0.8)) !important;
        border: 1px solid rgba(255, 121, 198, 0.3) !important;
        border-radius: 20px !important;
        padding: 1.5rem !important;
        backdrop-filter: blur(15px) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .benefits-title {
        color: #ff79c6 !important;
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        text-align: center !important;
        margin-bottom: 1.2rem !important;
        letter-spacing: 0.5px !important;
        text-transform: uppercase !important;
    }
    
    .benefit-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 0.8rem !important;
        padding: 1rem !important;
        margin-bottom: 1rem !important;
        background: rgba(255, 121, 198, 0.05) !important;
        border-radius: 10px !important;
        border: 1px solid rgba(255, 121, 198, 0.1) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .benefit-icon {
        width: 30px !important;
        height: 30px !important;
        background: rgba(30, 30, 63, 0.8) !important;
        border: 1px solid rgba(255, 121, 198, 0.4) !important;
        border-radius: 6px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.9rem !important;
        color: #ff79c6 !important;
        flex-shrink: 0 !important;
        margin-top: 0.1rem !important;
    }
    
    .benefit-content {
        flex: 1 !important;
        min-width: 0 !important;
    }
    
    .benefit-content strong {
        color: #ff79c6 !important;
        font-size: 0.75rem !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 0.2rem !important;
        display: block !important;
    }
    
    .benefit-content p {
        color: rgba(255, 255, 255, 0.85) !important;
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin: 0 !important;
    }
}

/* ===== MOBILE PEQUEÑO (320px - 479px) ===== */
@media (max-width: 479px) {
    
    .info-card,
    .benefits-card {
        padding: 1.2rem !important;
        border-radius: 15px !important;
    }
    
    .contact-item {
        padding: 1rem 0.8rem !important;
        gap: 0.8rem !important;
    }
    
    .contact-icon {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }
    
    .contact-content a[href^="tel:"] {
        font-size: 0.95rem !important;
        max-width: calc(100vw - 120px) !important;
    }
    
    .contact-content a[href^="mailto:"] {
        font-size: 0.85rem !important;
        max-width: calc(100vw - 120px) !important;
    }
    
    .benefit-item {
        padding: 0.8rem !important;
        gap: 0.7rem !important;
    }
    
    .benefit-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.85rem !important;
    }
}





/* CSS ESPECÍFICO SOLO PARA PORTÁTIL - SELECTORES PRECISOS */

@media (min-width: 1200px) and (max-width: 1400px) {
    
    /* Simular zoom 80% que funciona bien */
    html {
        zoom: 0.8 !important;
    }
    
    /* Grid de 2 columnas perfecto */
    .products-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
        max-width: 1000px !important;
        margin: 0 auto !important;
        padding: 2rem 1rem !important;
    }
    
    /* Cards con más altura para los botones */
    .product-card {
        padding: 2rem !important;
        min-height: 550px !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: visible !important;
        position: relative !important;
    }
    
    /* Container de preview */
    .product-preview {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        position: relative !important;
    }
    
    /* Imágenes grandes y bien centradas */
    .product-image {
        height: 280px !important;
        width: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Info del producto */
    .product-info-preview {
        flex-grow: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        margin-bottom: 2rem !important;
    }
    
    /* Nombres de productos */
    .product-name {
        font-size: 1.3rem !important;
        margin-bottom: 0.8rem !important;
        font-weight: 700 !important;
        color: #bd93f9 !important;
    }
    
    /* Descripciones */
    .product-description-short {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
        flex-grow: 1 !important;
        color: #ccc !important;
        line-height: 1.6 !important;
    }
    
    /* Especificaciones */
    .product-specs {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
        color: #bd93f9 !important;
        background: rgba(189, 147, 249, 0.1) !important;
        padding: 0.5rem !important;
        border-radius: 8px !important;
        text-align: center !important;
    }
    
    /* SOLO BOTONES "VER DETALLES" - SELECTORES ESPECÍFICOS */
    .product-open-catalog {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        min-height: 50px !important;
        border-radius: 25px !important;
        width: 100% !important;
        background: linear-gradient(45deg, #bd93f9, #ff79c6) !important;
        color: white !important;
        border: none !important;
        margin-top: auto !important;
        margin-bottom: 0 !important;
        cursor: pointer !important;
        text-align: center !important;
        font-weight: 600 !important;
        z-index: 10 !important;
        position: relative !important;
        transform: none !important;
        box-sizing: border-box !important;
    }
    
    /* RESTAURAR ESTILOS DEL BOTÓN CERRAR */
    .catalog-close {
        position: absolute !important;
        top: 20px !important;
        right: 30px !important;
        font-size: 40px !important;
        font-weight: bold !important;
        color: #aaa !important;
        cursor: pointer !important;
        background: none !important;
        border: none !important;
        padding: 0 !important;
        width: auto !important;
        height: auto !important;
        line-height: 1 !important;
        z-index: 1000 !important;
    }
    
    .catalog-close:hover,
    .catalog-close:focus {
        color: #fff !important;
        text-decoration: none !important;
    }
}


@media (max-width: 767px) {
    .catalog-modal[data-product="rosado"] .catalog-section,
    .catalog-modal:has(.product-title:contains("ROSADO")) .catalog-section,
    .rosado-catalog .catalog-section {
        padding: 65px !important;
        min-height: 60px !important;
    }
}

/* Padding específico para catálogo de CEREZA */
@media (max-width: 767px) {
    .catalog-modal[data-product="cereza"] .catalog-section,
    .catalog-modal:has(.product-title:contains("CEREZA")) .catalog-section,
    .cereza-catalog .catalog-section {
        padding: 65px !important;
        min-height: 60px !important;
    }
}

/* Si no funcionan los selectores de arriba, usar clases dinámicas */
@media (max-width: 767px) {
    .catalog-modal.rosado-active .catalog-section,
    .catalog-modal.cereza-active .catalog-section {
        padding: 65px !important;
        min-height: 60px !important;
    }
}



/* ===================================================================
   🖼️ FIX PARA IMÁGENES HERO - RESTAURAR ORIGINAL
   🎯 Quitar el puto recuadro y scroll que se agregó por error
   =================================================================== */

/* RESETEAR IMÁGENES PRINCIPALES - COMO ESTABAN ANTES */
.hero-image img,
.hero-main-image,
.products-section img,
.product-card img,
.product-image img {
    /* QUITAR toda la mierda que agregué */
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    border: none !important;
    background: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    display: block !important;
    
    /* Propiedades normales de imagen */
    width: 100% !important;
    object-fit: cover !important;
    border-radius: 8px !important;
}

/* QUITAR RECUADROS RAROS */
.hero-image,
.product-image {
    overflow: visible !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    height: auto !important;
    max-height: none !important;
}

/* BOTONES DE DETALLES - RESTAURAR */
.catalog-btn,
.product-actions .catalog-btn,
.btn-catalog {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
    pointer-events: auto !important;
    
    /* Estilos del botón */
    background: linear-gradient(135deg, #bd93f9, #ff79c6) !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    color: white !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
}

.catalog-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(189, 147, 249, 0.4) !important;
}

/* PRODUCT CARDS - RESTAURAR LAYOUT ORIGINAL */
.product-card {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    background: rgba(30, 30, 63, 0.3) !important;
    border-radius: 15px !important;
    padding: 20px !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(189, 147, 249, 0.2) !important;
}

.product-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(189, 147, 249, 0.3) !important;
    border-color: #bd93f9 !important;
}

/* GRID DE PRODUCTOS - NORMAL */
.productos-grid,
.products-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 30px !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

/* RESPONSIVE NORMAL */
@media (max-width: 768px) {
    .productos-grid,
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .product-card {
        margin-bottom: 0 !important;
    }
}

/* SECTION PRODUCTS - SIN SCROLL INTERNO PERO SIN JODER IMÁGENES */
.products-section {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    padding: 80px 0 !important;
}

.products-section .container {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

/* HERO SECTION - RESTAURAR */
.hero {
    overflow: visible !important;
    height: auto !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
}

.hero-content {
    display: flex !important;
    align-items: center !important;
    gap: 50px !important;
    width: 100% !important;
}

.hero-image {
    flex: 1 !important;
    text-align: center !important;
}

.hero-text {
    flex: 1 !important;
}

/* RESPONSIVE HERO */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
    }
    
    .hero-image {
        order: 1 !important;
    }
    
    .hero-text {
        order: 2 !important;
    }
}


/* ===================================================================
   📱 PADDING ESPECÍFICO SOLO PARA ROSADO Y CEREZA
   🎯 Aplicar padding: 65px solo en estos dos catálogos
   =================================================================== */

/* Padding específico para catálogo de ROSADO */
@media (max-width: 767px) {
    .catalog-modal[data-product="rosado"] .catalog-section,
    .catalog-modal:has(.product-title:contains("ROSADO")) .catalog-section,
    .rosado-catalog .catalog-section {
        padding: 65px !important;
        min-height: 60px !important;
    }
}

/* Padding específico para catálogo de CEREZA */
@media (max-width: 767px) {
    .catalog-modal[data-product="cereza"] .catalog-section,
    .catalog-modal:has(.product-title:contains("CEREZA")) .catalog-section,
    .cereza-catalog .catalog-section {
        padding: 65px !important;
        min-height: 60px !important;
    }
}

/* Si no funcionan los selectores de arriba, usar clases dinámicas */
@media (max-width: 767px) {
    .catalog-modal.rosado-active .catalog-section,
    .catalog-modal.cereza-active .catalog-section {
        padding: 65px !important;
        min-height: 60px !important;
    }
}

/* Mantener padding normal para otros productos */
@media (max-width: 767px) {
    .catalog-modal[data-product="blanco"] .catalog-section,
    .catalog-modal[data-product="manzana"] .catalog-section,
    .catalog-modal[data-product="uva"] .catalog-section {
        padding: 30px !important; /* Padding normal */
        min-height: auto !important;
    }
}


/* ===== SELECTOR ESPECÍFICO PARA CATÁLOGO DE BLANCO =====*/
.catalog-modal[data-product="blanco"] .product-title,
.catalog-modal.blanco-active .product-title,
.product-catalog[id="catalog-blanco"] h3,
.catalog-modal:has(.product-title:contains("BLANCO")) .product-title,
.catalog-modal:has(.product-title:contains("Champaña Blanco")) .product-title {
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    font-variant: normal !important;
    text-transform: none !important;
    white-space: normal !important;
    font-stretch: normal !important;
}

/* ===== CSS ESPECÍFICO PARA EL HTML ESTÁTICO DE BLANCO =====*/
#catalog-blanco h3,
#catalog-blanco .catalog-details h3,
.product-catalog#catalog-blanco h3 {
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    font-variant: normal !important;
    text-transform: none !important;
    white-space: normal !important;
}

/* ===== SI EL CATÁLOGO DINÁMICO TIENE CLASE ESPECÍFICA =====*/
.catalog-modal.blanco-active h2,
.catalog-modal.blanco-active h3,
.catalog-modal.blanco-active .product-name,
.catalog-modal.blanco-active .catalog-title {
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    font-variant: normal !important;
    white-space: normal !important;
}

/* ===== FORZAR ESPACIADO NORMAL PARA CUALQUIER ELEMENTO CON "BLANCO" =====*/
*[class*="blanco"] .product-title,
*[class*="blanco"] h2,
*[class*="blanco"] h3,
*[id*="blanco"] h3,
*[data-product="blanco"] .product-title {
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    font-variant: normal !important;
}

/* ===== SELECTOR MÁS ESPECÍFICO SI NADA FUNCIONA =====*/
body .catalog-modal[data-product="blanco"] .product-title,
body .catalog-modal.blanco-active .product-title,
body #catalog-blanco h3,
body .product-catalog#catalog-blanco .catalog-details h3 {
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    font-variant: normal !important;
    text-transform: none !important;
    white-space: normal !important;
    font-stretch: normal !important;
    text-decoration: none !important;
}

/* ===== SELECTORES CON :contains() SI EL NAVEGADOR LO SOPORTA =====*/
.catalog-modal .product-title:contains("BLANCO"),
.catalog-modal .product-title:contains("Blanco"),
.catalog-modal .product-title:contains("CHAMPAÑA BLANCO"),
h3:contains("AJEDREZ Blanco") {
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    font-variant: normal !important;
}


@media (min-width: 1024px) {
    
    /* ===== TÍTULO PRINCIPAL - FORZAR MARGIN PEQUEÑO ===== */
    .hero-title {
        font-size: clamp(3.2rem, 4vw, 4.2rem) !important;
        line-height: 0.9 !important;
        margin: 0 0 8px 0 !important; /* ✅ FORZAR MARGIN PEQUEÑO */
        margin-top: 0 !important;
        margin-bottom: 8px !important;
        text-align: left !important;
        padding: 0 !important;
        background: var(--gradient-accent) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }

    /* ===== SUBTÍTULO DEL TÍTULO - FORZAR PEGADO ===== */
    .title-subtitle {
        display: block !important;
        font-size: clamp(1.1rem, 1.8vw, 1.3rem) !important;
        color: var(--accent-green) !important;
        margin: 0 0 15px 0 !important; /* ✅ FORZAR MARGIN PEQUEÑO */
        margin-top: 0 !important;
        margin-bottom: 15px !important;
        text-align: left !important;
        line-height: 1.1 !important;
        padding: 0 !important;
    }

    /* ===== SUBTÍTULO PRINCIPAL - FORZAR PEGADO ===== */
    .hero-subtitle {
        font-size: clamp(1.4rem, 2vw, 1.7rem) !important;
        color: var(--accent-pink) !important;
        margin: 0 0 12px 0 !important; /* ✅ FORZAR MARGIN PEQUEÑO */
        margin-top: 0 !important;
        margin-bottom: 12px !important;
        text-align: left !important;
        line-height: 1.2 !important;
        padding: 0 !important;
    }

    /* ===== DESCRIPCIÓN - FORZAR PEGADA ===== */
    .hero-description {
        font-size: 1.1rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
        line-height: 1.4 !important;
        margin: 0 0 18px 0 !important; /* ✅ FORZAR MARGIN PEQUEÑO */
        margin-top: 0 !important;
        margin-bottom: 18px !important;
        max-width: 520px !important;
        text-align: left !important;
        padding: 0 !important;
    }

    /* ===== BOTÓN CTA - FORZAR PEGADO ===== */
    .hero-cta {
        margin: 0 !important; /* ✅ FORZAR SIN MARGIN */
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        text-align: left !important;
        padding: 0 !important;
    }

    /* ===== CONTENEDOR HERO - FORZAR SIN GAPS EXTRAS ===== */
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        text-align: left !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 0 !important; /* ✅ SIN GAP */
    }

    /* ===== ELIMINAR CUALQUIER SPACING EXTRA DE H1, H2, P ===== */
    .hero-content h1,
    .hero-content h2,
    .hero-content h3,
    .hero-content p,
    .hero-content div {
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    /* ===== FORZAR QUE LOS ELEMENTOS ESPECÍFICOS TENGAN MARGIN MÍNIMO ===== */
    .hero-content .hero-title {
        margin-bottom: 8px !important;
    }

    .hero-content .title-subtitle {
        margin-bottom: 15px !important;
    }

    .hero-content .hero-subtitle {
        margin-bottom: 12px !important;
    }

    .hero-content .hero-description {
        margin-bottom: 18px !important;
    }

    .hero-content .hero-cta {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

/* ===== DESKTOP GRANDE - FORZAR MISMO CONCEPTO ===== */
@media (min-width: 1400px) {
    .hero-title {
        margin: 0 0 10px 0 !important;
        margin-bottom: 10px !important;
    }

    .title-subtitle {
        margin: 0 0 18px 0 !important;
        margin-bottom: 18px !important;
    }

    .hero-subtitle {
        margin: 0 0 15px 0 !important;
        margin-bottom: 15px !important;
    }

    .hero-description {
        margin: 0 0 20px 0 !important;
        margin-bottom: 20px !important;
    }
}

/* ===== ANULAR CUALQUIER CSS DE OTRO ARCHIVO QUE ESTÉ JODIENDO ===== */
@media (min-width: 1024px) {
    
    /* Si hay clases específicas que están metiendo spacing */
    .section-title,
    .page-title,
    .main-title {
        margin-bottom: 8px !important;
    }

    /* Si hay CSS de tipografía general que está jodiendo */
    h1, h2, h3, h4, h5, h6 {
        margin-bottom: revert !important;
    }

    /* Pero específicamente en hero, forzar nuestros margins */
    .hero-section h1,
    .hero-section h2,
    .hero-section h3,
    .hero-section p {
        margin-bottom: revert !important;
    }

    .hero-section .hero-title {
        margin-bottom: 8px !important;
    }

    .hero-section .hero-subtitle {
        margin-bottom: 12px !important;
    }

    .hero-section .hero-description {
        margin-bottom: 18px !important;
    }
}


.product-image {
    /* ✅ CAMBIAR DE 200px FIJO A RECTANGULAR */
    height: auto !important; /* En lugar de height: 200px !important; */
    aspect-ratio: 0.75 !important; /* ✅ RECTANGULAR (3:4) en lugar de cuadrado */
    
    /* ✅ ESQUINAS REDONDEADAS */
    border-radius: 15px !important; /* En lugar de border-radius: 10px !important; */
    
    /* ✅ MANTENER TODO LO DEMÁS IGUAL */
    width: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    transition: transform 0.3s ease !important;
    margin: 0 auto 15px !important;
}

/* Esquinas redondas en las cards también */
.product-card {
    border-radius: 20px !important; /* ✅ MÁS REDONDEADO */
    /* NO TOCAR NADA MÁS DE LA CARD */
}

/* ===== RESPONSIVE - MANTENER LOS TAMAÑOS ACTUALES ===== */

/* Desktop Grande (1200px+) */
@media (min-width: 1200px) {
    .product-image {
        max-width: 140px !important; /* ✅ MANTENER TAMAÑO ACTUAL */
        aspect-ratio: 0.75 !important; /* ✅ RECTANGULAR */
        border-radius: 15px !important;
    }
}

/* Desktop Mediano (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .product-image {
        max-width: 130px !important; /* ✅ MANTENER TAMAÑO ACTUAL */
        aspect-ratio: 0.75 !important; /* ✅ RECTANGULAR */
        border-radius: 15px !important;
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .product-image {
        max-width: 120px !important; /* ✅ MANTENER TAMAÑO ACTUAL */
        aspect-ratio: 0.75 !important; /* ✅ RECTANGULAR */
        border-radius: 15px !important;
    }
}

/* Mobile (hasta 767px) */
@media (max-width: 767px) {
    .product-image {
        max-width: 140px !important; /* ✅ MANTENER TAMAÑO ACTUAL */
        aspect-ratio: 0.75 !important; /* ✅ RECTANGULAR */
        border-radius: 15px !important;
    }
}


/* Fix Blanco mobile */
@media (max-width: 767px) {
    .catalog-modal[data-product="blanco"] .catalog-section {
        padding: 0px !important;
    }
}

/* Fix Manzana imagen */
.product-card[data-product="manzana"] .product-image {
    display: block !important;
    opacity: 1 !important;
    loading: eager !important;
}


/* CSS específico para catálogo BLANCO - Fix hover ocasiones ideales */
.catalog-modal[data-product="blanco"] .occasion-tag:hover,
.catalog-modal.blanco-active .occasion-tag:hover,
.blanco-catalog .occasion-tag:hover {
    background: white !important;
    color: #0f0f23 !important; /* Texto dark en fondo blanco */
    border-color: #bd93f9 !important;
}

/* También para otros elementos similares en catálogo blanco */
.catalog-modal[data-product="blanco"] .occasions-grid .occasion-tag:hover,
.catalog-modal[data-product="blanco"] .ingredient-tag:hover,
.catalog-modal[data-product="blanco"] .benefit-tag:hover {
    background: white !important;
    color: #0f0f23 !important; /* Texto oscuro legible */
    border-color: #bd93f9 !important;
}

/* Si los selectores de arriba no funcionan, usar este más específico */
body .catalog-modal[data-product="blanco"] .occasion-tag:hover {
    background: white !important;
    color: #0f0f23 !important;
    border-color: #bd93f9 !important;
}

/* Para mobile también */
@media (max-width: 767px) {
    .catalog-modal[data-product="blanco"] .occasion-tag:hover,
    .catalog-modal[data-product="blanco"] .occasion-tag:active {
        background: white !important;
        color: #0f0f23 !important;
        border-color: #bd93f9 !important;
    }
}


/* Solo aplicar cuando blanco tenga la clase activa */
.catalog-modal.blanco-active .product-title {
    position: relative !important;
    top: -40px !important;
    z-index: 999 !important;
}

.catalog-modal.blanco-active .product-description {
    position: relative !important;
    top: -30px !important;
    z-index: 999 !important;
}   