* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    font-family: 'Arial Black', sans-serif;
    color: #fff;
    overflow-x: hidden;
    transition: opacity 0.5s ease;
}

/* Evitar scroll antes de que termine el video */
body.no-scroll {
    overflow: hidden;
}

/* Logo fijo */
.brand-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
}
.brand-logo img { width: 60px; height: auto; }

/* Configuración Hero y Video */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 10;
}

.bg-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Botella oculta inicial, en su posición final */
.bottle-overlay-container {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(1.1); /* Ligeramente más grande para el efecto inicial */
    max-width: 400px;
    width: 80%;
    z-index: 5;
    opacity: 0; /* Oculta */
    visibility: hidden;
    transition: all 1s ease-out; /* Animación suave para aparecer */
}

/* Botella activa (mostrada por JS) */
.bottle-overlay-container.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1); /* Vuelve a su tamaño normal */
}

.bottle-placeholder-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
}

.overlay {
    position: absolute;
    z-index: 10;
    text-align: center;
}

.hero-text h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    letter-spacing: 1.2rem;
    line-height: 0.9;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.spaced { font-size: clamp(2.5rem, 8vw, 5rem) !important; margin-top: 10px; }


/* SECCIÓN PRODUCTO CON PARALLAX */
.product-view {
    position: relative;
    height: 100vh;
    overflow: hidden; /* Importante para el parallax */
    z-index: 5; /* Por debajo de la hero */
}

/* Capa de fondo fija que se mueve (Parallax puro) */
.parallax-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 120%; /* Más alto para tener espacio de movimiento */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* El secreto del parallax puro */
    z-index: 1;
    will-change: transform; /* Optimización de rendimiento */
}

/* Contenido sobre el parallax */
.content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    padding: 12px 35px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}
.btn-primary:hover { background: #fff; color: #000; }
