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

/* Optimización para usuarios que prefieren menos movimiento */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:root {
    /* Premium Color Palette */
    --onyx-black: #0A0A0A;        /* Fondo principal - lujo, misterio, elegancia */
    --intense-red: #B22222;        /* Botones, títulos y detalles premium */
    --metallic-gold: #D4AF37;      /* Acentos de lujo y distinción */
    --charcoal-gray: #1C1C1C;      /* Fondos secundarios y degradados */
    --smoke-white: #F5F5F5;        /* Textos claros y contrastados */
    
    /* Legacy colors for compatibility */
    --primary-red: var(--intense-red);
    --primary-gold: var(--metallic-gold);
    --primary-black: var(--onyx-black);
    --primary-white: var(--smoke-white);
    --dark-bg: var(--onyx-black);
    --dark-gray: var(--charcoal-gray);
    --light-gray: var(--smoke-white);
    
    /* Premium Typography */
    --font-logo: 'Cormorant Garamond', serif;     /* Logo y títulos principales - elegante y clásica */
    --font-titles: 'Montserrat', sans-serif;      /* Subtítulos y claims - moderna y sofisticada */
    --font-body: 'Inter', sans-serif;             /* Texto descriptivo y narrativo - limpia y legible */
    --font-taurunum: 'Taurunum SC', serif;        /* Fuente especial para elementos destacados */
    --font-taurunum-regular: 'Taurunum Regular', serif; /* Fuente local Taurunum W00 Regular para MONTANA RUM */
    --font-good-brush: 'Good Brush', cursive;     /* Fuente personalizada para títulos de sección */
    
    /* Legacy fonts for compatibility */
    --font-primary: var(--font-logo);
    --font-secondary: var(--font-titles);
    --font-accent: var(--font-titles);
    
    /* ===== SPACING ===== */
    --container-padding: 2rem;
    --section-padding: 4rem 0;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== FUENTE LOCAL TAURUNUM W00 REGULAR ===== */
@font-face {
    font-family: 'Taurunum Regular';
    src: url('Taurunum W00 Regular/Taurunum W00 Regular.ttf') format('truetype'),
         url('Taurunum W00 Regular/Web Fonts/37d7c135e209600163815acd9c0fa16d.woff2') format('woff2'),
         url('Taurunum W00 Regular/Web Fonts/37d7c135e209600163815acd9c0fa16d.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===== FUENTE LOCAL GOOD BRUSH ===== */
@font-face {
    font-family: 'Good Brush';
    src: url('good/Good Brush.woff') format('woff'),
         url('good/Good Brush.ttf') format('truetype'),
         url('good/Good Brush.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--smoke-white);
    background: var(--onyx-black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(220, 20, 60, 0.2);
    height: 70px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem var(--container-padding);
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
}

.logo {
    z-index: 1001;
    display: flex;
    align-items: center;
    min-width: 100px;
    height: 45px;
}

.logo-text {
    font-family: var(--font-taurunum-regular);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--intense-red);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
    text-shadow: 0 2px 4px rgba(178, 34, 34, 0.3);
}

.logo-text:hover {
    color: var(--intense-red);
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(178, 34, 34, 0.4);
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { 
        text-shadow: 0 2px 4px rgba(178, 34, 34, 0.3),
                     0 0 10px rgba(178, 34, 34, 0.1);
    }
    50% { 
        text-shadow: 0 4px 8px rgba(178, 34, 34, 0.6),
                     0 0 20px rgba(178, 34, 34, 0.3),
                     0 0 30px rgba(212, 175, 55, 0.2);
    }
}

@keyframes logoCutOut {
    0%, 100% { 
        filter: 
            drop-shadow(2px 2px 0px var(--primary-red))
            drop-shadow(4px 4px 0px var(--primary-black))
            drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    }
    50% { 
        filter: 
            drop-shadow(3px 3px 0px var(--primary-red))
            drop-shadow(6px 6px 0px var(--primary-black))
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
    }
}

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

.nav-link {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--intense-red);
    transition: var(--transition);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-white);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--primary-white);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ===== AGE VERIFICATION MODAL ===== */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: modalFadeIn 0.5s ease;
}

.age-verification-modal.hidden {
    display: none;
}

.age-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid var(--intense-red);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(178, 34, 34, 0.3);
    animation: modalSlideIn 0.5s ease;
}

.age-modal-header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid rgba(178, 34, 34, 0.2);
}

.age-logo {
    margin-bottom: 1rem;
}

.age-logo img {
    height: 60px;
    width: auto;
    filter: brightness(1.1);
}

.age-modal-header h2 {
    font-family: var(--font-taurunum);
    font-size: 2rem;
    font-weight: 700;
    color: var(--smoke-white);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.age-modal-body {
    padding: 2rem;
}

.age-icon {
    font-size: 3rem;
    color: var(--intense-red);
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.age-message {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--smoke-white);
    margin-bottom: 1.5rem;
}

.age-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(178, 34, 34, 0.1);
    border: 1px solid rgba(178, 34, 34, 0.3);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.age-warning i {
    color: var(--intense-red);
    font-size: 1.2rem;
}

.age-warning span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.8);
    font-weight: 500;
}

.age-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem 2rem 2rem;
}

.age-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.age-btn-primary {
    background: linear-gradient(135deg, var(--intense-red), rgba(178, 34, 34, 0.8));
    color: var(--smoke-white);
    box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
}

.age-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(178, 34, 34, 0.4);
}

.age-btn-secondary {
    background: transparent;
    color: var(--smoke-white);
    border: 2px solid rgba(245, 245, 245, 0.3);
}

.age-btn-secondary:hover {
    background: rgba(245, 245, 245, 0.1);
    border-color: var(--smoke-white);
    transform: translateY(-2px);
}

.age-modal-footer {
    padding: 1rem 2rem 2rem 2rem;
    border-top: 1px solid rgba(178, 34, 34, 0.2);
}

.age-modal-footer p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.6);
    margin: 0;
    font-style: italic;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Age Modal */
/* Optimización de filtros blur para móviles */
@media (max-width: 768px) {
    .header {
        backdrop-filter: blur(5px);
    }
    
    .age-verification-modal {
        backdrop-filter: blur(5px);
    }
    
    .modal-content {
        backdrop-filter: blur(5px);
    }
    
    .product-modal {
        backdrop-filter: blur(5px);
    }
    
    .sensory-modal {
        backdrop-filter: blur(5px);
    }
    
    .nav-menu {
        backdrop-filter: blur(5px);
    }
}

