/* ========================================
   VARIABLES Y CONFIGURACIÓN PREMIUM
   ======================================== */
:root {
    /* Paleta de Colores (Corporativa y Tecnológica) - Hybrid Premium */
    --color-bg: #ffffff; /* Blanco base para secciones claras */
    --color-bg-alt: #f5f5f7; /* Blanco suave / Plata clara */
    --color-bg-dark: #1c1f26; /* Gris grafito */
    --color-bg-dark-alt: #0d0d0f; /* Negro carbón */
    --color-black: #050505; /* Negro profundo */
    
    --color-primary: #d4a437; /* Dorado elegante */
    --color-primary-hover: #a97b17; /* Dorado oscuro */
    --color-secondary: #000000;
    
    --color-text-dark: #050505; /* Texto oscuro sobre fondo claro */
    --color-text-muted: #5e6672; /* Gris medio para fondos claros */
    --color-text-light: #e7e7ea; /* Plata clara para fondos oscuros */
    --color-text-white: #f5f5f7;
    
    --color-accent: #d4a437;
    --color-silver: #c9ccd3;

    /* Tipografías */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Espaciado */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;

    /* Sombras Premium */
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(197, 160, 33, 0.4);

    /* Radios */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESETS Y ESTILOS BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-dark);
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--space-xxl) 0;
}

.bg-light {
    background-color: var(--color-bg-alt);
}

.text-white { color: var(--color-text-white); }
.text-light-gray { color: var(--color-text-light); }
.text-accent { color: var(--color-accent); }

/* ========================================
   ESTILOS DE SECCIÓN (ALTERNANCIA)
   ======================================== */
.section {
    padding: var(--space-xxl) 0;
    position: relative;
    transition: background-color 0.3s ease;
}

.section-light {
    background-color: var(--color-bg);
    color: var(--color-text-dark);
}

.section-light-alt {
    background-color: var(--color-bg-alt);
    color: var(--color-text-dark);
}

.section-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.section-black {
    background-color: var(--color-black);
    color: var(--color-text-light);
}

/* Encabezados Globales dentro de Secciones */
.section-dark .section-title,
.section-black .section-title {
    color: var(--color-text-white);
}

.section-dark .section-subtitle,
.section-black .section-subtitle {
    color: var(--color-text-light);
    opacity: 0.8;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.align-left {
    text-align: left;
    margin-left: 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
    color: inherit; /* Hereda de la clase .section-xxx */
}

.section-subtitle {
    font-size: 1.125rem;
    color: inherit;
    opacity: 0.9;
}

/* BOTONES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    gap: 0.5rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #050505; /* Texto oscuro sobre dorado */
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(212, 164, 55, 0.4);
}

.btn-secondary {
    background-color: var(--color-bg-dark); /* Botón oscuro premium */
    color: var(--color-text-white);
    border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-black);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

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

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-link {
    color: var(--color-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-link:hover {
    gap: 0.75rem;
}

/* ========================================
   1. HEADER / NAVBAR — Always Floating + Adaptive
   ======================================== */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1280px;
    height: 70px;
    border-radius: 999px;
    /* Default: dark mode (over dark hero) */
    background: rgba(5, 5, 5, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, top 0.3s ease, height 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Light mode — when navbar is over a light/white section */
.navbar.nav-light {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.navbar.scrolled {
    top: 10px;
    height: 62px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 60px; /* Tamaño mayor para que respire */
    width: auto;
    display: block;
    transition: var(--transition-base);
}

.navbar.scrolled .logo-img {
    height: 50px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9); /* Default: light text on dark */
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* Light navbar mode: dark text */
.navbar.nav-light .nav-link {
    color: #050505;
}

.navbar.nav-light .nav-link:hover,
.navbar.nav-light .nav-link.active {
    color: var(--color-primary);
}

.navbar.nav-light .nav-cta {
    background-color: var(--color-primary);
    color: #050505;
}

.navbar.nav-light .hamburger .bar {
    background-color: #050505;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-base);
}

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

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.hamburger .bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
}

/* ========================================
   2. HERO SLIDER
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 180px;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

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

.hero-content {
    max-width: 750px;
}

.hero-title {
    color: var(--color-text-white);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-subtitle {
    color: var(--color-text-light);
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-bottom-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.hero-bottom-curve svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
    fill: var(--color-bg-alt);
}

/* ========================================
   3. BARRA FLOTANTE DE CONFIANZA
   ======================================== */
.trust-bar-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    margin-bottom: var(--space-xl);
}

.trust-bar {
    background: #ffffff; /* Blanco puro para contraste limpio */
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background-color: #f8fafc;
    border-radius: 15px; /* Más moderno que círculo */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-5px);
}

.trust-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: #050505;
}

.trust-text p {
    font-size: 0.9rem;
    color: #64748b;
}

