/* FUENTE */
@font-face {
    font-family: 'AvantGarde';
    src: url('fonts/ITCAvantGardeGothicMedium.otf') format('truetype');
}

/* BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ============ LOADING SCREEN ============ */
.loader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-text {
    font-size: 6rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -3px;
    display: flex;
    gap: 4px;
    overflow: hidden;
}
.loader-text span {
    display: inline-block;
    animation: loaderJump 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(100%);
}
.loader-text span:nth-child(1) { animation-delay: 0.05s; }
.loader-text span:nth-child(2) { animation-delay: 0.15s; }
.loader-text span:nth-child(3) { animation-delay: 0.25s; }
.loader-text span:nth-child(4) { animation-delay: 0.35s; }
.loader-text span:nth-child(5) { animation-delay: 0.45s; color: #00e5ff; }
@keyframes loaderJump {
    to { opacity: 1; transform: translateY(0); }
}
.loader-bar {
    position: absolute;
    bottom: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
}
.loader-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, #00e5ff, #fff, #00e5ff, transparent);
    animation: loaderBar 1.8s ease-in-out infinite;
}
@keyframes loaderBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #00e5ff, #0066ff, #ff4655);
    z-index: 9998;
    box-shadow: 0 0 10px rgba(0,229,255,0.7);
    transition: width 0.1s linear;
}

/* ============ CURSOR PERSONALIZADO ============ */
@media (hover: hover) and (pointer: fine) {
    body { cursor: none; }
    a, button, input, select, textarea { cursor: none; }

    .cursor-dot, .cursor-ring {
        position: fixed;
        top: 0; left: 0;
        pointer-events: none;
        z-index: 9997;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }
    .cursor-dot {
        width: 8px; height: 8px;
        background: #00e5ff;
        box-shadow: 0 0 15px #00e5ff;
        transition: transform 0.15s ease, width 0.25s ease, height 0.25s ease;
    }
    .cursor-ring {
        width: 40px; height: 40px;
        border: 1.5px solid rgba(0,0,0,0.4);
        transition: transform 0.2s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    }
    .cursor-hover .cursor-dot { width: 0; height: 0; }
    .cursor-hover .cursor-ring {
        width: 70px; height: 70px;
        border-color: #00e5ff;
        background: rgba(0,229,255,0.1);
    }
}

/* ============ GRANO / NOISE ============ */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9996;
    opacity: 0.08;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: grainMove 0.8s steps(4) infinite;
}
@keyframes grainMove {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-5%, -3%); }
    50% { transform: translate(3%, 5%); }
    75% { transform: translate(-3%, 3%); }
}

body {
    font-family: 'AvantGarde', sans-serif;
    background-color: #ffffff;
    color: #000000;
    overflow-x: hidden;
    cursor: default;
}

/* ============ FONDO DINÁMICO GLOBAL ============ */
.bg-mesh {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.bg-mesh::before,
.bg-mesh::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    animation: meshFloat 22s ease-in-out infinite;
}
.bg-mesh::before {
    width: 550px; height: 550px;
    background: radial-gradient(circle, #00e5ff 0%, transparent 70%);
    top: -10%; left: -10%;
}
.bg-mesh::after {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #ffb3c1 0%, transparent 70%);
    bottom: -15%; right: -10%;
    animation-delay: -11s;
    opacity: 0.25;
}
@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, -60px) scale(1.15); }
}

/* Grid sutil */
.bg-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

/* Cursor glow */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,229,255,0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
    transition: opacity 0.3s;
}

/* Todo sobre el fondo */
.main-slider-container,
.navbar,
.welcome-intro,
.product-scroll-area,
.contact-section,
.comparacion-section,
.info-container { position: relative; z-index: 2; }

/* ============ MARQUEE / BANNER SCROLL ============ */
.marquee {
    overflow: hidden;
    background: #000;
    color: #fff;
    padding: 22px 0;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeSlide 30s linear infinite;
    gap: 60px;
    white-space: nowrap;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 60px;
}
.marquee span::after {
    content: '✦';
    color: #00e5ff;
    font-size: 2rem;
}
.marquee .outlined {
    -webkit-text-stroke: 1.5px #fff;
    color: transparent;
}
@keyframes marqueeSlide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============ KINETIC SPLIT TEXT ============ */
.split-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%) rotate(8deg);
    transition: opacity 0.6s, transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.in-view .split-char, .split-ready .split-char {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

/* ============ STATS COUNTER SECTION ============ */
.stats-section {
    padding: 120px 5%;
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0,229,255,0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(255,70,85,0.12) 0%, transparent 40%);
    animation: statsPulse 8s ease-in-out infinite;
}
@keyframes statsPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}
.stats-grid {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}
.stat-item {
    padding: 40px 20px;
    border-left: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.4s ease;
}
.stat-item:first-child { border-left: none; }
.stat-item:hover { transform: translateY(-8px); }
.stat-num {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, #00e5ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
}
.stat-label {
    margin-top: 15px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.6;
    font-family: sans-serif;
}