@media (max-width: 768px) {
    .age-verification-modal {
        padding: 1rem;
    }
    
    .age-modal-content {
        max-width: 100%;
    }
    
    .age-modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .age-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .age-modal-body {
        padding: 1.5rem;
    }
    
    .age-icon {
        font-size: 2.5rem;
    }
    
    .age-message {
        font-size: 1rem;
    }
    
    .age-modal-actions {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .age-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===== MAIN CONTENT (Hidden until age verification) ===== */
body:not(.age-verified) .header,
body:not(.age-verified) .hero,
body:not(.age-verified) .historia,
body:not(.age-verified) .coleccion,
body:not(.age-verified) .experiencia,
body:not(.age-verified) .lifestyle,
body:not(.age-verified) .contacto,
body:not(.age-verified) .footer {
    display: none;
}

body.age-verified .header,
body.age-verified .hero,
body.age-verified .historia,
body.age-verified .coleccion,
body.age-verified .experiencia,
body.age-verified .lifestyle,
body.age-verified .contacto,
body.age-verified .footer {
    display: block;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 70px 0 0 0;
}

/* ===== HERO BACKGROUND ===== */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('montana6.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.15;
    filter: blur(1px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.8) 40%,
        rgba(0, 0, 0, 0.3) 70%,
        transparent 100%
    );
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--intense-red);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles .particle:nth-child(2) {
    top: 40%;
    left: 20%;
    animation-delay: 1s;
}

.hero-particles .particle:nth-child(3) {
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

.hero-particles .particle:nth-child(4) {
    top: 30%;
    left: 30%;
    animation-delay: 3s;
}

.hero-particles .particle:nth-child(5) {
    top: 70%;
    left: 25%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

/* ===== IMÁGENES DE FONDO DINÁMICAS ===== */
.hero-bg-image,
.section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 1;
}

.hero-bg-image.active,
.section-bg-image.active {
    opacity: 0.3;
}

.hero-bg-image[data-image="montana1.jpg"] {
    background-image: url('montana1.jpg');
}

.hero-bg-image[data-image="montana2.jpg"] {
    background-image: url('montana2.jpg');
}

.hero-bg-image[data-image="montana3.jpg"] {
    background-image: url('montana3.jpg');
}

.section-bg-image[data-image="montana1.jpg"] {
    background-image: url('montana1.jpg');
}

.section-bg-image[data-image="montana2.jpg"] {
    background-image: url('montana2.jpg');
}

.section-bg-image[data-image="montana3.jpg"] {
    background-image: url('montana3.jpg');
}

.section-bg-image[data-image="montana4.jpg"] {
    background-image: url('montana4.jpg');
}

.section-bg-image[data-image="montana5.jpg"] {
    background-image: url('montana5.jpg');
}

.section-bg-image[data-image="montana6.jpg"] {
    background-image: url('montana6.jpg');
}

.section-bg-image[data-image="imageninicio.png"] {
    background-image: url('imageninicio.png');
}

.hero-image {
    display: none;
}

/* ===== HERO IMAGE CONTAINER ===== */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}


@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero-smoke {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><filter id="smoke"><feTurbulence baseFrequency="0.02" numOctaves="3" result="noise"/><feDisplacementMap in="SourceGraphic" in2="noise" scale="10"/></filter></defs><rect width="100" height="100" fill="rgba(255,255,255,0.05)" filter="url(%23smoke)"/></svg>');
    opacity: 0.3;
    animation: smokeFloat 20s ease-in-out infinite;
    z-index: 3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.6) 0%,
        rgba(28, 28, 28, 0.3) 40%,
        rgba(178, 34, 34, 0.1) 70%,
        rgba(10, 10, 10, 0.7) 100%
    );
    z-index: 2;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ===== HERO CONTAINER ===== */
.hero-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
    min-height: calc(100vh - 70px);
    padding: 2rem 0;
    width: 100%;
}

/* ===== HERO TEXT ===== */
.hero-text {
    text-align: left;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.hero-badge-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0;
}

.badge-text {
    font-family: var(--font-taurunum);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--intense-red);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.badge-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--intense-red), transparent);
    margin-left: 0.5rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-family: var(--font-taurunum);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--smoke-white);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.title-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--metallic-gold);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.title-description {
    display: block;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(245, 245, 245, 0.8);
    line-height: 1.6;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    max-width: 300px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-mobile-title {
    display: none;
}

.hero-title-mobile {
    font-family: var(--font-taurunum);
    font-size: 4rem;
    font-weight: 700;
    color: var(--smoke-white);
    text-align: center;
    margin: 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-logo {
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-logo-mobile {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-subtitle {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.hero-subtitle.desktop-only {
    text-align: center;
    margin: 0;
}

.hero-subtitle.mobile-only {
    text-align: center;
    margin: 0;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.hero-slogan {
    font-family: var(--font-titles);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--metallic-gold);
    margin: 0 auto;
    font-style: italic;
    letter-spacing: 1px;
    text-align: center;
    max-width: 600px;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(245, 245, 245, 0.9);
    line-height: 1.2;
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
}

/* ===== HERO FEATURES ===== */
.hero-features {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 600px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.8rem;
    background: rgba(28, 28, 28, 0.6);
    border: 1px solid rgba(178, 34, 34, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
}

.feature-item:hover {
    background: rgba(28, 28, 28, 0.8);
    border-color: var(--intense-red);
    transform: translateX(10px);
}

.feature-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--intense-red), rgba(178, 34, 34, 0.8));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1rem;
    color: var(--smoke-white);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.feature-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--smoke-white);
}

.feature-desc {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(245, 245, 245, 0.7);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--metallic-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 6s ease-in-out infinite;
}

.hero-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.hero-particles .particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.hero-particles .particle:nth-child(3) {
    top: 40%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.hero-particles .particle:nth-child(4) {
    top: 80%;
    left: 60%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.hero-particles .particle:nth-child(5) {
    top: 30%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 9s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-40px) translateX(-10px);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-20px) translateX(5px);
        opacity: 0.7;
    }
}

.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 20px;
}

.hero-badge span {
    color: var(--primary-gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-logo);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--smoke-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.title-line-1 {
    display: block;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--intense-red);
    text-shadow: 0 2px 8px rgba(178, 34, 34, 0.3);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    font-family: var(--font-taurunum-regular);
}

.title-line-2 {
    display: block;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--smoke-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: none;
    letter-spacing: 0.02em;
}



/* Animaciones premium */
@keyframes premiumGlow {
    0%, 100% { 
        text-shadow: 
            2px 2px 0px var(--intense-red),
            4px 4px 0px var(--onyx-black),
            6px 6px 0px var(--intense-red),
            0 0 30px rgba(178, 34, 34, 0.6),
            0 0 60px rgba(212, 175, 55, 0.4);
    }
    50% { 
        text-shadow: 
            3px 3px 0px var(--intense-red),
            6px 6px 0px var(--onyx-black),
            9px 9px 0px var(--intense-red),
            0 0 40px rgba(178, 34, 34, 0.8),
            0 0 80px rgba(212, 175, 55, 0.6);
    }
}

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.8));
    }
}

@keyframes sloganGlow {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    50% { 
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }
}

@keyframes titleFlicker {
    0%, 100% { 
        text-shadow: 
            1px 1px 0px var(--intense-red),
            2px 2px 0px var(--onyx-black);
    }
    50% { 
        text-shadow: 
            2px 2px 0px var(--intense-red),
            4px 4px 0px var(--onyx-black),
            0 0 15px rgba(212, 175, 55, 0.5);
    }
}

@keyframes titlePulse {
    0%, 100% { 
        text-shadow: 
            3px 3px 0px var(--intense-red),
            6px 6px 0px var(--onyx-black),
            9px 9px 0px var(--intense-red),
            0 0 40px rgba(245, 245, 245, 0.6);
    }
    50% { 
        text-shadow: 
            4px 4px 0px var(--intense-red),
            8px 8px 0px var(--onyx-black),
            12px 12px 0px var(--intense-red),
            0 0 60px rgba(245, 245, 245, 0.8);
    }
}

@keyframes smokeFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) rotate(2deg);
        opacity: 0.5;
    }
}

@keyframes cutOutSweep {
    0%, 100% { 
        opacity: 0;
        transform: translateX(-100%);
    }
    50% { 
        opacity: 1;
        transform: translateX(100%);
    }
}

@keyframes cutOutFlicker {
    0%, 100% { 
        text-shadow: 
            1px 1px 0px var(--primary-red),
            2px 2px 0px var(--primary-black);
    }
    50% { 
        text-shadow: 
            2px 2px 0px var(--primary-red),
            4px 4px 0px var(--primary-black),
            0 0 10px rgba(255, 215, 0, 0.5);
    }
}

@keyframes cutOutPulse {
    0%, 100% { 
        text-shadow: 
            3px 3px 0px var(--primary-red),
            6px 6px 0px var(--primary-black),
            9px 9px 0px var(--primary-red),
            0 0 30px rgba(255, 255, 255, 0.5);
    }
    50% { 
        text-shadow: 
            4px 4px 0px var(--primary-red),
            8px 8px 0px var(--primary-black),
            12px 12px 0px var(--primary-red),
            0 0 50px rgba(255, 255, 255, 0.8);
    }
}