/* Hero Specialties */
.hero-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.specialty-tag {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.8rem 1.6rem;
    border-radius: 50px; /* Estilo píldora */
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.specialty-tag i {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.specialty-tag:hover {
    background: var(--color-primary);
    color: #050505;
    transform: translateY(-5px) scale(1.05);
    border-color: var(--color-primary);
}

.specialty-tag:hover i {
    color: #050505;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(0,0,0,0.1);
    margin: 0 1.5rem;
}

/* ========================================
   4. SOLUCIONES
   ======================================== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.solution-card {
    background-color: var(--color-bg-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(212, 164, 55, 0.1);
    color: var(--color-text-light);
    display: flex;
    flex-direction: column;
    position: relative;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border-color: var(--color-primary);
}

.solution-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.solution-apps-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 2rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    transform: scale(1.1);
}

.solution-card:hover .solution-apps-overlay {
    opacity: 1;
    transform: scale(1);
}

.apps-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
}

.apps-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
}

.app-tag {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 0.65rem;
    padding: 0.4rem 0.7rem;
    border-radius: 4px; /* Estilo más técnico/cuadrado sutil */
    font-weight: 500;
    white-space: nowrap;
}

.solution-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.solution-card:hover .solution-img img {
    transform: scale(1.15);
}

.solution-content {
    padding: 2rem 1.5rem;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.solution-icon {
    position: absolute;
    top: -25px;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 5;
    transition: all 0.4s ease;
}

.solution-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.solution-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* LINK PREMIUM EN LUGAR DE BOTÓN */
.btn-solution {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-solution::after {
    content: '→';
    margin-left: 8px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-solution:hover {
    color: #ffffff;
}

.btn-solution:hover::after {
    transform: translateX(5px);
}

/* ========================================
/* ========================================
   5. APLICACIONES POR INDUSTRIA (ESTRUCTURA RESTAURADA)
   ======================================== */
.applications {
    padding: 8rem 0;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.app-bg-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

.shape-1 {
    top: 5%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
}

.shape-2 {
    bottom: 5%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
}

.applications .container {
    position: relative;
    z-index: 1;
}

.applications .section-header {
    margin-bottom: 5rem;
}

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

.app-category-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 164, 55, 0.1);
    border-radius: 32px;
    padding: 3rem;
    transition: all 0.4s ease;
}

.app-category-block:hover {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.05);
}

.category-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-name i {
    color: var(--color-primary);
    font-size: 1.4rem;
}

.category-intro {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.app-sub-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.sub-item {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    height: 220px;
    text-decoration: none; /* Reset link style */
    color: inherit; /* Reset link color */
    cursor: pointer;
}

.sub-item i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
    transition: all 0.4s ease;
}

.sub-item h4 {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
    transition: all 0.4s ease;
}

.sub-item .hover-desc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    color: #000;
    padding: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.sub-item:hover .hover-desc {
    opacity: 1;
    transform: translateY(0);
}

.sub-item:hover i, .sub-item:hover h4 {
    opacity: 0;
    transform: translateY(-15px);
}

.apps-footer {
    text-align: center;
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.apps-footer-text {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .app-sub-items { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .applications { padding: 6rem 1.5rem; }
    .app-sub-items { grid-template-columns: 1fr; gap: 1rem; }
    .category-name { font-size: 1.8rem; flex-wrap: wrap; }
    .sub-item { height: 180px; padding: 2rem; }
    .sub-item i { font-size: 2.2rem; }
    .sub-item h4 { font-size: 1.1rem; }
}

/* ========================================
   6. MARCAS
   ======================================== */
/* ========================================
   8. SECCIÓN MARCAS (TICKER INFINITO)
   ======================================== */
.brands-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 6rem 0;
    position: relative;
    background: #fdfdfd;
}

.brands-ticker-wrapper::before,
.brands-ticker-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-ticker-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fdfdfd, transparent);
}

.brands-ticker-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fdfdfd, transparent);
}

.brands-ticker {
    display: flex;
    white-space: nowrap;
    animation: brands-scroll 60s linear infinite;
    width: fit-content;
}

.ticker-item {
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #d4a437 0%, #f3d078 50%, #d4a437 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 5rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-family: var(--font-outfit);
    opacity: 0.5;
}

.ticker-item:hover {
    opacity: 1;
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px rgba(212, 164, 55, 0.3));
}

.brands-ticker-wrapper:hover .brands-ticker {
    animation-play-state: paused;
}

@keyframes brands-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsividad Marcas */
@media (max-width: 768px) {
    .ticker-item {
        font-size: 1.5rem;
        margin: 0 2.5rem;
        letter-spacing: 2px;
    }
    .brands-ticker-wrapper {
        padding: 4rem 0;
    }
    .brands-ticker-wrapper::before,
    .brands-ticker-wrapper::after {
        width: 100px;
    }
}

/* ========================================
   6. CÓMO TRABAJAMOS (BENTO PROCESS)
   ======================================== */
.how-we-work {
    padding: 8rem 0;
    background: #fdfdfd;
}

.process-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 6rem 0;
}

.process-bento-item {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    padding: 3.5rem 2.5rem;
    border-radius: 32px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.process-bento-item:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}

.bento-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.bento-num {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    background: #000;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
}

.bento-header i {
    font-size: 1.8rem;
    color: var(--color-primary);
}

.process-bento-item h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.process-bento-item p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.process-footer-clean {
    text-align: center;
    margin-top: 6rem;
}

.process-quote-simple {
    font-size: 1.3rem;
    font-weight: 500;
    color: #475569;
    font-style: italic;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsividad Bento */
@media (max-width: 1024px) {
    .process-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .process-bento-grid {
        grid-template-columns: 1fr;
    }
    .process-bento-item {
        padding: 2.5rem 2rem;
    }
}

/* ========================================
   7. PORQUE NOSOTROS
   ======================================== */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
    transition: var(--transition-base);
}

.why-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.why-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.why-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.why-card p {
    color: var(--color-text-light);
    opacity: 0.8;
    font-size: 0.95rem;
}

/* ========================================
   7. TIENDA (UI Simulada)
   ======================================== */
.store-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid var(--color-bg-dark);
    background: var(--color-bg-alt);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition-base);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--color-bg-dark);
    color: white;
    border-color: var(--color-bg-dark);
}

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

.product-card {
    background: var(--color-bg-dark); /* Gris grafito */
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(212, 164, 55, 0.1);
    transition: var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
    color: var(--color-text-light);
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-bg-dark);
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    z-index: 2;
}

.product-badge.accent {
    background: var(--color-primary);
}

.product-img {
    height: 250px;
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.product-info {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-cat {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    color: var(--color-text-white);
}

.store-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================
   8. BLOG
   ======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--color-bg-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(212, 164, 55, 0.1);
    transition: var(--transition-base);
    color: var(--color-text-light);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: var(--color-primary);
}

.blog-img {
    height: 220px;
}
.blog-img img {
    width: 100%; height: 100%; object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--color-text-white);
}

.blog-excerpt {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ========================================
   9. PREGUNTAS FRECUENTES (FAQ)
   ======================================== */
.faq-container {
    max-width: 800px;
}

.accordion-item {
    background: var(--color-bg-dark); /* Gris grafito */
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid rgba(212, 164, 55, 0.1);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--color-text-white); /* Texto blanco/plata para fondos oscuros */
    transition: var(--transition-base);
}

.accordion-header:hover {
    color: var(--color-primary);
}

.accordion-header .icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
    color: var(--color-primary);
}

.accordion-header.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--color-text-muted);
}

/* ========================================
   10. CONTACTO / CTA FINAL
   ======================================== */
.cta-contact {
    background-color: var(--color-bg-dark);
    color: white;
    position: relative;
    padding: 6rem 0;
}

.cta-bg-shape {
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background: linear-gradient(to left, rgba(197, 160, 33, 0.2), transparent);
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    color: var(--color-text-light);
    opacity: 0.8;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.c-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--color-primary);
}

.contact-card span {
    font-size: 0.85rem;
    color: #94a3b8;
    display: block;
}

.contact-card p {
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-form-wrapper {
    background: var(--color-bg-dark);
    padding: 3rem;
    border-radius: var(--radius-md);
    color: var(--color-text-light);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 164, 55, 0.1);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-white);
    opacity: 0.9;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255, 255, 255, 1); /* Cambio a fondo blanco para máxima legibilidad si el anterior era confuso */
    color: #050505; /* Texto negro sobre fondo blanco dentro del input */
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(212, 164, 55, 0.2);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

/* ========================================
   11. FOOTER
   ======================================== */