/* ============ BRANDS MARQUEE ============ */
.brands-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.brands-title {
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 40px;
    font-family: sans-serif;
}
.brands-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: marqueeSlide 25s linear infinite;
    align-items: center;
}
.brand {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: #000;
    opacity: 0.15;
    transition: opacity 0.4s ease, color 0.4s ease, transform 0.4s ease;
    white-space: nowrap;
}
.brand:hover {
    opacity: 1;
    color: #00a8c7;
    transform: scale(1.1);
}

/* ============ FEATURES GRID ============ */
.features-section {
    padding: 140px 5%;
    background: linear-gradient(180deg, #fff 0%, #f5f9fc 100%);
    position: relative;
    z-index: 2;
}
.features-section h2 {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1;
}
.features-section .section-sub {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.55;
    margin-bottom: 80px;
    letter-spacing: 1px;
}
.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}
.feature-card {
    padding: 45px 35px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s, border-color 0.5s;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00e5ff, #0066ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border-color: rgba(0,229,255,0.3);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 60px; height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    background: linear-gradient(135deg, #000, #1a1a1a);
    color: #00e5ff;
    border-radius: 16px;
    margin-bottom: 25px;
    transition: transform 0.5s ease;
}
.feature-card:hover .feature-icon {
    transform: rotate(-8deg) scale(1.1);
}
.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.feature-card p {
    font-family: sans-serif;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Magnetic / reveal */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-up.in-view { opacity: 1; transform: translateY(0); }


/* Responsive nuevas secciones */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; letter-spacing: -1px; }
    .welcome-intro { padding: 80px 5%; }
    .welcome-intro::before { font-size: 12rem; }
    .product-row, .product-row.reverse { flex-direction: column; padding: 60px 6%; gap: 30px; }
    .product-text h2 { font-size: 2rem; }
    .product-text, .product-image { transform: none !important; flex: auto; max-width: 100%; }
    .loader-text { font-size: 3rem; }
    .marquee span { font-size: 1.8rem; }
    .stat-num { font-size: 3rem; }
    .stat-item { border-left: none; }
    .features-section h2 { font-size: 2.2rem; }
    .info-title { font-size: 2.2rem; }
    .info-container::before { font-size: 8rem; }
    .brand { font-size: 1.6rem; }
}
/* CONTENEDOR PRINCIPAL */
.main-container-store {
    width: 100%;
    min-height: 100vh;
    background: #fff;
}