.title-line-3 {
    display: block;
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.keyword-tag {
    background: rgba(178, 34, 34, 0.2);
    color: var(--intense-red);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(178, 34, 34, 0.4);
    transition: all 0.3s ease;
}

.keyword-tag:hover {
    background: rgba(178, 34, 34, 0.3);
    transform: translateY(-2px);
}

/* ===== HERO BUTTONS ===== */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

@media (min-width: 769px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        margin-top: 1rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--intense-red), rgba(178, 34, 34, 0.8));
    color: var(--smoke-white);
    box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(178, 34, 34, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--smoke-white);
    border: 2px solid rgba(245, 245, 245, 0.3);
}

.btn-secondary:hover {
    background: rgba(245, 245, 245, 0.1);
    border-color: var(--smoke-white);
    transform: translateY(-2px);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    height: 100%;
    padding: 2rem 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(178, 34, 34, 0.2);
    transition: all 0.4s ease;
    filter: brightness(1.1) contrast(1.1) saturate(1.1);
}

.hero-main-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(178, 34, 34, 0.4);
}

.hero-image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(
        45deg,
        rgba(178, 34, 34, 0.3),
        rgba(212, 175, 55, 0.2),
        rgba(178, 34, 34, 0.3)
    );
    border-radius: 30px;
    z-index: -1;
    opacity: 0.6;
    animation: glowPulse 3s ease-in-out infinite;
}



.btn {
    padding: 1rem 2.5rem;
    border: 1px solid var(--metallic-gold);
    border-radius: 0;
    font-family: var(--font-titles);
    font-size: 1rem;
    font-weight: 300;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    color: var(--smoke-white);
}

.btn-primary {
    background: var(--intense-red);
    color: var(--smoke-white);
    border-color: var(--intense-red);
}

.btn-primary:hover {
    background: var(--intense-red);
    color: var(--smoke-white);
    border-color: var(--intense-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(178, 34, 34, 0.4),
                0 0 20px rgba(178, 34, 34, 0.3);
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(178, 34, 34, 0.4),
                    0 0 20px rgba(178, 34, 34, 0.3);
    }
    50% { 
        box-shadow: 0 8px 25px rgba(178, 34, 34, 0.6),
                    0 0 30px rgba(178, 34, 34, 0.5),
                    0 0 40px rgba(212, 175, 55, 0.2);
    }
}

.btn-secondary {
    background: transparent;
    color: var(--metallic-gold);
    border-color: var(--metallic-gold);
}

.btn-secondary:hover {
    background: var(--intense-red);
    color: var(--smoke-white);
    border-color: var(--intense-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(178, 34, 34, 0.4);
}

.hero-bottles {
    animation: slideInRight 1s ease-out;
}

.bottle-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
    perspective: 1000px;
    padding: 2rem 0;
}

.bottle {
    width: 80px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 10px 10px 30px 30px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: bottleFloat 6s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.3);
}

.bottle:nth-child(2) {
    animation-delay: 1s;
    transform: scale(1.1);
}

.bottle:nth-child(3) {
    animation-delay: 2s;
    transform: scale(0.9);
}

@keyframes bottleFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

.bottle-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    animation: bottleGlow 4s ease-in-out infinite;
}

@keyframes bottleGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 1rem;
}

.section-title {
    font-family: var(--font-good-brush);
    font-size: 3rem;
    font-weight: 400;
    color: var(--intense-red);
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    text-shadow: 0 4px 8px rgba(178, 34, 34, 0.3);
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 0 4px 8px rgba(212, 175, 55, 0.3),
                     0 0 20px rgba(178, 34, 34, 0.2);
    }
    50% { 
        text-shadow: 0 4px 8px rgba(212, 175, 55, 0.5),
                     0 0 30px rgba(178, 34, 34, 0.4),
                     0 0 40px rgba(178, 34, 34, 0.3),
                     0 0 50px rgba(178, 34, 34, 0.1);
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--intense-red);
}

/* Estilos específicos para la sección de historia */
.historia-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--metallic-gold), var(--intense-red));
    color: var(--onyx-black);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-family: var(--font-taurunum);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: badgeGlow 3s ease-in-out infinite;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 20;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--metallic-gold);
    text-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
    margin-bottom: 0.5rem;
    text-align: center;
}

.title-sub {
    display: block;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--smoke-white);
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.section-subtitle {
    font-family: var(--font-titles);
    font-size: 1.1rem;
    color: rgba(245, 245, 245, 0.8);
    text-align: center;
    margin-top: 1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* ===== HISTORIA SECTION ===== */
.historia {
    padding: 6rem 0;
    background: var(--charcoal-gray);
    position: relative;
    overflow: hidden;
}

.historia-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(28, 28, 28, 0.8) 50%, rgba(10, 10, 10, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wood" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="%231C1C1C"/><path d="M0 10 L20 10" stroke="%23333" stroke-width="0.5"/><path d="M10 0 L10 20" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23wood)"/></svg>');
    z-index: 1;
}

.historia-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(178, 34, 34, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(212, 175, 55, 0.1) 100%
    );
    z-index: 2;
}

.historia-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.historia .section-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 15;
    display: block;
    visibility: visible;
    opacity: 1;
}

.historia-title {
    font-family: var(--font-good-brush);
    font-size: 3rem;
    font-weight: 400;
    color: var(--intense-red);
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    text-shadow: 0 4px 8px rgba(178, 34, 34, 0.3);
    display: block;
    visibility: visible;
    opacity: 1;
    z-index: 20;
    animation: titleGlow 4s ease-in-out infinite;
}

.historia-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--intense-red);
}

.historia-subtitle {
    font-family: var(--font-titles);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--smoke-white);
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0.3rem 0 0.8rem 0;
    text-align: center;
    display: block;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 20;
}

.historia-description-header {
    font-family: var(--font-titles);
    font-size: 1.1rem;
    color: rgba(245, 245, 245, 0.8);
    text-align: center;
    margin: 0.5rem 0 1.5rem 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.historia-text {
    margin-bottom: 3rem;
}

.historia-description {
    font-family: var(--font-titles);
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--smoke-white);
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 0 0 10px rgba(245, 245, 245, 0.1);
}

.historia-story {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.historia-stats .stat-card {
    background: rgba(28, 28, 28, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.historia-stats .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(178, 34, 34, 0.6) 50%, 
        transparent 100%);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(178, 34, 34, 0.3);
}

.historia-stats .stat-card:hover::before {
    opacity: 1;
    left: 100%;
    transition: left 0.5s ease, opacity 0.3s ease;
}

.historia-stats .stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--intense-red);
    box-shadow: 0 10px 30px rgba(178, 34, 34, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-family: var(--font-taurunum);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--intense-red);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(178, 34, 34, 0.5);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--smoke-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.historia-cta {
    text-align: center;
}

/* ===== MAESTRÍA SECTION ===== */
.maestria {
    padding: 6rem 0;
    background: var(--onyx-black);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.maestria-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(178, 34, 34, 0.1) 0%, rgba(10, 10, 10, 0.9) 70%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="woodgrain" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><rect width="10" height="10" fill="%230A0A0A"/><path d="M0 5 Q5 2 10 5 T20 5" stroke="%231C1C1C" stroke-width="0.5" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23woodgrain)"/></svg>');
    z-index: 1;
}

.maestria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.05) 0%,
        transparent 50%,
        rgba(178, 34, 34, 0.05) 100%
    );
    z-index: 2;
}

.maestria .section-header {
    position: relative;
    z-index: 15;
    text-align: center;
    margin-bottom: 3rem;
}

.maestria .section-title {
    font-family: var(--font-good-brush);
    font-size: 3rem;
    font-weight: 400;
    color: var(--intense-red);
    text-shadow: 0 4px 8px rgba(178, 34, 34, 0.3);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-transform: capitalize;
    display: block;
    visibility: visible;
    opacity: 1;
}

.maestria-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.maestria-video {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.botella-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1) saturate(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(10, 10, 10, 0.2) 0%,
        rgba(28, 28, 28, 0.1) 50%,
        rgba(178, 34, 34, 0.1) 100%
    );
    pointer-events: none;
}