.footer {
    background-color: #050505;
    color: var(--color-text-light);
    padding-top: 5rem;
    border-top: 1px solid rgba(212, 164, 55, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}
.social-links a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: var(--color-text-muted);
}
.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contact li {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.footer-contact i {
    color: var(--color-primary);
    margin-top: 4px;
}

.footer-bottom {
    background: #000000;
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal a {
    color: var(--color-text-muted);
    margin-left: 1.5rem;
}
.footer-legal a:hover {
    color: white;
}

/* ========================================
   ANIMACIONES GLOBALES
   ======================================== */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

.fade-up {
    transform: translateY(40px);
}

.fade-left {
    transform: translateX(40px);
}

.fade-right {
    transform: translateX(-40px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .app-categories-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .brands-wrapper { grid-template-columns: repeat(2, 1fr); }
    .store-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-container { grid-template-columns: 1fr; gap: 2rem; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    
    .app-interactive-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Navbar */
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: #0d0d0f; /* Negro carbón para menú móvil */
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
    }
    .nav-menu.active { left: 0; }
    .nav-list { 
        flex-direction: column; 
        text-align: center; 
        gap: 2.5rem;
    }
    .nav-link {
        color: var(--color-text-white);
        font-size: 1.25rem;
    }
    .navbar.scrolled .nav-menu { top: 75px; height: calc(100vh - 75px); }

    /* Hero */
    .hero-title { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    
    /* Trust Bar */
    .trust-bar { flex-wrap: wrap; gap: 1rem; padding: 1.5rem; }
    .trust-item { min-width: 40%; }
    .trust-divider { display: none; }

    /* Grids */
    .store-grid, .blog-grid { grid-template-columns: 1fr; }
    .app-categories-grid { grid-template-columns: 1fr; gap: 2rem; }
    .app-category-block { padding: 1.5rem; }
    .app-sub-items { grid-template-columns: 1fr; gap: 1rem; }
    .process-steps { grid-template-columns: 1fr; gap: 3rem; }
    .why-us-grid { grid-template-columns: 1fr; }
    
    .footer-bottom .container { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
    .section { padding: 3rem 0; }
    .solutions-grid { grid-template-columns: 1fr; }
    .brands-wrapper { grid-template-columns: repeat(2, 1fr); }
    .trust-item { min-width: 100%; }
    .trust-bar { margin-top: 20px; }
    .footer-container { grid-template-columns: 1fr; }
    .cta-form-wrapper { padding: 1.5rem; }
}

/* ========================================
   BOTÓN WHATSAPP FLOTANTE
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
    color: white !important;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

/* ========================================
   12. ESTILOS DE ARTÍCULO (DETALLE)
   ======================================== */
.article-header {
    padding: 120px 0 60px;
    background-color: var(--color-bg-dark-alt);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(212, 164, 55, 0.1) 0%, transparent 70%);
}

.article-category {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-black);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.article-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-text-white);
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.1;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.article-meta span i {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

.article-hero-img {
    width: 100%;
    max-width: 1100px;
    height: 500px;
    margin: -80px auto 4rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
}

.article-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: var(--space-xxl);
}

.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-dark);
}

.article-content p {
    margin-bottom: 2rem;
}

.article-content h2, .article-content h3 {
    margin: 3rem 0 1.5rem;
    color: var(--color-bg-dark);
}

.article-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: 2rem;
    margin: 3rem 0;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--color-text-muted);
}

.article-tags {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--color-bg-alt);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: var(--transition-base);
}

.tag:hover {
    background: var(--color-primary);
    color: var(--color-black);
}

/* Compartir Social */
.article-share {
    margin-top: 4rem;
    text-align: center;
}

.share-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    color: var(--color-text-dark);
    font-size: 1.25rem;
    transition: var(--transition-base);
}

.share-btn:hover {
    background: var(--color-primary);
    color: var(--color-black);
    transform: translateY(-3px);
}

/* Artículos Relacionados */
.related-articles {
    padding: var(--space-xl) 0;
    background: var(--color-bg-alt);
}

/* Responsivo para artículos */
@media (max-width: 768px) {
    .article-hero-img {
        height: 300px;
        margin-top: -40px;
        border-radius: 0;
    }
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
}

/* ========================================
   ESTILOS DE LA SECCIÓN CINE EN CASA 
   ======================================== */

   .hero-cine {
    padding: 120px 0 80px;
}

.hero-cine-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.cine-pre-title {
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.hero-cine-text {
    color: var(--color-text-white);
}

.hero-cine-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow);
    border: 1px solid rgba(212, 164, 55, 0.2);
}

.cine-benefits {
    display: flex;
    gap: 1.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-text-light);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
}

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

.cine-comparison-wrapper {
    margin-bottom: 6rem;
}