/* NAVBAR - con efecto glass y sticky */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    z-index: 100;
    transition: padding 0.35s ease, box-shadow 0.35s ease;
    animation: navDrop 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.navbar.scrolled {
    padding: 10px 5%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
@keyframes navDrop {
    from { opacity: 0; transform: translateY(-100%); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-right a {
    position: relative;
}
.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00e5ff, #000);
    transition: width 0.35s ease;
}
.nav-right a:hover::after { width: 100%; }

/* Contenedor unificado para logo y nombre */
.brand-container {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Espacio entre el logo y el texto */
}

/* Wrapper del logo */
.logo-wrapper-small {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.small-logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Título de la tienda - AHORA MÁS PEQUEÑO */
.company-name {
    font-size: 4rem;
    /* REDUCIDO DRÁSTICAMENTE */
    letter-spacing: 1.5px;
    /* Letras más separadas */
    font-weight: bold;
}

.nav-right a {
    color: #000;
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.nav-right a:hover {
    opacity: 1;
}

/* INTRO - HERO DRAMÁTICO */
.welcome-intro {
    padding: 120px 5% 140px;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.welcome-intro::before {
    content: 'AVANT';
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    font-size: 28rem;
    font-weight: 900;
    color: rgba(0,0,0,0.025);
    letter-spacing: -15px;
    z-index: 0;
    pointer-events: none;
    animation: ghostSlide 20s ease-in-out infinite;
}
@keyframes ghostSlide {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-40px); }
}

.welcome-intro > * { position: relative; z-index: 1; }

.hero-title {
    font-size: 6.5rem;
    margin-bottom: 20px;
    line-height: 0.95;
    letter-spacing: -4px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 40%, #00e5ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroReveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.55;
    margin-bottom: 40px;
    letter-spacing: 2px;
    animation: heroReveal 1.2s 0.15s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}
@keyframes heroReveal {
    from { opacity: 0; transform: translateY(60px); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.btn-learn {
    display: inline-block;
    padding: 16px 45px;
    border: 2px solid #000;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease, transform 0.4s ease;
    animation: heroReveal 1.2s 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}
.btn-learn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000, #222);
    transform: translateX(-101%);
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: -1;
}
.btn-learn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}
.btn-learn:hover::before { transform: translateX(0); }

/* SECCIÓN PRODUCTOS ESTILO SAMSUNG */
.product-scroll-area {
    padding: 50px 0;
}

.product-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 100px 8%;
    min-height: auto;
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-row.in-view {
    opacity: 1;
    transform: translateY(0);
}

.product-row.reverse { flex-direction: row-reverse; }

.product-text {
    flex: 0 1 450px;
    max-width: 480px;
    transform: translateX(-60px);
    opacity: 0;
    transition: opacity 1s 0.2s ease, transform 1s 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-row.reverse .product-text { transform: translateX(60px); }
.product-row.in-view .product-text { transform: translateX(0); opacity: 1; }

.product-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1;
    letter-spacing: -1.5px;
    position: relative;
    display: inline-block;
}
.product-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #00e5ff, transparent);
    transition: width 0.8s 0.5s ease;
}
.product-row.in-view .product-text h2::after { width: 80px; }

.product-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 35px;
    font-family: sans-serif;
    line-height: 1.7;
}

.product-image {
    flex: 0 1 450px;
    display: flex;
    justify-content: center;
    transform: translateX(60px) scale(0.9);
    opacity: 0;
    transition: opacity 1.1s 0.25s ease, transform 1.1s 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}
.product-row.reverse .product-image { transform: translateX(-60px) scale(0.9); }
.product-row.in-view .product-image { transform: translateX(0) scale(1); opacity: 1; }

.product-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(0,229,255,0.2) 0%, transparent 60%);
    filter: blur(40px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.product-row:hover .product-image::before { opacity: 1; }

.product-image img {
    max-width: 100%;
    max-height: 450px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
    animation: floatImg 6s ease-in-out infinite;
}
.product-row:hover .product-image img {
    transform: scale(1.08) rotate(-1deg);
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.25));
}
@keyframes floatImg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* BOTONES DE PRODUCTO */
.product-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.link-more {
    color: #000;
    font-weight: bold;
}

.btn-buy {
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3), 0 0 25px rgba(0,229,255,0.3);
}
.link-more {
    position: relative;
    transition: color 0.3s ease;
}
.link-more::after {
    content: '→';
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.3s ease;
}
.link-more:hover { color: #00a8c7; }
.link-more:hover::after { transform: translateX(6px); }

/* SECCIÓN INFO */
.info-container {
    background: linear-gradient(180deg, #f8f8f8 0%, #eef4f8 100%);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}
.info-container::before {
    content: 'BESPOKE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22rem;
    font-weight: 900;
    color: rgba(0,0,0,0.02);
    letter-spacing: -10px;
    pointer-events: none;
    white-space: nowrap;
}
.info-title {
    font-size: 3.5rem;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 15px;
}
.info-title .cyan { color: #00a8c7; }
.info-description, .info-description-secondary {
    font-family: sans-serif;
    line-height: 1.7;
    color: #444;
    margin: 20px 0;
}
.btn-contactar {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 40px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}
.btn-contactar:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #000, #00a8c7);
}

.btn-back {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 40px;
}

/* ========================================= */
/* AJUSTES PARA LA IMAGEN EN LA SECCIÓN INFO */
/* ========================================= */

/* Contenedor de la imagen (reemplaza al placeholder dashed) */
.image-wrapper-featured {
    width: 100%;
    height: 80vh;
    /* Ocupa gran parte de la altura de la pantalla */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
    /* Bordes redondeados sutiles */
    /* Opcional: un ligero brillo cian de fondo para integrarla */
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.1);
}

/* La imagen real */
.featured-info-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Mantiene la proporción de la nevera sin cortarla */
    transition: transform 0.5s ease;
}

/* Efecto hover sutil en la imagen */
.image-wrapper-featured:hover .featured-info-image {
    transform: scale(1.03);
    /* Se agranda un poco al pasar el ratón */
}

/* ==================== COMPARADOR ==================== */
.comparacion-section {
    padding: 80px 5%;
    background: #f8f8f8;
    text-align: center;
    border-top: 1px solid #eee;
}

.comparacion-titulo {
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.comparacion-subtitulo {
    font-size: 1rem;
    opacity: 0.6;
    margin-bottom: 40px;
}

.comparacion-selectores {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.selector-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 260px;
}

.selector-col label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0.6;
    letter-spacing: 1px;
}

.selector-col select {
    padding: 14px 18px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.3s;
}

.selector-col select:focus {
    outline: none;
    border-color: #000;
}

.comparacion-vs {
    font-size: 1.8rem;
    font-weight: bold;
    opacity: 0.2;
    margin-top: 20px;
}

.comparacion-tabla-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
}