.maestria-text {
    text-align: left;
}

.maestria-description {
    font-family: var(--font-titles);
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--smoke-white);
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    text-align: center;
}

.maestria-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.barrel-container {
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.barrel {
    width: 200px;
    height: 280px;
    background: linear-gradient(45deg, #8B4513 0%, #A0522D 50%, #8B4513 100%);
    border-radius: 100px 100px 20px 20px;
    position: relative;
    animation: barrelRotate 20s linear infinite;
    box-shadow: 
        0 0 20px rgba(139, 69, 19, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.barrel-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 260px;
    border: 3px solid #654321;
    border-radius: 90px 90px 15px 15px;
    box-shadow: 
        0 0 10px rgba(101, 67, 33, 0.5),
        inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.barrel-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 110px 110px 30px 30px;
    animation: barrelGlow 4s ease-in-out infinite alternate;
}

.cane-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cane {
    position: absolute;
    width: 8px;
    height: 200px;
    background: linear-gradient(180deg, #228B22 0%, #32CD32 50%, #228B22 100%);
    border-radius: 4px;
    animation: caneSway 6s ease-in-out infinite;
}

.cane:nth-child(1) {
    top: 20px;
    left: 50px;
    animation-delay: 0s;
    transform-origin: bottom;
}

.cane:nth-child(2) {
    top: 50px;
    right: 60px;
    animation-delay: 2s;
    transform-origin: bottom;
}

.cane:nth-child(3) {
    top: 80px;
    left: 80px;
    animation-delay: 4s;
    transform-origin: bottom;
}

@keyframes barrelRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes barrelGlow {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes caneSway {
    0%, 100% { 
        transform: rotate(0deg);
    }
    25% { 
        transform: rotate(5deg);
    }
    75% { 
        transform: rotate(-3deg);
    }
}

/* ===== EXPERIENCIA SENSORIAL SECTION ===== */
.experiencia {
    padding: 6rem 0;
    background: var(--charcoal-gray);
    position: relative;
    overflow: hidden;
}

/* ===== SENSORY CARD OVERLAY ===== */
.sensory-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(178, 34, 34, 0.2) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 0;
    backdrop-filter: blur(2px);
    z-index: 10;
    pointer-events: none;
}

.sensory-card:hover .sensory-overlay {
    opacity: 1;
    pointer-events: auto;
}

.sensory-overview {
    position: relative;
    z-index: 1;
}

.sensory-overview p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(245, 245, 245, 0.9);
    margin-bottom: 1.5rem;
}

.sensory-overlay {
    z-index: 10;
}

.sensory-overlay .btn-overlay {
    z-index: 11;
    position: relative;
}

/* ===== SENSORY MODAL ===== */
.sensory-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease;
}

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

.modal-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-icon i {
    font-size: 4rem;
    color: var(--intense-red);
    text-shadow: 0 4px 8px rgba(178, 34, 34, 0.3);
}

.modal-sensory-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.modal-sensory-details .note {
    background: rgba(178, 34, 34, 0.2);
    color: var(--intense-red);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(178, 34, 34, 0.4);
    transition: all 0.3s ease;
}

.modal-sensory-details .note:hover {
    background: rgba(178, 34, 34, 0.3);
    transform: translateY(-2px);
}

.modal-sensory-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-sensory-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(28, 28, 28, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.modal-sensory-features .feature-item:hover {
    border-color: var(--intense-red);
    background: rgba(28, 28, 28, 0.9);
    transform: translateX(5px);
}

.modal-sensory-features .feature-item i {
    font-size: 1.2rem;
    color: var(--metallic-gold);
    width: 20px;
    text-align: center;
}

.modal-sensory-features .feature-item span {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--smoke-white);
    font-weight: 300;
}

.experiencia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(178, 34, 34, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.experiencia-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sensory-card {
    background: rgba(28, 28, 28, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 0;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    isolation: isolate;
}

.sensory-card:hover {
    border-color: var(--intense-red);
    background: rgba(28, 28, 28, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(178, 34, 34, 0.3);
}

.experiencia .sensory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(178, 34, 34, 0.3) 50%, 
        transparent 100%);
    border-radius: 0;
    z-index: 0;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(178, 34, 34, 0.1);
    pointer-events: none;
}

.experiencia .sensory-card:hover::before {
    opacity: 1;
    left: 100%;
    transition: left 0.4s ease, opacity 0.3s ease;
}

/* Animación de reflejo sensorial eliminada - ahora es individual por hover */

.sensory-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
    background: transparent;
    border: 1px solid var(--intense-red);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--intense-red);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.sensory-icon:hover {
    background: rgba(178, 34, 34, 0.1);
    box-shadow: 0 0 15px rgba(178, 34, 34, 0.3);
}

.sensory-card h3 {
    font-family: var(--font-taurunum);
    font-size: 1.5rem;
    color: var(--intense-red);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(178, 34, 34, 0.3);
}

.sensory-card p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.sensory-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.sensory-details .note {
    background: transparent;
    border: 1px solid var(--intense-red);
    color: var(--intense-red);
    padding: 0.4rem 0.8rem;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.sensory-details .note:hover {
    background: var(--intense-red);
    color: var(--smoke-white);
    box-shadow: 0 0 10px rgba(178, 34, 34, 0.3);
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 20px rgba(212, 175, 55, 0.4),
            inset 0 0 20px rgba(0, 0, 0, 0.2);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 0 30px rgba(212, 175, 55, 0.6),
            inset 0 0 30px rgba(0, 0, 0, 0.3);
    }
}

/* ===== LIFESTYLE SECTION ===== */
.lifestyle {
    padding: 6rem 0;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.lifestyle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(28, 28, 28, 0.8) 50%, rgba(10, 10, 10, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="premium" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="%230A0A0A"/><circle cx="10" cy="10" r="1" fill="%23D4AF37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23premium)"/></svg>');
    background-size: cover;
    background-position: center;
}

.lifestyle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.8) 0%,
        rgba(28, 28, 28, 0.6) 30%,
        rgba(178, 34, 34, 0.2) 70%,
        rgba(10, 10, 10, 0.9) 100%
    );
    z-index: 2;
}

.lifestyle-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.lifestyle-text {
    max-width: 800px;
    margin: 0 auto;
}

.lifestyle-title {
    font-family: var(--font-good-brush);
    font-size: 3rem;
    font-weight: 400;
    color: var(--intense-red);
    margin-bottom: 1rem;
    text-transform: capitalize;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 8px rgba(178, 34, 34, 0.3);
    position: relative;
    animation: titleGlow 4s ease-in-out infinite;
}

.lifestyle-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--intense-red);
}

.lifestyle-description {
    font-family: var(--font-titles);
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.9);
    margin-bottom: 3rem;
    font-style: italic;
    text-shadow: 0 0 10px rgba(245, 245, 245, 0.1);
}

.lifestyle-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(28, 28, 28, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 0;
    transition: var(--transition);
    min-width: 150px;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(178, 34, 34, 0.5) 50%, 
        transparent 100%);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(178, 34, 34, 0.2);
}

.feature:hover::before {
    opacity: 1;
    left: 100%;
    transition: left 0.5s ease, opacity 0.3s ease;
}

.feature:hover {
    border-color: var(--intense-red);
    background: rgba(28, 28, 28, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(178, 34, 34, 0.3);
}

.feature i {
    font-size: 2rem;
    color: var(--metallic-gold);
}

.feature span {
    font-family: var(--font-titles);
    font-size: 1rem;
    color: var(--smoke-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 
            2px 2px 0px var(--intense-red),
            4px 4px 0px var(--onyx-black),
            0 0 30px rgba(245, 245, 245, 0.3);
    }
    50% { 
        text-shadow: 
            3px 3px 0px var(--intense-red),
            6px 6px 0px var(--onyx-black),
            0 0 50px rgba(245, 245, 245, 0.5);
    }
}

@keyframes featureGlow {
    0%, 100% { 
        color: var(--metallic-gold);
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }
    50% { 
        color: var(--intense-red);
        text-shadow: 0 0 20px rgba(178, 34, 34, 0.7);
    }
}

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

.about-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--primary-white);
    font-weight: 500;
}