.cine-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cine-comparison-card {
    background: var(--color-bg-dark);
    padding: 3rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cine-comparison-card.highlight {
    border-color: var(--color-primary);
    background: rgba(212, 164, 55, 0.03);
}

.cine-comparison-card h3 {
    font-size: 1rem;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.cine-comparison-card h4 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.cine-comparison-card p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.comparison-list {
    margin: 1.5rem 0;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    color: var(--color-text-light);
}

.bad-list i {
    color: #ef4444;
}

.good-list i {
    color: #22c55e;
}

.comparison-note {
    font-size: 0.85rem !important;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}

.cine-experiment-wrapper {
    margin-bottom: 6rem;
}

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

.experiment-item {
    background: var(--color-bg-dark);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(212, 164, 55, 0.05);
}

.experiment-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    transition: var(--transition-base);
}

.experiment-item i {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.experiment-item h3 {
    font-size: 1.05rem;
    color: var(--color-text-white);
    margin-bottom: 0.5rem;
}

.experiment-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.project-include-wrapper {
    margin-bottom: 6rem;
}

.project-include-wrapper .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.cta-section-wrapper {
    background: linear-gradient(135deg, var(--color-bg-dark-alt) 0%, var(--color-primary) 100%);
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

.cta-inner-text h3 {
    font-size: 1.8rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.cta-inner-text h4 {
    font-size: 1.25rem;
    color: var(--color-primary);
    letter-spacing: 0.5px;
}

.cta-sub-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.cta-sub-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-sub-features i {
    color: var(--color-primary);
}

/* RESPONSIVO PARA CINE EN CASA */
@media (max-width: 1024px) {
    .experiment-grid { grid-template-columns: repeat(2, 1fr); }
    .project-include-wrapper .product-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-inner-card { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .hero-cine-content { grid-template-columns: 1fr; }
    .cine-comparison-grid { grid-template-columns: 1fr; }
    .experiment-grid { grid-template-columns: 1fr; }
    .project-include-wrapper .product-grid { grid-template-columns: 1fr; }
    .cta-section-wrapper { padding: 2rem; }
    .cta-sub-features { grid-template-columns: 1fr; }
}

/* Corrección de color de texto para secciones oscuras y negras */
.section-black,
.section-black h1, 
.section-black h2, 
.section-black h3, 
.section-black h4 {
    color: var(--color-text-light) !important;
}

.section-black p, 
.section-black .experiment-item p {
    color: var(--color-text-muted) !important;
}

/* Asegurar que las tarjetas de productos destaquen en la sección negra */
.section-black .product-card {
    background-color: var(--color-bg-dark);
    border: 1px solid rgba(212, 164, 55, 0.2);
}


/* Corrección para evitar que el contenido esté invisible en la carga */
.reveal {
    opacity: 1; /* Cambiado de 0 a 1 para asegurar visibilidad */
    transform: none; /* Quitamos la transformación inicial para que no queden fuera de pantalla */
    transition: var(--transition-base);
}

/* Forzar contraste en la sección negra */
.hero-cine,
.section-black {
    background-color: var(--color-black) !important;
    color: var(--color-text-light) !important;
}

.section-black h1, 
.section-black h2, 
.section-black h3, 
.section-black h4 {
    color: var(--color-text-white) !important;
}

.section-black p {
    color: var(--color-text-muted) !important;
}

/* Fondo de las tarjetas dentro de la sección */
.hero-cine .cine-comparison-card,
.hero-cine .experiment-item {
    background-color: var(--color-bg-dark);
    border-color: rgba(212, 164, 55, 0.15);
}

/* ========================================
   ESTILOS DE LA SECCIÓN CINE EN CASA (CORREGIDO)
   ======================================== */
/* ========================================
   SUBPAGE: CINE EN CASA PROFESIONAL
   ======================================== */

   .cine-page-hero {
    position: relative;
    min-height: 720px;
    padding: 160px 0 90px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0.28) 100%),
        url("./assets/cinema_casa/2.jpeg") center/cover no-repeat;
}

.cine-page-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 50%, rgba(212, 164, 55, 0.16), transparent 35%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.75));
    z-index: 1;
}

.cine-page-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
}

.cine-page-hero-content {
    max-width: 680px;
}

.cine-page-kicker {
    display: inline-block;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.cine-page-hero h1 {
    color: var(--color-text-white);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.98;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.cine-page-hero h1 span {
    display: block;
    color: var(--color-primary);
}

.cine-page-hero p {
    color: var(--color-text-light);
    font-size: 1.15rem;
    max-width: 560px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cine-page-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cine-page-badge {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--color-text-white);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    max-width: 170px;
}

.cine-page-badge i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border: 1px solid rgba(212, 164, 55, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.15rem;
    background: rgba(0, 0, 0, 0.35);
}

/* ========================================
   PROBLEMA / SOLUCIÓN
   ======================================== */

.cine-problem-solution {
    display: grid;
    grid-template-columns: 1fr 0.6fr 1fr;
    min-height: 310px;
    background: var(--color-bg-alt);
}

.cine-problem-card,
.cine-solution-card {
    padding: 4rem 4.5rem;
}

.cine-problem-card {
    background: linear-gradient(135deg, #101319, #1c1f26);
    color: var(--color-text-light);
}

.cine-solution-card {
    background: var(--color-bg-alt);
    color: var(--color-text-dark);
}

.cine-problem-card h2,
.cine-solution-card h2 {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.35rem;
}

.cine-problem-card h2 {
    color: var(--color-text-white);
}

.cine-problem-card h3,
.cine-solution-card h3 {
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 1.45rem;
    margin-bottom: 1.8rem;
}

.cine-problem-card ul,
.cine-solution-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.8rem;
}

.cine-problem-card li,
.cine-solution-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cine-problem-card li i {
    color: var(--color-primary);
    margin-top: 0.2rem;
}

.cine-solution-card li i {
    color: #56a84f;
    margin-top: 0.2rem;
}

.cine-problem-card p {
    color: var(--color-text-light);
    opacity: 0.9;
    font-weight: 600;
}

.cine-solution-card p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cine-video-preview {
    position: relative;
    min-height: 310px;
    overflow: hidden;
}

.cine-video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cine-video-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
}

.cine-video-preview button {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 76px;
    height: 76px;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: var(--transition-base);
}

.cine-video-preview button:hover {
    background: var(--color-primary);
    color: var(--color-black);
    border-color: var(--color-primary);
    transform: translate(-50%, -50%) scale(1.08);
}

/* ========================================
   EXPERIENCIA
   ======================================== */

.cine-experience {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.cine-experience-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.cine-experience-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

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

.cine-experience-item i {
    font-size: 2.5rem;
    color: var(--color-bg-dark);
    margin-bottom: 1.2rem;
}

.cine-experience-item h3 {
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    color: var(--color-bg-dark);
}

.cine-experience-item p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ========================================
   PRODUCTOS + PROCESO
   ======================================== */

.cine-project-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(212, 164, 55, 0.12);
}

.cine-project-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
}

.cine-products-block,
.cine-process-block {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(212, 164, 55, 0.12);
    border-radius: var(--radius-md);
    padding: 2.5rem;
}

.cine-products-block h2,
.cine-process-block h2,
.cine-gallery-block h2,
.cine-next-step h2 {
    color: var(--color-text-white);
    text-transform: uppercase;
    font-size: 1.35rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cine-products-block h2 span,
.cine-process-block h2 span,
.cine-gallery-block h2 span,
.cine-next-step h2 span {
    color: var(--color-primary);
}

.cine-products-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.cine-product-mini {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(212, 164, 55, 0.16);
    border-radius: var(--radius-sm);
    overflow: hidden;
    text-align: center;
    transition: var(--transition-base);
}

.cine-product-mini:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
}

.cine-product-mini img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    background: #111;
}

.cine-product-mini h3 {
    color: var(--color-text-white);
    font-size: 0.78rem;
    line-height: 1.3;
    padding: 0.9rem;
}

.cine-process-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cine-process-line {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    position: relative;
}

.cine-process-step {
    text-align: center;
    position: relative;
}

.cine-process-icon {
    width: 68px;
    height: 68px;
    border: 1px solid rgba(212, 164, 55, 0.7);
    border-radius: 50%;
    margin: 0 auto 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.35rem;
    background: rgba(0, 0, 0, 0.28);
}

.cine-process-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--color-primary);
    color: var(--color-black);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cine-process-step p {
    color: var(--color-text-light);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.35;
}

.cine-process-note {
    color: var(--color-text-light);
    opacity: 0.75;
    text-align: center;
    margin-top: 2.5rem;
    font-weight: 600;
}