.comparacion-tabla {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    text-align: left;
    font-size: 0.9rem;
}

.comparacion-tabla thead th {
    background: #000;
    color: #fff;
    padding: 16px 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparacion-tabla thead th:first-child {
    width: 35%;
}

.comparacion-tabla tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-family: sans-serif;
}

.comparacion-tabla tbody tr:last-child td {
    border-bottom: none;
}

.comparacion-tabla tbody tr.comp-diferencia td {
    background: #fffde7;
}

.comparacion-tabla tbody td:first-child {
    font-weight: bold;
    font-family: inherit;
    color: #333;
}

@media (max-width: 600px) {
    .comparacion-selectores {
        flex-direction: column;
        gap: 15px;
    }

    .comparacion-vs {
        margin-top: 0;
    }

    .selector-col {
        min-width: 100%;
    }

    .comparacion-tabla {
        font-size: 0.8rem;
    }

    .comparacion-tabla thead th,
    .comparacion-tabla tbody td {
        padding: 10px 12px;
    }
}

/* ============ BESPOKE SECTION ============ */
.bespoke-section {
    padding: 140px 5%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0d1b2a 100%);
    color: #fff;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.bespoke-section::before {
    content: 'BESPOKE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22rem;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    letter-spacing: -10px;
    pointer-events: none;
    white-space: nowrap;
}
.bespoke-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.bespoke-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    padding: 8px 20px;
    border: 1px solid rgba(0,229,255,0.4);
    border-radius: 50px;
    color: #00e5ff;
    background: rgba(0,229,255,0.07);
    margin-bottom: 25px;
}
.bespoke-text h2 {
    font-size: 3.5rem;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 18px;
}
.bespoke-text .cyan { color: #00e5ff; }
.bespoke-sub {
    font-family: sans-serif;
    font-size: 1.1rem;
    opacity: 0.6;
    margin-bottom: 30px;
    letter-spacing: 1px;
}
.bespoke-text p {
    font-family: sans-serif;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    font-size: 1rem;
}
.bespoke-text .btn-buy {
    margin-top: 20px;
    background: #fff;
    color: #000;
    padding: 16px 40px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.bespoke-text .btn-buy:hover {
    background: #00e5ff;
    color: #000;
}
.bespoke-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,229,255,0.15), 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bespoke-image:hover img {
    transform: scale(1.04) rotate(-1deg);
}
@media (max-width: 768px) {
    .bespoke-content { grid-template-columns: 1fr; gap: 40px; }
    .bespoke-text h2 { font-size: 2.2rem; }
    .bespoke-section { padding: 80px 5%; }
    .bespoke-section::before { font-size: 8rem; }
}

/* SECCIÓN CONTACTO */
.contact-section {
    padding: 80px 5%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #eee;
}

.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-form-container {
    width: 100%;
    max-width: 600px;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: bold;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #000;
}

.btn-submit {
    background: #000;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #333;
}

/* Ajuste responsivo para pantallas pequeñas */
@media (max-width: 1024px) {
    .info-content-wrapper {
        grid-template-columns: 1fr;
        /* Texto arriba, imagen abajo en tablets/móviles */
        gap: 40px;
    }

    .image-wrapper-featured {
        height: 50vh;
    }
}

/* DISEÑO DEL FORMULARIO DE CONTACTO */
.contact-section {
    padding: 100px 5%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    background-color: #ffffff;
}

.contact-form-container h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.form-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0.7;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    background-color: #f9f9f9;
}

.form-group input:focus {
    outline: none;
    border-color: #000;
    background-color: #fff;
}

.btn-submit {
    background: #000;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    width: 100%;
    margin-top: 10px;
}

.btn-submit {
    position: relative;
    overflow: hidden;
}
.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00e5ff, #0066ff);
    transform: translateX(-101%);
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: 0;
}
.btn-submit span, .btn-submit { z-index: 1; }
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25), 0 0 30px rgba(0,229,255,0.3);
}
.btn-submit:hover::before { transform: translateX(0); }
.btn-submit > * { position: relative; z-index: 1; }

/* Responsivo para móviles */
@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}