/* ===== MODERN SECTION TRANSITIONS ===== */
.section-transition {
    position: relative;
    height: 100px;
    background: linear-gradient(
        180deg,
        var(--onyx-black) 0%,
        rgba(28, 28, 28, 0.8) 50%,
        var(--charcoal-gray) 100%
    );
    overflow: hidden;
}

.section-transition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.02) 50%,
        transparent 100%
    );
    animation: subtleGlow 6s ease-in-out infinite;
}

.section-transition:nth-of-type(2) {
    background: linear-gradient(
        180deg,
        var(--charcoal-gray) 0%,
        rgba(28, 28, 28, 0.6) 50%,
        var(--onyx-black) 100%
    );
}

.section-transition:nth-of-type(3) {
    background: linear-gradient(
        180deg,
        var(--onyx-black) 0%,
        rgba(28, 28, 28, 0.7) 50%,
        var(--charcoal-gray) 100%
    );
}

.section-transition:nth-of-type(4) {
    background: linear-gradient(
        180deg,
        var(--charcoal-gray) 0%,
        rgba(28, 28, 28, 0.5) 50%,
        var(--onyx-black) 100%
    );
}

.transition-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.01) 50%,
        transparent 100%
    );
    animation: subtleWave 8s ease-in-out infinite;
}

.section-transition:nth-of-type(2) .transition-wave {
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.01) 60%,
        transparent 100%
    );
    animation: subtleWave 10s ease-in-out infinite;
}

.section-transition:nth-of-type(3) .transition-wave {
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.01) 40%,
        transparent 100%
    );
    animation: subtleWave 12s ease-in-out infinite;
}

.section-transition:nth-of-type(4) .transition-wave {
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.01) 70%,
        transparent 100%
    );
    animation: subtleWave 9s ease-in-out infinite;
}

.transition-wave::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse at center,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 70%
    );
    animation: waveRotate 12s linear infinite;
}

/* Subtle Animation Keyframes */
@keyframes subtleGlow {
    0%, 100% { 
        opacity: 0.3;
    }
    50% { 
        opacity: 0.6;
    }
}

@keyframes subtleWave {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.2;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.4;
    }
}

/* ===== RED PARTICLES ===== */
.red-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.9) 0%, rgba(178, 34, 34, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    animation: particleFloat 8s infinite linear;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.1);
}

.particle-1 {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
}

.particle-2 {
    left: 30%;
    animation-delay: 1s;
    animation-duration: 8s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
}

.particle-3 {
    left: 50%;
    animation-delay: 2s;
    animation-duration: 7s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
}

.particle-4 {
    left: 70%;
    animation-delay: 3s;
    animation-duration: 9s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
}

.particle-5 {
    left: 90%;
    animation-delay: 4s;
    animation-duration: 5s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
}

.particle-6 {
    left: 15%;
    animation-delay: 5s;
    animation-duration: 7s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
}

.particle-7 {
    left: 35%;
    animation-delay: 6s;
    animation-duration: 6s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
}

.particle-8 {
    left: 55%;
    animation-delay: 7s;
    animation-duration: 8s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
}

.particle-9 {
    left: 75%;
    animation-delay: 8s;
    animation-duration: 5s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
}

.particle-10 {
    left: 95%;
    animation-delay: 9s;
    animation-duration: 7s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100px) translateX(0px) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        transform: translateY(-20px) translateX(30px) scale(0);
        opacity: 0;
    }
}

/* ===== PRODUCTS SECTION ===== */
.products, .coleccion {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* ===== PRODUCT OVERLAY ===== */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(178, 34, 34, 0.2) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 15px 15px 40px 40px;
    backdrop-filter: blur(2px);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.product-card:hover .overlay-content {
    transform: translateY(0);
}

.btn-overlay {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--smoke-white);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-family: var(--font-titles);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-overlay:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ===== PRODUCT MODAL ===== */
.product-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease;
}

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

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-content {
    background: var(--charcoal-gray);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: var(--smoke-white);
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(178, 34, 34, 0.2);
}

.modal-close:hover {
    color: var(--intense-red);
    background: rgba(178, 34, 34, 0.4);
    transform: rotate(90deg);
}

/* Botón X adicional para móviles */
.modal-close-mobile {
    display: none;
    position: fixed;
    top: 80px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--smoke-white);
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(178, 34, 34, 0.9);
    border: 2px solid var(--smoke-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.modal-close-mobile:hover {
    background: rgba(178, 34, 34, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
    align-items: center;
}

.modal-image {
    text-align: center;
}

.modal-image img {
    max-width: 100%;
    height: 400px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
}

.modal-info h2 {
    font-family: var(--font-taurunum);
    font-size: 2.5rem;
    color: var(--intense-red);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(178, 34, 34, 0.3);
}

.modal-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.modal-specs .spec {
    background: rgba(178, 34, 34, 0.2);
    color: var(--intense-red);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(178, 34, 34, 0.4);
    transition: all 0.3s ease;
}

.modal-specs .spec:hover {
    background: rgba(178, 34, 34, 0.3);
    transform: translateY(-2px);
}

.modal-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.9);
    margin-bottom: 2rem;
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(28, 28, 28, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.modal-features .feature-item:hover {
    border-color: var(--intense-red);
    background: rgba(28, 28, 28, 0.9);
    transform: translateX(5px);
}

.modal-features .feature-item i {
    font-size: 1.2rem;
    color: var(--metallic-gold);
    width: 20px;
    text-align: center;
}

.modal-features .feature-item span {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--smoke-white);
    font-weight: 300;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .modal-image img {
        height: 250px;
    }
    
    .modal-info h2 {
        font-size: 2rem;
    }
    
    .modal-close {
        display: none;
    }
    
    .modal-close-mobile {
        display: flex;
    }
}

@media (max-width: 480px) {
    .modal-close-mobile {
        top: 70px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}

/* ===== RESPONSIVE SENSORY MODAL ===== */
@media (max-width: 768px) {
    .sensory-modal .modal-close {
        display: none;
    }
    
    .sensory-modal .modal-close-mobile {
        display: flex;
    }
    
    .modal-icon i {
        font-size: 3rem;
    }
    
    .modal-sensory-details {
        gap: 0.5rem;
    }
    
    .modal-sensory-details .note {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .modal-icon i {
        font-size: 2.5rem;
    }
    
    .modal-sensory-features .feature-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .modal-sensory-features .feature-item i {
        font-size: 1rem;
    }
    
    .modal-sensory-features .feature-item span {
        font-size: 0.9rem;
    }
}

/* ===== RESPONSIVE PRODUCTS SECTION ===== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        padding: 0 0.5rem;
    }
    
    .product-card {
        padding: 2rem 1.5rem;
    }
    
    .btn-overlay {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .product-card {
        padding: 1.5rem 1rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .product-bottle {
        width: 100px;
        height: 250px;
    }
    
    .bottle-image {
        width: 200%;
        height: 200%;
    }
    
    .product-card:first-child .bottle-image {
        width: 220%;
        height: 220%;
    }
    
    .product-card:nth-child(2) .bottle-image {
        width: 180%;
        height: 180%;
    }
    
    .product-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .product-specs {
        gap: 0.3rem;
    }
    
    .spec {
        padding: 0.25rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .btn-overlay {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
        letter-spacing: 0.3px;
    }
    
    .overlay-content {
        transform: translateY(5px);
    }
    
    .product-card:hover .overlay-content {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .products-grid {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .product-card {
        padding: 1rem 0.8rem;
    }
    
    .product-bottle {
        width: 80px;
        height: 200px;
    }
    
    .bottle-image {
        width: 180%;
        height: 180%;
    }
    
    .product-card:first-child .bottle-image {
        width: 200%;
        height: 200%;
    }
    
    .product-card:nth-child(2) .bottle-image {
        width: 160%;
        height: 160%;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .product-specs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .spec {
        padding: 0.2rem 0.5rem;
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }
    
    .btn-overlay {
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
        border-radius: 15px;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .modal-image img {
        height: 200px;
    }
    
    .modal-info h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .modal-info p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .modal-specs {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .modal-specs .spec {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .modal-features .feature-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .modal-features .feature-item i {
        font-size: 1rem;
    }
    
    .modal-features .feature-item span {
        font-size: 0.9rem;
    }
}

.coleccion .section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

/* ===== HISTORIA SECTION ===== */
.historia {
    position: relative;
    overflow: hidden;
}

.historia .section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

/* ===== MAESTRÍA SECTION ===== */
.maestria {
    position: relative;
    overflow: hidden;
}

.maestria .section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

/* ===== EXPERIENCIA SECTION ===== */
.experiencia {
    position: relative;
    overflow: hidden;
}

.experiencia .section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.product-card {
    background: rgba(28, 28, 28, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    z-index: 1;
    isolation: isolate;
}

.product-card:hover {
    border-color: var(--intense-red);
    background: rgba(28, 28, 28, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(178, 34, 34, 0.3);
}

.coleccion .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(178, 34, 34, 0.3) 50%, 
        transparent 100%);
    border-radius: 8px;
    z-index: 0;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(178, 34, 34, 0.1);
    pointer-events: none;
}

.coleccion .product-card:hover::before {
    opacity: 1;
    left: 100%;
    transition: left 0.4s ease, opacity 0.3s ease;
}

/* Animación de reflejo eliminada - ahora es individual por hover */

.product-bottle {
    width: 120px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 15px 15px 40px 40px;
    margin: 0 auto 2rem;
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    z-index: 2;
}

.product-bottle:hover {
    transform: translateY(-5px);
}

.bottle-image {
    width: 210%;
    height: 210%;
    object-fit: contain;
    object-position: center;
    filter: brightness(1.1) contrast(1.1) saturate(1.1);
    transition: var(--transition);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

.bottle-image:hover {
    transform: translate(-50%, -50%) scale(1.05);
    filter: brightness(1.2) contrast(1.2) saturate(1.2);
}

/* Estilo específico para Montana 5 Años - más grande */
.product-card:first-child .bottle-image {
    width: 220%;
    height: 220%;
    transform: translate(-50%, -50%);
}

.product-card:first-child .bottle-image:hover {
    transform: translate(-50%, -50%) scale(1.05);
    filter: brightness(1.2) contrast(1.2) saturate(1.2);
}

/* Estilo específico para Montana Carta Negra - más pequeño */
.product-card:nth-child(2) .bottle-image {
    width: 190%;
    height: 190%;
    transform: translate(-50%, -50%);
}

.product-card:nth-child(2) .bottle-image:hover {
    transform: translate(-50%, -50%) scale(1.05);
    filter: brightness(1.2) contrast(1.2) saturate(1.2);
}

/* Animación de flotación de botellas eliminada - ahora es solo hover */

.product-bottle .bottle-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, 
        rgba(178, 34, 34, 0.1) 0%, 
        rgba(178, 34, 34, 0.05) 50%, 
        rgba(178, 34, 34, 0.1) 100%);
    border-radius: 10px 10px 30px 30px;
    animation: productBottleGlow 8s ease-in-out infinite;
    filter: blur(3px);
    opacity: 0.3;
}

@keyframes productBottleGlow {
    0%, 100% { 
        opacity: 0.2; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.4; 
        transform: scale(1.02); 
    }
}

@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
        transform: scale(1.02);
    }
}