/* ========================================
   GALERÍA + CTA
   ======================================== */

.cine-gallery-cta {
    padding-top: 0;
}

.cine-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    border-top: 1px solid rgba(212, 164, 55, 0.12);
    padding-top: 4rem;
}

.cine-gallery-block,
.cine-next-step {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(212, 164, 55, 0.12);
    border-radius: var(--radius-md);
    padding: 2.5rem;
}

.cine-gallery-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.cine-gallery-images img {
    width: 100%;
    height: 135px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 164, 55, 0.16);
}

.cine-gallery-block .btn {
    display: flex;
    width: fit-content;
    margin: 0 auto;
}

.cine-next-step {
    text-align: center;
    border-color: rgba(212, 164, 55, 0.35);
    background:
        linear-gradient(135deg, rgba(212, 164, 55, 0.08), rgba(255, 255, 255, 0.02));
}

.cine-next-step p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.cine-next-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.7rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 164, 55, 0.14);
}

.cine-next-benefits div {
    color: var(--color-text-light);
    font-size: 0.72rem;
    line-height: 1.3;
}

.cine-next-benefits i {
    display: block;
    color: var(--color-primary);
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

/* ========================================
   CIERRE FINAL
   ======================================== */

.cine-final-banner {
    position: relative;
    padding: 4.5rem 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.72)),
        url("./assets/cinema_casa/2.jpeg") center/cover no-repeat;
}

.cine-final-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(212, 164, 55, 0.08), transparent 45%);
    z-index: 1;
}

.cine-final-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cine-final-text h2 {
    color: var(--color-text-white);
    font-size: 1.45rem;
    text-transform: uppercase;
    line-height: 1.35;
    margin-bottom: 1rem;
}

.cine-final-text h2 span {
    display: block;
    color: var(--color-primary);
    margin-top: 0.5rem;
}

.cine-final-text p {
    color: var(--color-text-light);
    opacity: 0.85;
}

.cine-final-brand {
    text-align: center;
}

.cine-final-brand img {
    height: 90px;
    width: auto;
    margin: 0 auto 1rem;
}

.cine-final-brand p {
    color: var(--color-text-light);
    max-width: 260px;
    margin: 0 auto;
}

.cine-final-contact {
    text-align: center;
}

.cine-final-contact h3 {
    color: var(--color-text-white);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.cine-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cine-social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 164, 55, 0.45);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cine-social-links a:hover {
    background: var(--color-primary);
    color: var(--color-black);
}

/* ========================================
   RESPONSIVE CINE EN CASA
   ======================================== */

@media (max-width: 1100px) {
    .cine-problem-solution {
        grid-template-columns: 1fr;
    }

    .cine-video-preview {
        min-height: 360px;
    }

    .cine-project-grid,
    .cine-gallery-grid,
    .cine-final-grid {
        grid-template-columns: 1fr;
    }

    .cine-process-line {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .cine-page-hero {
        min-height: auto;
        padding: 135px 0 70px;
        background-position: center right;
    }

    .cine-page-hero h1 {
        font-size: 2.45rem;
    }

    .cine-page-hero p {
        font-size: 1rem;
    }

    .cine-page-badges {
        flex-direction: column;
    }

    .cine-page-badge {
        max-width: 100%;
    }

    .cine-problem-card,
    .cine-solution-card {
        padding: 3rem 1.5rem;
    }

    .cine-experience-icons {
        grid-template-columns: 1fr;
    }

    .cine-experience-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .cine-experience-item:last-child {
        border-bottom: none;
    }

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

    .cine-process-line {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cine-gallery-images img {
        height: 220px;
    }

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

    .cine-products-block,
    .cine-process-block,
    .cine-gallery-block,
    .cine-next-step {
        padding: 2rem 1.3rem;
    }
}

@media (max-width: 500px) {
    .cine-page-hero h1 {
        font-size: 2.05rem;
    }

    .cine-products-mini-grid {
        grid-template-columns: 1fr;
    }

    .cine-next-benefits {
        grid-template-columns: 1fr;
    }

    .cine-final-banner {
        padding: 3.5rem 0;
    }

    .cine-final-text h2 {
        font-size: 1.2rem;
    }
}

/* ========================================
   BLOG ARTICLE PREMIUM STYLES
   ======================================== */
.article-header {
    padding: var(--space-xxl) 0 var(--space-xl);
    background-color: var(--color-bg-alt);
    text-align: center;
}

.article-category {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.article-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-hero-img {
    width: 100%;
    max-width: 1100px;
    margin: -3rem auto 4rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
}

.article-hero-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.article-body {
    padding-bottom: var(--space-xxl);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--color-text-dark);
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 2rem;
}

.article-content h2 {
    font-size: 2rem;
    margin: 3.5rem 0 1.5rem;
    color: var(--color-black);
}

.article-content blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-primary);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem 2.5rem;
    margin: 3rem 0;
    background: var(--color-bg-alt);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-share {
    max-width: 800px;
    margin: 4rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid var(--color-silver);
    text-align: center;
}

.article-share h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.share-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    transition: var(--transition-base);
}

.share-btn:hover {
    background: var(--color-primary);
    color: var(--color-black);
    transform: translateY(-3px);
}

/* White background support for Cine en Casa */
.section-white {
    background-color: var(--color-bg);
    color: var(--color-text-dark);
}

.cine-white-block {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-silver);
    border-radius: var(--radius-md);
    padding: 2.5rem;
}

.cine-white-block h2 {
    color: var(--color-black) !important;
}

.cine-white-block p, 
.cine-white-block li {
    color: var(--color-text-muted) !important;
}

@media (max-width: 768px) {
    .article-hero-img {
        margin-top: 0;
        border-radius: 0;
    }
    
    .article-hero-img img {
        height: 300px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
}

/* ========================================
   CINE EN CASA REDESIGN PREMIUM STYLES
   ======================================== */

.cine-page-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 2rem;
    align-items: stretch;
    margin-top: 4rem;
}

.comparison-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.comparison-card.bad {
    border-top: 5px solid #ff4d4d;
}

.comparison-card.good {
    border-top: 5px solid var(--color-primary);
}