.product-info h3 {
    font-family: var(--font-taurunum);
    font-size: 1.5rem;
    color: var(--intense-red);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(178, 34, 34, 0.3);
}

.product-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.spec {
    background: rgba(178, 34, 34, 0.1);
    color: var(--intense-red);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(178, 34, 34, 0.3);
    transition: var(--transition);
}

.spec:hover {
    background: rgba(178, 34, 34, 0.2);
    box-shadow: 0 0 10px rgba(178, 34, 34, 0.3);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding);
    background: var(--dark-gray);
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(178, 34, 34, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(178, 34, 34, 0.1), transparent);
    transition: left 0.6s ease;
}

.instagram-section:hover::before {
    left: 100%;
}

.instagram-section:hover {
    transform: translateY(-5px);
    border-color: #b22222;
    box-shadow: 0 10px 30px rgba(178, 34, 34, 0.2);
}

.instagram-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b22222, #dc143c, #ff6347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.2rem;
    box-shadow: 0 8px 25px rgba(178, 34, 34, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.instagram-icon i {
    font-size: 2.5rem;
    color: white !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    background-clip: unset !important;
}

.instagram-section:hover .instagram-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(178, 34, 34, 0.4);
}



.instagram-section h3 {
    font-size: 1.8rem;
    margin-bottom: 0.05rem;
    color: #b22222;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(178, 34, 34, 0.3);
    position: relative;
    z-index: 2;
}

.instagram-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0.2rem;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #b22222, #dc143c);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(178, 34, 34, 0.4);
    border-color: #dc143c;
    background: linear-gradient(135deg, #dc143c, #b22222);
    color: white;
    text-decoration: none;
}

.btn-instagram i {
    font-size: 1.2rem;
}

.instagram-image-container {
    margin-top: 0.8rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.4s ease;
}

.instagram-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.instagram-image-link {
    display: block;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    border-radius: 15px;
}

.instagram-image {
    width: 90%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 15px;
    transition: transform 0.4s ease;
    margin: 0 auto;
}

.instagram-image-link:hover .instagram-image {
    transform: scale(1.05);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 15px;
}

.instagram-image-link:hover .instagram-overlay {
    opacity: 1;
}

.instagram-play-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b22222, #dc143c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(178, 34, 34, 0.4);
    animation: pulse 2s infinite;
}

.instagram-play-icon i {
    font-size: 2rem;
    color: white;
}

.instagram-overlay p {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(178, 34, 34, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(178, 34, 34, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(178, 34, 34, 0.4);
    }
}

/* Lazy Loading Styles */
.instagram-image-container,
.tiktok-embed-container {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.instagram-image-container.loaded,
.tiktok-embed-container.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Intersection Observer fallback */
@media (prefers-reduced-motion: no-preference) {
    .instagram-image-container,
    .tiktok-embed-container {
        will-change: opacity, transform;
    }
}

/* TikTok Section Styles */
.tiktok-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(178, 34, 34, 0.2);
    transition: all 0.4s ease;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tiktok-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(178, 34, 34, 0.1), transparent);
    transition: left 0.6s ease;
}

.tiktok-section:hover::before {
    left: 100%;
}

.tiktok-section:hover {
    transform: translateY(-5px);
    border-color: #b22222;
    box-shadow: 0 10px 30px rgba(178, 34, 34, 0.2);
}

.tiktok-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b22222, #dc143c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    box-shadow: 0 8px 25px rgba(178, 34, 34, 0.3);
    transition: all 0.4s ease;
}

.tiktok-icon i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tiktok-section:hover .tiktok-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(178, 34, 34, 0.4);
}

.tiktok-section h3 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
    color: #b22222;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(178, 34, 34, 0.3);
}

.tiktok-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.btn-tiktok {
    background: linear-gradient(135deg, #b22222, #dc143c);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-tiktok:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(178, 34, 34, 0.4);
    border-color: #dc143c;
    background: linear-gradient(135deg, #dc143c, #b22222);
}

.btn-tiktok i {
    font-size: 1.2rem;
}

.tiktok-embed-container {
    margin-top: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.4s ease;
}

.tiktok-embed-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.tiktok-embed-container iframe {
    border-radius: 15px;
    width: 90%;
    height: 500px;
    display: block;
    object-fit: cover;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.social-media-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-form-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    text-align: center;
}

.contact-form-section p {
    text-align: center;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
    .contact-content {
        gap: 2rem;
    }
    
    .social-media-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tiktok-embed-container {
        max-width: 100%;
    }
}
    
    .instagram-section {
        padding: 2rem 1rem;
    }
    
    .instagram-section h3 {
        font-size: 1.8rem;
        margin-bottom: 0.05rem;
    }
    
    .instagram-image {
        height: 450px;
    }
    
    .tiktok-embed-container iframe {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .contact-content {
        gap: 2rem;
    }
    
    .social-media-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .instagram-section {
        padding: 1.5rem 1rem;
    }
    
    .tiktok-section {
        padding: 1.5rem 1rem;
    }
    
    .contact-form-section {
        padding: 2rem 1rem;
    }
    
    .tiktok-embed-container {
        margin-top: 1.5rem;
    }
    
    .instagram-icon {
        font-size: 2.5rem;
        margin: 0 auto 0.2rem;
    }
    
    .instagram-section h3 {
        font-size: 1.6rem;
        margin-bottom: 0.05rem;
    }
    
    .instagram-section p {
        font-size: 0.9rem;
    }
    
    .instagram-image {
        height: 400px;
    }
    
    .tiktok-embed-container iframe {
        height: 400px;
    }
}

.contact-info h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--primary-white);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 
        1px 1px 0px var(--primary-red),
        2px 2px 0px var(--primary-black),
        0 0 10px rgba(255, 255, 255, 0.3);
    animation: cutOutFlicker 3s ease-in-out infinite alternate;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    width: 20px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--primary-white);
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-black);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo-text {
    font-family: var(--font-taurunum-regular);
        font-size: 1.5rem;
    font-weight: 400;
    color: var(--intense-red);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(178, 34, 34, 0.3);
}

.footer-text {
    text-align: right;
    color: rgba(255, 255, 255, 0.6);
}

.footer-text p {
    margin-bottom: 0.5rem;
}

/* ===== FLOATING LIGHTS ===== */
.floating-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.light {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.9) 0%, rgba(178, 34, 34, 0.6) 30%, rgba(178, 34, 34, 0.3) 60%, transparent 100%);
    filter: blur(1px);
    animation: floatLight 15s infinite linear;
    box-shadow: 0 0 15px rgba(178, 34, 34, 0.4);
    will-change: transform, opacity;
}

.light-1 {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.light-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation-delay: -5s;
    animation-duration: 25s;
}

.light-3 {
    width: 3px;
    height: 3px;
    top: 40%;
    left: 70%;
    animation-delay: -10s;
    animation-duration: 18s;
}

.light-4 {
    width: 5px;
    height: 5px;
    top: 80%;
    left: 20%;
    animation-delay: -15s;
    animation-duration: 22s;
}

.light-5 {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 50%;
    animation-delay: -8s;
    animation-duration: 16s;
}

.light-6 {
    width: 7px;
    height: 7px;
    top: 70%;
    left: 60%;
    animation-delay: -12s;
    animation-duration: 28s;
}

.light-7 {
    width: 3px;
    height: 3px;
    top: 15%;
    left: 30%;
    animation-delay: -18s;
    animation-duration: 17s;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.9) 0%, rgba(178, 34, 34, 0.6) 30%, rgba(178, 34, 34, 0.3) 60%, transparent 100%);
}

.light-8 {
    width: 5px;
    height: 5px;
    top: 85%;
    left: 90%;
    animation-delay: -22s;
    animation-duration: 13s;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.9) 0%, rgba(212, 175, 55, 0.6) 30%, rgba(212, 175, 55, 0.3) 60%, transparent 100%);
}

.light-9 {
    width: 4px;
    height: 4px;
    top: 45%;
    left: 10%;
    animation-delay: -25s;
    animation-duration: 19s;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.8) 0%, rgba(178, 34, 34, 0.5) 30%, rgba(178, 34, 34, 0.2) 60%, transparent 100%);
}

.light-10 {
    width: 6px;
    height: 6px;
    top: 55%;
    left: 95%;
    animation-delay: -28s;
    animation-duration: 11s;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8) 0%, rgba(212, 175, 55, 0.5) 30%, rgba(212, 175, 55, 0.2) 60%, transparent 100%);
}

.light-11 {
    width: 3px;
    height: 3px;
    top: 25%;
    left: 75%;
    animation-delay: -30s;
    animation-duration: 16s;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.9) 0%, rgba(178, 34, 34, 0.6) 30%, rgba(178, 34, 34, 0.3) 60%, transparent 100%);
}

.light-12 {
    width: 5px;
    height: 5px;
    top: 90%;
    left: 40%;
    animation-delay: -32s;
    animation-duration: 14s;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.9) 0%, rgba(212, 175, 55, 0.6) 30%, rgba(212, 175, 55, 0.3) 60%, transparent 100%);
}

.light-13 {
    width: 4px;
    height: 4px;
    top: 5%;
    left: 85%;
    animation-delay: -35s;
    animation-duration: 18s;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.8) 0%, rgba(178, 34, 34, 0.5) 30%, rgba(178, 34, 34, 0.2) 60%, transparent 100%);
}

.light-14 {
    width: 6px;
    height: 6px;
    top: 65%;
    left: 5%;
    animation-delay: -38s;
    animation-duration: 12s;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8) 0%, rgba(212, 175, 55, 0.5) 30%, rgba(212, 175, 55, 0.2) 60%, transparent 100%);
}

.light-15 {
    width: 3px;
    height: 3px;
    top: 95%;
    left: 55%;
    animation-delay: -40s;
    animation-duration: 15s;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.9) 0%, rgba(178, 34, 34, 0.6) 30%, rgba(178, 34, 34, 0.3) 60%, transparent 100%);
}

.light-16 {
    width: 4px;
    height: 4px;
    top: 12%;
    left: 25%;
    animation-delay: -45s;
    animation-duration: 18s;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8) 0%, rgba(212, 175, 55, 0.5) 30%, rgba(212, 175, 55, 0.2) 60%, transparent 100%);
}

.light-17 {
    width: 2px;
    height: 2px;
    top: 88%;
    left: 65%;
    animation-delay: -50s;
    animation-duration: 12s;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.7) 0%, rgba(178, 34, 34, 0.4) 30%, rgba(178, 34, 34, 0.1) 60%, transparent 100%);
}

.light-18 {
    width: 5px;
    height: 5px;
    top: 35%;
    left: 8%;
    animation-delay: -55s;
    animation-duration: 22s;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.9) 0%, rgba(212, 175, 55, 0.6) 30%, rgba(212, 175, 55, 0.3) 60%, transparent 100%);
}

.light-19 {
    width: 3px;
    height: 3px;
    top: 78%;
    left: 92%;
    animation-delay: -60s;
    animation-duration: 16s;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.8) 0%, rgba(178, 34, 34, 0.5) 30%, rgba(178, 34, 34, 0.2) 60%, transparent 100%);
}

.light-20 {
    width: 4px;
    height: 4px;
    top: 22%;
    left: 45%;
    animation-delay: -65s;
    animation-duration: 14s;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.7) 0%, rgba(212, 175, 55, 0.4) 30%, rgba(212, 175, 55, 0.1) 60%, transparent 100%);
}

.light-21 {
    width: 2px;
    height: 2px;
    top: 92%;
    left: 18%;
    animation-delay: -70s;
    animation-duration: 11s;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.6) 0%, rgba(178, 34, 34, 0.3) 30%, rgba(178, 34, 34, 0.1) 60%, transparent 100%);
}

.light-22 {
    width: 6px;
    height: 6px;
    top: 48%;
    left: 82%;
    animation-delay: -75s;
    animation-duration: 20s;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8) 0%, rgba(212, 175, 55, 0.5) 30%, rgba(212, 175, 55, 0.2) 60%, transparent 100%);
}

.light-23 {
    width: 3px;
    height: 3px;
    top: 8%;
    left: 72%;
    animation-delay: -80s;
    animation-duration: 17s;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.9) 0%, rgba(178, 34, 34, 0.6) 30%, rgba(178, 34, 34, 0.3) 60%, transparent 100%);
}