.comparison-card .card-header {
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-card .card-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.comparison-card.bad i { color: #ff4d4d; }
.comparison-card.good i { color: var(--color-primary); }

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-silver);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.comparison-card li i {
    font-size: 1.1rem;
    margin-top: 3px;
}

.comparison-visual {
    position: relative;
    z-index: 1;
}

.visual-wrapper {
    position: relative;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visual-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.visual-wrapper:hover img {
    transform: scale(1.1);
}

.visual-tag {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--color-primary);
    color: var(--color-black);
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Experience Grid */
.cine-experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.experience-card {
    background: var(--color-bg);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid var(--color-silver);
    position: relative;
}

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

.exp-icon {
    width: 80px;
    height: 80px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--color-primary);
    transition: var(--transition-base);
}

.experience-card:hover .exp-icon {
    background: var(--color-primary);
    color: var(--color-black);
    transform: rotateY(180deg);
}

.experience-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.experience-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-visual {
        order: -1;
        height: 400px;
    }
    
    .cine-page-buttons {
        flex-direction: column;
    }
}

/* ========================================
   CINE EN CASA: ESTRUCTURA PREMIUM 2024
   ======================================== */

/* Hero Modernizado */
.cine-hero-v2 {
    position: relative;
    padding: 160px 0 100px;
    background: #000;
    color: var(--color-text-white);
    text-align: center;
    overflow: hidden;
}

.cine-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/cinema_casa/1.jpeg') center/cover no-repeat;
    opacity: 0.6;
    filter: brightness(0.25);
}

.cine-hero-v2 .container {
    position: relative;
    z-index: 2;
}

.cine-hero-v2 .hero-kicker {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 164, 55, 0.2);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.cine-hero-v2 h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-text-white);
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.cine-hero-v2 .hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-white);
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cine-hero-v2 .hero-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.hero-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-white);
}

.hero-badge-item i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

/* Grid de Beneficios (5 columnas) */
.benefits-v2-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-v2-card {
    background: var(--color-bg);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--color-silver);
    transition: var(--transition-base);
}

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

.benefit-v2-card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.benefit-v2-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.benefit-v2-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Sección Solución con Checklist y Control Interactivo */
.cine-solution-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.solution-checklist ul {
    list-style: none;
    padding: 0;
}

.solution-checklist li {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    border-bottom: 1px solid var(--color-silver);
}

.solution-checklist li i {
    color: var(--color-primary);
}

.solution-interactive-mockup {
    background: #111;
    border-radius: 30px;
    padding: 2.5rem 1.5rem;
    border: 8px solid #222;
    box-shadow: var(--shadow-lg);
    color: white;
    max-width: 320px;
    margin: 0 auto;
}

.mockup-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
    margin-bottom: 1.5rem;
}

.mockup-header h4 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.sub-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    margin: 0 -0.5rem;
}

.sub-item-link:hover {
    background: rgba(212, 164, 55, 0.1);
    transform: translateX(5px);
}

.sub-item-link:hover h4 {
    color: var(--color-primary);
}

.sub-item {
    margin-bottom: 0.5rem;
}

.volume-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: #888;
}

.volume-slider {
    height: 6px;
    background: #333;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.volume-progress {
    height: 100%;
    background: var(--color-primary);
    border-radius: 3px;
    position: relative;
    width: 70%;
}

.volume-handle {
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    position: absolute;
    right: -7px;
    top: -4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* Grid de Equipos (6 columnas) */
.equip-v2-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.equip-v2-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: var(--color-bg-alt);
    transition: var(--transition-base);
}

.equip-v2-item:hover {
    background: var(--color-bg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-primary);
}

.equip-v2-img {
    height: 100px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equip-v2-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.equip-v2-item h3 {
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Proceso v2 Horizontal */
.process-v2-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    position: relative;
}

.process-v2-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: var(--color-silver);
    z-index: 1;
}

.process-v2-item {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.process-v2-icon {
    width: 80px;
    height: 80px;
    background: var(--color-bg);
    border: 2px solid var(--color-silver);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--color-text-dark);
    transition: var(--transition-base);
}

.process-v2-item:hover .process-v2-icon {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-black);
    transform: scale(1.1);
}

.process-v2-item span {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 1rem;
}

@media (max-width: 992px) {
    .benefits-v2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .equip-v2-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cine-solution-v2-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .process-v2-steps {
        flex-direction: column;
        gap: 2rem;
    }
    .process-v2-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .benefits-v2-grid, .equip-v2-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .benefit-v2-card {
        padding: 1.5rem 1rem;
    }
    .equip-v2-item {
        padding: 1rem;
    }
    .equip-v2-img {
        height: 70px;
    }
    .process-v2-steps {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding-left: 2rem;
        position: relative;
    }
    .process-v2-steps::before {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 40px;
        width: 2px;
        background: var(--color-silver);
        z-index: 1;
    }
    .process-v2-item {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        text-align: left;
        width: 100%;
    }
    .process-v2-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1rem;
        margin: 0;
        z-index: 2;
        background: var(--color-white);
    }
    .process-v2-item span {
        display: none; /* Ocultar el número pequeño arriba */
    }
    .process-v2-item h4 {
        margin: 0;
        font-size: 1rem;
    }
    .cine-hero-v2 {
        padding: 120px 0 60px;
    }
    .cine-hero-v2 h1 {
        font-size: 2.2rem;
    }
    .hero-badges {
        gap: 1.5rem;
    }
    .hero-badge-item {
        min-width: 120px;
    }
}

/* ========================================
   PREMIUM BARES Y CAFETERIAS ENHANCEMENTS
   ======================================== */

.premium-glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 
                inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-glass-panel::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    transition: all 0.75s;
    z-index: 1;
}

.premium-glass-panel:hover::before {
    animation: shine 3.5s linear forwards;
}

@keyframes shine {
    0%   { left: -100%; }
    100% { left: 200%; }
}

.premium-glass-panel:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08),
                0 0 30px rgba(212, 164, 55, 0.15);
}

.benefit-v2-card.premium-card {
    background: linear-gradient(145deg, #ffffff, #f9f9fa);
    border: 1px solid rgba(212, 164, 55, 0.15);
    position: relative;
    z-index: 2;
}

.benefit-v2-card.premium-card i {
    background: linear-gradient(135deg, var(--color-primary), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 5px 10px rgba(212, 164, 55, 0.3));
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-v2-card.premium-card:hover i {
    transform: scale(1.3) rotate(10deg);
}

.text-gradient-gold {
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-gold 3s linear infinite;
}

@keyframes shine-gold {
    to { background-position: 200% center; }
}

/* Slowed to 12s so the shimmer is barely perceptible */
.text-gradient-gold { animation-duration: 12s; }

.solution-interactive-mockup.premium-mockup {
    background: rgba(15, 15, 18, 0.95);
    border: 1px solid rgba(212, 164, 55, 0.4);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 
                0 0 40px rgba(212, 164, 55, 0.15);
    border-radius: var(--radius-lg);
}

.premium-mockup .volume-progress {
    background: linear-gradient(90deg, #d4a437, #fcf6ba);
    box-shadow: 0 0 15px rgba(212, 164, 55, 0.6);
    position: relative;
    overflow: hidden;
}

.premium-mockup .volume-progress::after {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: flow 2s linear infinite;
}

@keyframes flow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.float-animation {
    animation: float 5s ease-in-out infinite;
}

.float-animation-delay-1 { animation-delay: 1s; }
.float-animation-delay-2 { animation-delay: 2s; }
.float-animation-delay-3 { animation-delay: 3s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.process-v2-item.premium-process .process-v2-icon {
    background: var(--color-bg-dark);
    color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(212, 164, 55, 0.1), 
                inset 0 0 15px rgba(212, 164, 55, 0.2);
    transition: all 0.5s ease;
}

.process-v2-item.premium-process:hover .process-v2-icon {
    box-shadow: 0 0 0 8px rgba(212, 164, 55, 0.3), 
                inset 0 0 25px rgba(212, 164, 55, 0.6);
    transform: scale(1.15) rotate(360deg);
}

.equip-v2-item.premium-equip {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.equip-v2-item.premium-equip:hover {
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 0 20px rgba(212, 164, 55, 0.1);
    transform: translateY(-5px);
}

.equip-v2-item.premium-equip::before {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(212, 164, 55, 0.08), transparent);
    transition: bottom 0.5s ease;
    z-index: 1;
}

.equip-v2-item.premium-equip:hover::before {
    bottom: 0;
}

.equip-v2-item.premium-equip .equip-v2-img,
.equip-v2-item.premium-equip h3 {
    position: relative;
    z-index: 2;
}

/* Dynamic subtle backgrounds */
.bg-gradient-light {
    background: linear-gradient(135deg, #ffffff 0%, #f2f2f5 100%);
}

.bg-gradient-gray {
    background: linear-gradient(135deg, #f9f9fa 0%, #e8e8ed 100%);
}

/* ========================================
   BENTO GRID STRUCTURE (APPLE STYLE)
   ======================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(300px, auto));
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-item {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Bento Sizes */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Bento Content */
.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    z-index: 2;
}

.bento-item p {
    color: var(--color-text-muted);
    z-index: 2;
    margin-bottom: 2rem;
}

.bento-item .bento-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    z-index: 2;
}

/* Specific Bento styling */
.bento-dark {
    background: var(--color-bg-dark);
    color: var(--color-text-white);
    border: 1px solid rgba(212, 164, 55, 0.2);
}

.bento-dark h3 {
    color: var(--color-text-white);
}

.bento-dark p {
    color: rgba(255,255,255,0.7);
}

.bento-img-bg {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    opacity: 0.15;
    transition: all 0.5s ease;
    z-index: 1;
}

.bento-item:hover .bento-img-bg {
    transform: scale(1.1);
    opacity: 0.25;
}

/* Media Queries for Bento */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .bento-large, .bento-wide, .bento-tall, .bento-small {
        grid-column: span 2;
        grid-row: auto;
    }
}

/* ========================================
   PREMIUM PROCESS GRID & DARK CTA
   ======================================== */
.process-premium-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.process-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: rgba(212, 164, 55, 0.3);
}

.process-number {
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(0,0,0,0.03);
    z-index: 1;
    transition: color 0.4s ease;
}

.process-card:hover .process-number {
    color: rgba(212, 164, 55, 0.1);
}

.process-card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    z-index: 2;
    position: relative;
    transition: transform 0.4s ease;
}

.process-card:hover i {
    transform: scale(1.2);
}

.process-card h4 {
    font-size: 1.1rem;
    z-index: 2;
    position: relative;
    color: var(--color-text-dark);
}

@media (max-width: 992px) {
    .process-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .process-premium-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   NEW PREMIUM SPLIT CONTACT SECTION
   ======================================== */
.contact-section-new {
    display: flex;
    min-height: 600px; /* Reducido de 800px */
    flex-wrap: wrap;
    border-top: 1px solid rgba(212, 164, 55, 0.1);
}

.contact-left-col {
    flex: 1;
    min-width: 450px;
    background-color: #050505;
    padding: 6rem 5% 6rem 5%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrar para que el contenido respire */
    justify-content: center;
}

.contact-right-col {
    flex: 1.2;
    min-width: 450px;
    background-color: #ffffff;
    padding: 6rem 5% 6rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Contenedores internos para limitar el ancho y que no se vea "estirado" */
.contact-left-col > div, .contact-right-col > div, .contact-right-col > form {
    width: 100%;
    max-width: 500px; /* Ancho máximo controlado */
}

.contact-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    color: #fff;
    width: fit-content; /* Asegura que no se estire al 100% */
}

.contact-left-col h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 800;
    text-align: left; /* Alineación de texto clásica */
}

.contact-left-col .contact-p {
    color: #94a3b8;
    margin-bottom: 3.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
    text-align: left;
}

.contact-methods-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-method-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--color-primary);
    transform: translateX(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 164, 55, 0.1);
    border-radius: 12px;
    color: var(--color-primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-method-item:hover .method-icon {
    background: var(--color-primary);
    color: #050505;
    transform: scale(1.1) rotate(-5deg);
}

.method-content h4 {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.method-content p {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    word-break: break-all;
}

.method-link {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-link i {
    transition: transform 0.3s ease;
}

.method-link:hover i {
    transform: translateX(5px);
}

/* Right Col Form Styling */
.contact-right-col h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1.5rem;
    color: #050505;
    font-weight: 800;
}

.contact-right-col .form-instruction {
    color: #5e6672;
    margin-bottom: 4rem;
    line-height: 1.7;
    font-size: 1.1rem;
    max-width: 600px;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #050505;
    text-transform: capitalize;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1.1rem 1.25rem;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-md);
    background: #f8fafc;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #050505;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 5px rgba(212, 164, 55, 0.12);
}

/* Premium Custom Select */
.premium-select-wrapper {
    position: relative;
    width: 100%;
}

.premium-select-custom {
    padding: 1.1rem 1.25rem;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-md);
    background: #f8fafc;
    color: #050505;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.premium-select-custom i {
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.premium-select-wrapper.active .premium-select-custom {
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 5px rgba(212, 164, 55, 0.12);
}

.premium-select-wrapper.active .premium-select-custom i {
    transform: rotate(180deg);
}

.premium-options-list {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid rgba(212, 164, 55, 0.2);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.premium-select-wrapper.active .premium-options-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.premium-option-item {
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
}

.premium-option-item:last-child {
    border-bottom: none;
}

.premium-option-item:hover {
    background: rgba(212, 164, 55, 0.08);
    padding-left: 1.75rem;
    color: var(--color-black);
}

.premium-option-item.selected {
    background: rgba(212, 164, 55, 0.15);
    font-weight: 700;
    color: var(--color-black);
}

.btn-submit-premium {
    width: 100%;
    margin-top: 2.5rem;
    padding: 1.4rem;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 800;
    background: #050505;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-submit-premium::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--color-primary), #ffd700);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-submit-premium:hover {
    color: #050505;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 164, 55, 0.4);
}

.btn-submit-premium:hover::after {
    opacity: 1;
}

@media (max-width: 1200px) {
    .contact-left-col, .contact-right-col {
        padding: 6rem 5%;
    }
}

@media (max-width: 992px) {
    .contact-section-new {
        flex-direction: column;
    }
    .contact-left-col, .contact-right-col {
        flex: none;
        width: 100%;
        padding: 5rem 1.5rem;
        align-items: center; /* Centrar en móvil */
        text-align: center;
    }
    .contact-left-col > *, .contact-right-col > * {
        max-width: 100%;
    }
    .contact-methods-list {
        align-items: center;
        width: 100%;
    }
    .contact-method-item {
        width: 100%;
        text-align: left;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
}
/* ========================================
   NEW DARK PREMIUM ADVICE SECTION
   ======================================== */
.section-dark-premium {
    background-color: #050505;
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.advice-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
}

.advice-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    max-width: 1000px;
    margin: 0 auto 2.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #ffffff !important; /* Garantizar visibilidad absoluta */
}

.advice-title span.text-gradient-gold {
    display: inline;
    font-size: inherit;
    font-weight: 800;
}

.advice-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 850px;
    margin: 0 auto 5rem;
    line-height: 1.8;
}

.advice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.advice-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.advice-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.advice-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 164, 55, 0.3);
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.advice-card:hover::before {
    transform: scaleX(1);
}