.light-24 {
    width: 4px;
    height: 4px;
    top: 62%;
    left: 38%;
    animation-delay: -85s;
    animation-duration: 13s;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.7) 0%, rgba(212, 175, 55, 0.4) 30%, rgba(212, 175, 55, 0.1) 60%, transparent 100%);
}

.light-25 {
    width: 2px;
    height: 2px;
    top: 82%;
    left: 12%;
    animation-delay: -90s;
    animation-duration: 19s;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.8) 0%, rgba(178, 34, 34, 0.5) 30%, rgba(178, 34, 34, 0.2) 60%, transparent 100%);
}

.light-26 {
    width: 5px;
    height: 5px;
    top: 18%;
    left: 88%;
    animation-delay: -95s;
    animation-duration: 21s;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, rgba(212, 175, 55, 0.3) 30%, rgba(212, 175, 55, 0.1) 60%, transparent 100%);
}

.light-27 {
    width: 3px;
    height: 3px;
    top: 42%;
    left: 28%;
    animation-delay: -100s;
    animation-duration: 15s;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.7) 0%, rgba(178, 34, 34, 0.4) 30%, rgba(178, 34, 34, 0.1) 60%, transparent 100%);
}

.light-28 {
    width: 4px;
    height: 4px;
    top: 68%;
    left: 58%;
    animation-delay: -105s;
    animation-duration: 23s;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8) 0%, rgba(212, 175, 55, 0.5) 30%, rgba(212, 175, 55, 0.2) 60%, transparent 100%);
}

.light-29 {
    width: 2px;
    height: 2px;
    top: 38%;
    left: 98%;
    animation-delay: -110s;
    animation-duration: 10s;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.9) 0%, rgba(178, 34, 34, 0.6) 30%, rgba(178, 34, 34, 0.3) 60%, transparent 100%);
}

.light-30 {
    width: 6px;
    height: 6px;
    top: 72%;
    left: 2%;
    animation-delay: -115s;
    animation-duration: 24s;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.7) 0%, rgba(212, 175, 55, 0.4) 30%, rgba(212, 175, 55, 0.1) 60%, transparent 100%);
}

@keyframes floatLight {
    0% {
        transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
        opacity: 0;
    }
    3% {
        opacity: 0.2;
        transform: translateY(95vh) translateX(10px) scale(0.3) rotate(30deg);
    }
    8% {
        opacity: 0.6;
        transform: translateY(85vh) translateX(-15px) scale(0.7) rotate(60deg);
    }
    15% {
        opacity: 1;
        transform: translateY(70vh) translateX(25px) scale(1) rotate(90deg);
    }
    25% {
        opacity: 0.9;
        transform: translateY(50vh) translateX(-20px) scale(1.1) rotate(135deg);
    }
    35% {
        opacity: 1;
        transform: translateY(30vh) translateX(30px) scale(1) rotate(180deg);
    }
    50% {
        opacity: 0.8;
        transform: translateY(10vh) translateX(-25px) scale(0.9) rotate(225deg);
    }
    65% {
        opacity: 0.6;
        transform: translateY(-10vh) translateX(20px) scale(0.7) rotate(270deg);
    }
    80% {
        opacity: 0.3;
        transform: translateY(-30vh) translateX(-10px) scale(0.4) rotate(315deg);
    }
    90% {
        opacity: 0.1;
        transform: translateY(-50vh) translateX(15px) scale(0.2) rotate(360deg);
    }
    100% {
        transform: translateY(-100vh) translateX(50px) scale(0) rotate(360deg);
        opacity: 0;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
        padding: 0.5rem 0;
        min-height: calc(100vh - 70px);
    }
    
    .hero-mobile-title {
        display: block;
        order: 1;
        text-align: center;
    }
    
    .hero-visual {
        order: 2;
        gap: 1.5rem;
    }
    
    .hero-text {
        order: 3;
        text-align: center;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .hero-image-container {
        max-width: 450px;
        height: 500px;
    }
    
    .hero-main-image {
        border-radius: 15px;
    }
    
    .hero-image-glow {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
        border-radius: 25px;
    }
    
    
    .title-main {
        font-size: 3.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 0;
    }
    
    .title-line-1 {
        font-size: 2.5rem;
    }
    
    .title-line-2 {
        font-size: 1.8rem;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .feature-item {
        flex: 1;
        min-width: 120px;
    }
    
    .maestria .section-title {
        font-size: 2.5rem;
    }
    
    .maestria-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .maestria-video {
        height: 300px;
        order: -1;
    }
    
    .section-transition {
        height: 100px;
    }
    
    .section-transition:nth-of-type(2),
    .section-transition:nth-of-type(3),
    .section-transition:nth-of-type(4) {
        height: 100px;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }
    
    .footer-logo-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
        --section-padding: 2.5rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0;
    }
    
    .title-line-1 {
        font-size: 2rem;
    }
    
    .title-line-2 {
        font-size: 1.4rem;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .feature-item {
        min-width: auto;
    }
    
    .historia-title {
        font-size: 2rem;
    }
    
    .maestria .section-title {
        font-size: 2rem;
    }
    
    .maestria-video {
        height: 250px;
    }
    
    .section-transition {
        height: 80px;
    }
    
    .section-transition:nth-of-type(2),
    .section-transition:nth-of-type(3),
    .section-transition:nth-of-type(4) {
        height: 80px;
    }
    
    .product-bottle {
        width: 100px;
        height: 250px;
    }
    
    .bottle-image {
        width: 230%;
        height: 230%;
        transform: translate(-50%, -50%);
        position: absolute;
        top: 50%;
        left: 50%;
    }
    
    /* Montana 5 Años más grande en mobile */
    .product-card:first-child .bottle-image {
        width: 250%;
        height: 250%;
        transform: translate(-50%, -50%);
    }
    
    .product-card:first-child .bottle-image:hover {
        transform: translate(-50%, -50%) scale(1.05);
        filter: brightness(1.2) contrast(1.2) saturate(1.2);
    }
    
    /* Montana Carta Negra más pequeño en mobile */
    .product-card:nth-child(2) .bottle-image {
        width: 210%;
        height: 210%;
        transform: translate(-50%, -50%);
    }
    
    .product-card:nth-child(2) .bottle-image:hover {
        transform: translate(-50%, -50%) scale(1.05);
        filter: brightness(1.2) contrast(1.2) saturate(1.2);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.3rem;
    }
    
    .historia-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    .historia-title {
        font-size: 2.5rem;
    }
    
    .historia-subtitle {
        font-size: 1.5rem;
    }
    
    .historia-description-header {
        font-size: 1rem;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .bottle-container {
        gap: 1rem;
        padding: 1rem 0;
        justify-content: space-around;
    }
    
    .bottle {
        width: 60px;
        height: 150px;
        flex-shrink: 0;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .footer-logo-text {
        font-size: 1.1rem;
    }
    
    .lifestyle-title {
        font-size: 2.5rem;
    }
    
    .lifestyle-description {
        font-size: 1.1rem;
    }
    
    .lifestyle-features {
        gap: 2rem;
    }
    
    .feature {
        min-width: 120px;
        padding: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
}

/* ===== DESKTOP LAYOUT ===== */
@media (min-width: 769px) {
    .hero-content {
        display: grid;
        grid-template-columns: 1.5fr 1.5fr;
        gap: 3rem;
        align-items: start;
        padding: 0.5rem 0 2rem 0;
    }
    
    .hero-mobile-title {
        display: none;
    }
    
    .hero-text {
        text-align: center;
        order: 1;
        padding-top: 0.5rem;
    }
    
    .hero-visual {
        order: 2;
        justify-self: stretch;
        width: 100%;
    }
    
    .desktop-only {
        display: block;
    }
    
    .mobile-only {
        display: none;
    }
    
    .hero-image-container {
        width: 100%;
        max-width: none;
        height: 600px;
    }
    
    .hero {
        align-items: flex-start;
        padding-top: 70px;
    }
}