.advice-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.3;
}

.advice-card p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.7;
}

.advice-footer-text {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

@media (max-width: 1200px) {
    .advice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-dark-premium {
        padding: 6rem 1.5rem;
    }
    .advice-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .advice-card {
        padding: 2.5rem 2rem;
    }
}

/* ========================================
   PREMIUM WHITE PROCESS SECTION (BENTO STYLE)
   ======================================== */
.section-premium-white {
    background-color: #f1f5f9; /* Gris premium suave */
    color: #050505;
    padding: 10rem 0;
    position: relative;
}

.process-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 6rem;
}

.process-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #050505;
    letter-spacing: -1.5px;
}

.process-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 1.5rem;
}

.process-card {
    background: #ffffff; /* Blanco puro para resaltar sobre el gris */
    border: 1px solid rgba(0,0,0,0.04);
    padding: 3.5rem 2.5rem;
    border-radius: 32px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.process-card:hover {
    background: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
    transform: translateY(-15px);
}

.process-icon-box {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon-box {
    background: var(--color-primary);
    color: white;
    transform: rotate(-10deg);
}

.process-number {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(0,0,0,0.03);
    transition: all 0.5s ease;
    pointer-events: none;
}

.process-card:hover .process-number {
    color: rgba(212, 164, 55, 0.08);
    transform: scale(1.1);
}

.process-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: #050505;
    letter-spacing: -0.5px;
}

.process-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-premium-white {
        padding: 6rem 1.5rem;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .process-title {
        font-size: 2.5rem;
    }
}

/* ========================================
   SECTION CLOSING TEXTS (all sections)
   ======================================== */
.section-closing-text {
    text-align: center;
    max-width: 820px;
    margin: 3.5rem auto 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #64748b;
    font-style: italic;
}

.section-closing-text.on-dark {
    color: rgba(255, 255, 255, 0.55);
}

/* ========================================
   NEW CONTACT BUBBLES SECTION
   ======================================== */
.contact-bubbles-section {
    background: #f5f5f7;
    padding: 7rem 0;
}

.contact-bubbles-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
    align-items: start;
}

.contact-bubble {
    border-radius: 40px;
    overflow: hidden;
}

/* Dark bubble — left */
.contact-bubble-dark {
    background: #050505;
    color: white;
    padding: 4rem 3.5rem;
}

.contact-bubble-dark .cb-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(212,164,55,0.12);
    border: 1px solid rgba(212,164,55,0.25);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.contact-bubble-dark h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: white;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.contact-bubble-dark .cb-desc {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.cb-methods {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cb-method {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    transition: background 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.cb-method:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--color-primary);
}

.cb-method-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212,164,55,0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.cb-method:hover .cb-method-icon {
    background: var(--color-primary);
    color: #050505;
}

.cb-method-info strong {
    display: block;
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
}

.cb-method-info span {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
}

/* Light bubble — right (form) */
.contact-bubble-light {
    background: white;
    padding: 4rem 3.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.contact-bubble-light h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: #050505;
    margin-bottom: 0.8rem;
}

.contact-bubble-light .cb-form-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cb-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.cb-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cb-field.full { grid-column: 1 / -1; }

.cb-field label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #374151;
    text-transform: uppercase;
}

.cb-field input,
.cb-field select,
.cb-field textarea {
    padding: 0.85rem 1.1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #050505;
    background: #f9fafb;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    width: 100%;
}

.cb-field input:focus,
.cb-field select:focus,
.cb-field textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212,164,55,0.12);
    background: white;
}

.cb-field textarea {
    resize: vertical;
    min-height: 110px;
}

.cb-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2rem;
    border-radius: 999px;
    background: #25D366;
    color: white;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 30px rgba(37,211,102,0.3);
    width: 100%;
    margin-top: 0.5rem;
}

.cb-submit:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37,211,102,0.4);
}

.cb-privacy-note {
    text-align: center;
    font-size: 0.78rem;
    color: #94a3b8;
    margin-top: 0.8rem;
}

@media (max-width: 1024px) {
    .contact-bubbles-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-bubble-dark,
    .contact-bubble-light {
        padding: 2.5rem 1.5rem;
        border-radius: 28px;
    }
    .cb-form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   COOKIE CONSENT
   ======================================== */
.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1400;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 18px;
  color: var(--color-text-white);
  background: rgba(11, 11, 13, 0.96);
  border: 1px solid rgba(212, 164, 55, 0.35);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.cookie-consent.is-visible {
  display: flex;
}

.cookie-consent p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  margin: 0;
}

.cookie-consent strong {
  display: block;
  color: var(--color-text-white);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.cookie-consent a {
  color: var(--color-primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-button {
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--color-text-white);
  cursor: pointer;
  font-weight: 900;
  transition: 0.2s ease;
}

.cookie-button:hover {
  transform: translateY(-1px);
  border-color: var(--color-primary);
}

.cookie-button.accept {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-black);
}

.cookie-button.accept:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: var(--color-text-white);
}

@media (max-width: 760px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-button {
    width: 100%;
  }
}

