/* ========================================
   INKFERNAL TATTOO & PIERCING - CSS
   Estética basada en tarjeta de publicidad
   ========================================

   ESTRUCTURA DEL CSS:
   1. Variables CSS (colores, fuentes, espaciados)
   2. Reset y estilos base
   3. Componentes reutilizables
   4. Secciones específicas
   5. Artist / Piercing sections
   6. Responsive (media queries)
======================================== */


/* ========================================
   1. VARIABLES CSS
   - Paleta crimson/burgundy basada en tarjeta
======================================== */
:root {
    /* Colores principales - Paleta Crimson de la tarjeta */
    --color-primary: #C41E1E;
    /* Crimson profundo - color principal */
    --color-primary-dark: #8B0000;
    /* Rojo sangre oscuro - hover */
    --color-primary-light: #E63946;
    /* Rojo vivo - acentos */
    --color-secondary: #D4A373;
    /* Dorado antiguo - acentos secundarios */

    /* Colores de fondo */
    --color-bg-dark: #0A0807;
    /* Negro cálido - fondo principal */
    --color-bg-darker: #050403;
    /* Negro profundo con tinte rojo */
    --color-bg-light: #1A1412;
    /* Marrón muy oscuro - cards */
    --color-bg-lighter: #2A2220;
    /* Marrón oscuro - hover */
    --color-bg-crimson: #1A0A0A;
    /* Negro con tinte crimson */

    /* Colores de texto */
    --color-text: #D4CCC8;
    /* Blanco cálido - texto principal */
    --color-text-light: #9A8F88;
    /* Beige grisáceo - texto secundario */
    --color-text-white: #F5F0EB;
    /* Blanco cálido - títulos */

    /* Tipografías */
    --font-primary: 'Inter', sans-serif;
    /* Texto general */
    --font-display: 'Bebas Neue', sans-serif;
    /* Títulos grandes */
    --font-gothic: 'UnifrakturMaguntia', cursive;
    /* Old English - como nombre David Rincon en tarjeta */

    /* Tamaños de fuente */
    --font-size-small: 0.875rem;
    --font-size-normal: 1rem;
    --font-size-large: 1.125rem;
    --font-size-h3: 1.5rem;
    --font-size-h2: 2rem;
    --font-size-h1: 3rem;
    --font-size-hero: 4.5rem;

    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;

    /* Otros valores */
    --border-radius: 0.5rem;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 15px 40px rgba(196, 30, 30, 0.3);
    --shadow-crimson: 0 0 60px rgba(139, 0, 0, 0.3);
}


/* ========================================
   2. RESET Y ESTILOS BASE
   - Elimina estilos por defecto del navegador
   - Establece base consistente
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Decoraciones de bordes estables para las secciones (Pseudo-elementos) */
.artist-services-wrapper::before,
.artist-services-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 380px; /* Aumentado de 280px a 380px para que se vean mucho más gruesas e imponentes */
    height: 100%;
    background-size: 100% auto; /* Mantiene proporción exacta sin estirarse NADA */
    background-repeat: repeat-y; /* Repite el patrón suavemente hacia abajo en vez de deformarse */
    opacity: 0.85;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.4)) saturate(1.2);
    pointer-events: none;
    z-index: 5;
    animation: candleFlicker 3s infinite alternate ease-in-out;
}

@keyframes candleFlicker {
    0% {
        opacity: 0.75;
        filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.2)) saturate(1.1);
    }
    100% {
        opacity: 0.95;
        filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.7)) saturate(1.4);
    }
}

.artist-services-wrapper::before {
    left: -20px; 
    background-image: none; /* Marcos de velas eliminados por petición del usuario */
    background-position: left center;
}

.artist-services-wrapper::after {
    right: -20px; 
    background-image: none; /* Marcos de velas eliminados por petición del usuario */
    background-position: right center;
}

/* Ajuste de contenedores para no solapar los bordes decorativos */
.artist .container,
.services .container {
    padding-left: 120px;
    padding-right: 120px;
    position: relative;
    z-index: 10; /* Para que el contenido quede por encima de las decoraciones */
}

html {
    /* Smooth scroll al hacer clic en links internos */
    scroll-behavior: smooth;
    font-size: 16px;
    /* Base para rem */
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    /* Evita scroll horizontal */
}



/* Container para centrar contenido */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Quita estilos de links */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Quita estilos de listas */
ul {
    list-style: none;
}

/* Imágenes responsive por defecto */
img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* ========================================
   3. COMPONENTES REUTILIZABLES
======================================== */

/* Títulos de secciones */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header__subtitle {
    color: var(--color-primary);
    font-size: var(--font-size-small);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.section-header__title {
    font-family: var(--font-display);
    font-size: var(--font-size-h1);
    color: var(--color-text-white);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: var(--font-size-normal);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-text-white);
}

.btn--primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn--secondary {
    background-color: transparent;
    color: var(--color-text-white);
    border: 2px solid var(--color-text-white);
}

.btn--secondary:hover {
    background-color: var(--color-text-white);
    color: var(--color-bg-dark);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn--instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}


/* ========================================
   4. HEADER / NAVEGACIÓN & PROMO
======================================== */
.header-wrapper {
    width: 100%;
    z-index: 1000;
    /* Deje de ser fixed. Ahora sus hijos controlan la posición para que uno quede y otro se vaya */
}

.promo-banner {
    display: block;
    background-color: rgba(20, 0, 0, 0.2); /* Very faint red/black tint */
    color: var(--color-text-white);
    text-align: center;
    padding: 0.6rem var(--spacing-sm);
    font-size: var(--font-size-small);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 30, 0, 0.4); /* Softer red border */
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3), inset 0 0 10px rgba(255, 0, 0, 0.2);
    animation: pulseShadowBanner 2s infinite;
    position: fixed; /* Esto hace que LA PROMOCION no desaparezca nunca */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900; /* Bajado de 1001 a 900 para que el menú móvil lo cubra cuando se abra */
    backdrop-filter: blur(2px); /* Much softer blur for high transparency */
    -webkit-backdrop-filter: blur(2px);
}

@keyframes pulseShadowBanner {
    0% { box-shadow: 0 0 15px rgba(255, 0, 0, 0.5); }
    50% { box-shadow: 0 0 35px rgba(255, 0, 0, 0.9); }
    100% { box-shadow: 0 0 15px rgba(255, 0, 0, 0.5); }
}

.promo-banner__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.promo-banner__icon {
    font-size: 1.2rem;
    animation: promoPulse 1s infinite alternate;
}

@keyframes promoPulse {
    from { transform: scale(1); }
    to { transform: scale(1.2); }
}

.promo-banner__action {
    background: transparent;
    border: 1px solid var(--color-primary);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
}

.promo-banner:hover .promo-banner__action {
    background: var(--color-primary);
    color: var(--color-text-white);
}

.main-nav-bg {
    background-color: transparent; /* No negro, totalmente transparente */
    /* No blur para permitir ver el fondo claro del hero perfectamente, como en el boton 2 */
    border-bottom: none; /* Línea eliminada para total fluidez con el hero */
    transition: var(--transition);
    position: absolute; /* Queda arriba del hero pero DESAPARECE al hacer scroll */
    top: 38px; /* Debe estar debajo de la barra promo (que mide unos 38px aprox) */
    width: 100%;
    z-index: 1000;
}

/* Scroll effect - header más pequeño al hacer scroll */
.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Centrado absoluto del menú en el viewport */
.nav__menu {
    position: absolute;
    left: 50.5%; /* Ligeramente a la derecha para compensar visualmente el logo y centrar 'Servicios' */
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 5;
}
.nav__logo {
    display: flex;
    align-items: center;
    z-index: 10;
    flex-shrink: 0; /* Prevents the logo from being squashed by flexbox */
    min-width: 50px;
    min-height: 50px;
}

.nav__logo .logo-img {
    height: 100px;
    width: auto;
    /* Removed drop-shadow to fix the ultimate iOS Safari rendering crash on reload */
    transition: var(--transition);
    padding: 5px 0;
    transform: translateZ(0); /* Hardware acceleration fix for vanishing bug */
    -webkit-transform: translateZ(0);
}

.nav__logo:hover .logo-img {
    filter: invert(1) drop-shadow(0 0 10px rgba(196, 30, 30, 0.8));
    transform: scale(1.05);
}

.nav__list {
    display: flex;
    gap: 3.5rem; /* Aumentado el espacio entre palabras para el 'centralismo' solicitado */
}

.nav__link {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    font-size: 1.15rem; /* Aumentado sutilmente para mayor legibilidad */
}

/* Underline animado en links */
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-text-white);
}

.nav__phone {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-text-white); /* Cambiado de rojo (primary) a blanco */
    font-weight: 600;
    font-size: 1.15rem; /* Un poco más pequeño para dar más espacio */
    margin-left: auto; /* Empuja el teléfono a la derecha absoluta */
    z-index: 10;
}

.nav__phone:hover {
    color: var(--color-primary); /* Efecto hover en rojo para interactividad */
}

/* Menú móvil - oculto por defecto */
.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-white);
}


/* ========================================
   5. HERO SECTION - Card Reveal Animation
======================================== */
.hero {
    position: relative;
    width: 100%;
    /* Volvemos a un Hero grande y majestuoso para disfrutar el scroll *Parallax* */
    height: 130vh; /* Aumentado a 130vh para dar aún más recorrido antes de la siguiente sección */
    min-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-bg-darker);
}

/* Smoke/fire texture overlay on hero */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(196, 30, 30, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(139, 0, 0, 0.12) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    animation: smokeShift 8s ease-in-out infinite alternate;
}

@keyframes smokeShift {
    0% {
        background:
            radial-gradient(ellipse at 20% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 20%, rgba(196, 30, 30, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse at 50% 80%, rgba(139, 0, 0, 0.12) 0%, transparent 50%);
    }

    100% {
        background:
            radial-gradient(ellipse at 30% 40%, rgba(139, 0, 0, 0.2) 0%, transparent 50%),
            radial-gradient(ellipse at 70% 30%, rgba(196, 30, 30, 0.15) 0%, transparent 50%),
            radial-gradient(ellipse at 40% 70%, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
    }
}

/* Carrusel de imágenes de fondo */
.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s ease-in-out;
}

.hero__slide.active {
    opacity: 1;
    transform: translateX(0);
}

.hero__slide.prev {
    transform: translateX(-100%);
}

/* Imágenes del carrusel */
.hero__slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Placeholder para imágenes del carrusel (por si fallan) */
.hero__slide-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    color: var(--color-text-light);
    font-size: var(--font-size-large);
}

.hero__slide-placeholder i {
    font-size: 5rem;
    opacity: 0.3;
}

.hero__slide-placeholder p {
    opacity: 0.5;
    text-align: center;
}

/* Indicadores del carrusel */
.hero__slider-indicators {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-xs);
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--color-primary);
    transform: scale(1.2);
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

/* Overlay oscuro sobre el fondo con tinte crimson */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at center, rgba(139, 0, 0, 0.1) 0%, var(--color-bg-darker) 100%),
        linear-gradient(180deg, transparent 60%, rgba(5, 4, 3, 0.8) 100%);
    z-index: 1;
}

/* Overlay muy fuerte: logo destaca sobre fondo */
.hero__overlay--strong {
    background:
        radial-gradient(circle at center, rgba(139, 0, 0, 0.15) 0%, rgba(5, 4, 3, 0.85) 100%) !important;
}

/* Fondo negro puro para complementar el logo */
.hero__overlay--black {
    background: #000 !important;
}

/* === Fondo único Infernal de Velas (Sustituye a las imágenes separadas) === */
.hero__bg-candles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/hero_hellish_bg.webp');
    background-size: cover; 
    background-position: center 90%; /* Ajuste a 90% para asomar un poquito del piso y subir un poco las velas de la base */
    background-repeat: no-repeat;
    /* Eliminado fixed (parallax) para controlar al 100% la parte visible */
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
    mix-blend-mode: screen; 
    filter: contrast(1.1) brightness(1.2);
}

/* Hero con solo el logo (sin textos) */
.hero__content--logo-only {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0 !important;
    gap: var(--spacing-md);
    filter:
        drop-shadow(0 0 40px rgba(212, 175, 55, 0.8)) drop-shadow(0 0 80px rgba(212, 175, 55, 0.4)) drop-shadow(0 0 120px rgba(180, 140, 20, 0.2));
}

/* Logo fullscreen en el hero - BRUTAL con flotación y brillo dorado */
.hero__logo-fullscreen {
    width: 85vw !important; /* Más grande */
    max-width: 1100px !important; /* Más grande y masivo */
    height: auto !important;
    max-height: 85vh !important;
    object-fit: contain;
    filter: invert(1);
    margin-bottom: -60px; /* Restaurado a su posición original para mantener la distancia con los textos */
    animation: heroFloat 6s ease-in-out infinite;
    transition: var(--transition);
}

.hero__logo-fullscreen:hover {
    transform: scale(1.05);
}

/* Columna: logo arriba, TATTOO y PIERCING como pies abajo */
.hero__logo-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    margin-bottom: 80px; /* Subimos TODA la caja (logo + texto) al mismo tiempo */
}

/* Fila de los pies: TATTOO  PIERCING */
.hero__logo-labels {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: -30px;
    width: 100%;
}

/* Texto dorado metálico */
.hero__flanking-text {
    font-family: 'Metal Mania', 'Cinzel Decorative', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem); /* Slightly larger for mobile than original */
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    white-space: nowrap;
    min-width: 220px;
    margin-top: 5px; /* Added spacing from logo */
    background: linear-gradient(180deg, #fff0a0 0%, #f5c842 20%, #d4a017 45%, #ffd700 55%, #c8860a 80%, #a06000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6)) drop-shadow(0 0 20px rgba(180, 140, 20, 0.3));
}

/* Promo Button Hero */
.hero__promo {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.glow-btn {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-text-white);
    padding: 1rem 2rem;
    font-size: var(--font-size-large);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5), inset 0 0 10px rgba(255, 0, 0, 0.3);
    animation: pulseShadow 2s infinite;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.glow-btn:hover {
    background-color: var(--color-primary-dark);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8), inset 0 0 15px rgba(255, 0, 0, 0.6);
    transform: translateY(-3px);
}

.glow-btn:hover::before {
    left: 100%;
}

@keyframes pulseShadow {
    0% { box-shadow: 0 0 15px rgba(255, 0, 0, 0.5); }
    50% { box-shadow: 0 0 35px rgba(255, 0, 0, 0.9); }
    100% { box-shadow: 0 0 15px rgba(255, 0, 0, 0.5); }
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.hero__flanking-text:first-child {
    text-align: right; /* TATTOO pegado al centro por la derecha */
}

.hero__flanking-text:last-child {
    text-align: left;  /* PIERCING pegado al centro por la izquierda */
}

/* Animación de flotación + pulso dorado */
@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-15px);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-10px);
    }
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-md);
}

.hero__title {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.hero__title-small {
    font-size: var(--font-size-large);
    color: var(--color-text-light);
    font-weight: 300;
    letter-spacing: 2px;
}

.hero__logo-img {
    height: 150px;
    width: auto;
    filter: invert(1) drop-shadow(0 0 20px rgba(196, 30, 30, 0.6));
    margin: var(--spacing-sm) 0;
    transition: var(--transition);
    animation: glow 2s ease-in-out infinite alternate;
}

.hero__logo-img:hover {
    transform: scale(1.02);
    filter: invert(1) drop-shadow(0 0 30px rgba(196, 30, 30, 0.9));
}

/* Animación de brillo crimson */
@keyframes glow {
    from {
        text-shadow:
            0 0 10px rgba(139, 0, 0, 0.6),
            0 0 20px rgba(139, 0, 0, 0.3),
            0 2px 4px rgba(0, 0, 0, 0.8);
    }

    to {
        text-shadow:
            0 0 20px rgba(196, 30, 30, 0.8),
            0 0 40px rgba(139, 0, 0, 0.5),
            0 0 60px rgba(139, 0, 0, 0.3),
            0 2px 4px rgba(0, 0, 0, 0.8);
    }
}

.hero__title-medium {
    font-size: var(--font-size-h2);
    color: var(--color-text);
    font-weight: 300;
    letter-spacing: 4px;
}

.hero__description {
    margin: var(--spacing-md) 0;
    font-size: var(--font-size-large);
    color: var(--color-text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

/* Indicador de scroll */
.hero__scroll {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero__scroll a {
    color: var(--color-text-white);
    font-size: 2rem;
}

.hero__scroll i {
    transform: rotate(90deg);
    /* Rotar máquina de tatuaje para que apunte abajo */
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}


/* ========================================
   6. ABOUT SECTION
======================================== */
.about {
    position: relative;
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-dark);
    overflow: hidden;
    /* Para contener las partículas y parallax */
}

/* Canvas de partículas de tinta */
.about__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    /* No interfiere con clics */
}

/* Carrusel de fondo de la sección Nosotros */
.about__bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    /* Difuminado suave SOLO en la parte superior e inferior (Fundido inmersivo) */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.about__bg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.about__bg-slide--active {
    opacity: 1;
}

.about__bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Equilibrio de iluminación para que el texto también resalte */
    filter: brightness(1.1) contrast(1.05);
}

/* Overlay oscuro encima del carrusel para legibilidad */
.about__bg-overlay {
    position: absolute;
    inset: 0;
    /* Overlay en punto de equilibrio (0.55/0.65) para mejorar legibilidad sin opacar las fotos */
    background: 
        linear-gradient(180deg, rgba(5, 4, 3, 0.55) 0%, rgba(10, 8, 7, 0.65) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Container con z-index para estar sobre las animaciones */
.about .container {
    position: relative;
    z-index: 2;
}

/* Título con estilo Metal Mania y glow crimson */
.about .section-header__title {
    font-family: 'Metal Mania', cursive;
    font-size: 3.5rem;
    letter-spacing: 5px;
    color: #fff;
    text-transform: uppercase;
    text-shadow:
        0 0 10px rgba(139, 0, 0, 0.8),
        0 0 20px rgba(139, 0, 0, 0.6),
        0 0 30px rgba(139, 0, 0, 0.4),
        0 0 40px rgba(139, 0, 0, 0.2),
        2px 2px 3px rgba(0, 0, 0, 0.8);
    animation: glowPulse 3s ease-in-out infinite;
}

/* Animación de pulso crimson */
@keyframes glowPulse {

    0%,
    100% {
        text-shadow:
            0 0 10px rgba(139, 0, 0, 0.8),
            0 0 20px rgba(139, 0, 0, 0.6),
            0 0 30px rgba(139, 0, 0, 0.4),
            2px 2px 3px rgba(0, 0, 0, 0.8);
    }

    50% {
        text-shadow:
            0 0 20px rgba(196, 30, 30, 1),
            0 0 30px rgba(139, 0, 0, 0.8),
            0 0 40px rgba(139, 0, 0, 0.6),
            0 0 60px rgba(139, 0, 0, 0.3),
            2px 2px 4px rgba(0, 0, 0, 1);
    }
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about__description {
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-large);
    line-height: 1.8;
}

.about__description strong {
    color: var(--color-primary);
}

/* ========================================
   ACCORDION (Secciones Expandibles)
======================================== */
.accordion {
    margin-top: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.accordion__item {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--color-primary);
    overflow: hidden;
    transition: var(--transition);
}

.accordion__item:hover {
    background-color: var(--color-bg-lighter);
}

.accordion__header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.accordion__header:hover {
    background-color: rgba(255, 0, 0, 0.1);
}

.accordion__icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.accordion__title {
    flex: 1;
    color: var(--color-text-white);
    font-size: var(--font-size-large);
    font-weight: 600;
    margin: 0;
}

.accordion__arrow {
    font-size: 1.2rem;
    color: var(--color-text);
    transition: transform 0.3s ease;
}

.accordion__item.active .accordion__arrow {
    transform: rotate(180deg);
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--spacing-md);
}

.accordion__item.active .accordion__content {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.accordion__content p {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.accordion__content ul {
    list-style: none;
    padding-left: 0;
}

.accordion__content li {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    padding-left: 0;
    line-height: 1.6;
}

/* Máquina de tatuaje animada (reemplaza estrella) */
.about__machine-emblem {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.tattoo-machine-img {
    width: 100%;
    max-width: 400px;
    border-radius: 50%;
    border: 3px solid rgba(196, 30, 30, 0.5);
    box-shadow:
        0 0 30px rgba(139, 0, 0, 0.4),
        0 0 60px rgba(139, 0, 0, 0.2),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
    animation: machineGlow 3s ease-in-out infinite alternate,
        machinePulse 8s linear infinite;
    transition: var(--transition);
}

.tattoo-machine-img:hover {
    transform: scale(1.04);
    box-shadow:
        0 0 50px rgba(196, 30, 30, 0.7),
        0 0 100px rgba(139, 0, 0, 0.4);
}

@keyframes machineGlow {
    from {
        box-shadow:
            0 0 20px rgba(139, 0, 0, 0.3),
            0 0 40px rgba(139, 0, 0, 0.1);
        border-color: rgba(196, 30, 30, 0.4);
    }

    to {
        box-shadow:
            0 0 40px rgba(196, 30, 30, 0.6),
            0 0 80px rgba(139, 0, 0, 0.3),
            0 0 120px rgba(80, 0, 0, 0.2);
        border-color: rgba(196, 30, 30, 0.9);
    }
}

@keyframes machinePulse {
    from {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(0.5deg) scale(1.01);
    }

    50% {
        transform: rotate(0deg) scale(1);
    }

    75% {
        transform: rotate(-0.5deg) scale(1.01);
    }

    to {
        transform: rotate(0deg) scale(1);
    }
}


/* ========================================
   WRAPPER PARA ARTIST Y SERVICES
======================================== */
.artist-services-wrapper {
    position: relative;
    width: 100%;
    background-color: var(--color-bg-darker);
    /* overflow: hidden; */ /* Descomentar si el glow causa scroll horizontal */
}

/* ========================================
   ARTIST SECTION - David Rincon
======================================== */
.artist {
    padding: var(--spacing-xl) 0 0 0; /* Solo padding superior */
    background-color: transparent;
}

/* Smoke texture en artist section */
.artist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(139, 0, 0, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(196, 30, 30, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Nombre del artista en tipografía Metal legible */
.artist__name-gothic {
    font-family: 'Metal Mania', cursive !important;
    font-size: 3.5rem !important;
    letter-spacing: 5px !important;
    text-shadow:
        0 0 15px rgba(139, 0, 0, 0.6),
        0 0 30px rgba(139, 0, 0, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}

.artist__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
    position: relative;
    z-index: 1;
}

.artist__image-side {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.artist__photo {
    width: 100%;
    max-width: 340px;
    opacity: 0.55; /* Más transparencia para que parezca una marca de fondo */
    mix-blend-mode: luminosity; 
    margin-top: 20px; /* Se bajó sutilmente a petición del cliente */
    transition: var(--transition);
}

.artist__photo:hover {
    transform: scale(1.02);
}

.artist__description {
    font-size: var(--font-size-large);
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.artist__specialties {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.artist__specialty {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--color-bg-light);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--color-primary);
    max-width: 450px;
    margin-left: 80px; /* Empuja los botones fuerttr hacia el centro */
    transition: var(--transition);
}

.artist__specialty:hover {
    background: var(--color-bg-lighter);
    transform: translateX(5px);
}

.artist__specialty i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.artist__specialty h4 {
    color: var(--color-text-white);
    margin-bottom: 0.25rem;
    font-size: var(--font-size-normal);
}

.artist__specialty p {
    color: var(--color-text-light);
    font-size: var(--font-size-small);
}

.artist__stats {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.artist__stat {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--color-bg-light);
    border-radius: var(--border-radius);
    border: 1px solid rgba(196, 30, 30, 0.15);
    transition: var(--transition);
}

.artist__stat:hover {
    border-color: rgba(196, 30, 30, 0.4);
    box-shadow: var(--shadow-crimson);
}

.artist__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-primary);
    letter-spacing: 2px;
}

.artist__stat-label {
    color: var(--color-text-light);
    font-size: var(--font-size-small);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ========================================
   SERVICES SECTION - Tattoo & Piercing
======================================== */
.services {
    padding: var(--spacing-xl) 0;
    background-color: transparent;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.services__card {
    background: var(--color-bg-light);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    border: 1px solid rgba(196, 30, 30, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.services__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary), var(--color-primary-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services__card:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 30, 30, 0.3);
    box-shadow: var(--shadow-crimson);
}

.services__card:hover::before {
    opacity: 1;
}

.services__card-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.services__card-icon i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.services__card-title {
    font-family: var(--font-display);
    font-size: var(--font-size-h3);
    color: var(--color-text-white);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 1px;
}

.services__card-desc {
    color: var(--color-text-light);
    font-size: var(--font-size-small);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.services__card-list {
    list-style: none;
    padding: 0;
}

.services__card-list li {
    color: var(--color-text);
    font-size: var(--font-size-small);
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.services__card-list li i {
    color: var(--color-primary);
    font-size: 0.75rem;
}


/* ========================================
   7. GALLERY SECTION
======================================== */
.gallery {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-darker);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.gallery__item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery__item:hover .gallery__img {
    transform: scale(1.1);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 4, 3, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__overlay i {
    font-size: 2rem;
    color: var(--color-primary);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery__item:hover .gallery__overlay i {
    transform: translateY(0);
}

.gallery__overlay span {
    color: var(--color-text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Placeholder para imágenes */
.gallery__placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    color: var(--color-text-light);
    border: 2px dashed var(--color-bg-lighter);
}

.gallery__placeholder i {
    font-size: 3rem;
}

/* Sección de redes sociales */
.gallery__social {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
}

.gallery__social-text {
    font-size: var(--font-size-large);
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}


/* ========================================
   8. SMOKE SHOP GATEWAY
======================================== */
.smokeshop-gateway {
    position: relative;
    padding: var(--spacing-xxl) 0;
    text-align: center;
    overflow: hidden;
    background-color: #050505; /* Fondo negro profundo */
    border-top: 1px solid rgba(139, 0, 0, 0.3);
    border-bottom: 1px solid rgba(139, 0, 0, 0.3);
}

.smokeshop-gateway__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/gothic_smoke_banner.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.6; /* Sutil para no opacar el texto */
    z-index: 0;
    transition: transform 10s ease;
}

.smokeshop-gateway:hover .smokeshop-gateway__bg {
    transform: scale(1.05); /* Efecto de acercamiento sutil al humo */
}

/* Oscurecimiento extra sobre la imagen para legibilidad */
.smokeshop-gateway::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.smokeshop-gateway__content {
    position: relative;
    z-index: 3; /* Encima de todo */
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.smokeshop-gateway__frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cubre toda la sección como un borde dinámico */
    mix-blend-mode: screen; /* Mágia: Borra todo el negro del centro de la imagen y fusiona los bordes brillantes con el humo del fondo */
    pointer-events: none; /* Para que no estorbe a los clics */
    z-index: 2; /* Por debajo del texto pero encima del oscurecimiento */
    opacity: 0.9;
}

.smokeshop-gateway__title {
    font-size: 4rem !important; /* Usando fuente Metal */
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
    margin-bottom: 0;
}

.smokeshop-gateway__desc {
    font-size: var(--font-size-large);
    color: var(--color-text-white);
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* ========================================
   9. CONTACT SECTION
======================================== */
.contact {
    position: relative;
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-dark);
    overflow: hidden;
    /* Contener el parallax */
}

/* Fondo psicodélico con parallax */
.contact__psychedelic-bg {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: calc(100% + 200px);
    background-image: url('./images/inkfernal_psychedelic_bg_1769929346151.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    /* Más visible */
    z-index: 0;
    transform: translateZ(0);
    /* Optimización GPU */
}

/* Overlay oscuro sobre el fondo - MÁS SUTIL */
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(20, 0, 30, 0.6) 50%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

/* Container sobre el fondo */
.contact .container {
    position: relative;
    z-index: 2;
}

.contact__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.contact__subtitle {
    font-size: var(--font-size-h3);
    color: var(--color-text-white);
    margin-bottom: var(--spacing-sm);
}

.contact__description {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

/* Formulario */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form__label {
    color: var(--color-text);
    font-weight: 500;
    font-size: var(--font-size-small);
}

.form__input,
.form__textarea {
    padding: 1rem;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-bg-lighter);
    border-radius: var(--border-radius);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: var(--font-size-normal);
    transition: var(--transition);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-bg-darker);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* Información de contacto */
.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact__item {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
}

.contact__icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact__item-content h4 {
    color: var(--color-text-white);
    margin-bottom: 0.25rem;
}

.contact__item-content p {
    color: var(--color-text-light);
    font-size: var(--font-size-small);
}

.contact__item-content a {
    color: var(--color-text-light);
}

.contact__item-content a:hover {
    color: var(--color-primary);
}

/* Redes sociales en contacto */
.contact__social {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-bg-lighter);
}

.contact__social-title {
    color: var(--color-text-white);
    margin-bottom: var(--spacing-sm);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 50px;
    height: 50px;
    background-color: rgba(139, 0, 0, 0.2);
    border: 1px solid rgba(196, 30, 30, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(196, 30, 30, 0.4);
}

/* Mapa */
.map-placeholder {
    height: 400px;
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    color: var(--color-text-light);
    border: 2px dashed var(--color-bg-lighter);
}

.map-placeholder i {
    font-size: 4rem;
}


/* ========================================
   9. FOOTER
======================================== */
.footer {
    background-color: var(--color-bg-darker);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid var(--color-bg-light);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer__logo-img {
    height: 80px;
    width: auto;
    mix-blend-mode: screen; /* Sync with new IFN logo transparency */
    margin-bottom: var(--spacing-sm);
    transition: var(--transition);
}

.footer__logo-img:hover {
    filter: invert(1) opacity(1);
}

.footer__subtitle {
    color: var(--color-text-white);
    font-size: var(--font-size-large);
    margin-bottom: var(--spacing-sm);
}

.footer__text {
    color: var(--color-text-light);
    line-height: 1.8;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links li {
    color: var(--color-text-light);
    transition: var(--transition);
}

.footer__links li:hover,
.footer__links a:hover {
    color: var(--color-primary);
    padding-left: 10px;
}

.footer__links i {
    margin-right: 0.5rem;
    color: var(--color-primary);
}

.footer__bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-bg-light);
    color: var(--color-text-light);
    font-size: var(--font-size-small);
}

.footer__dev {
    margin-top: 0.5rem;
}

.footer__dev strong {
    color: var(--color-primary);
}


/* ========================================
   10. ELEMENTOS FLOTANTES
======================================== */

/* Botón de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: transform 0.2s ease;
    animation: waFloat 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-4px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.8);
}

/* Anillo de pulso alrededor del botón */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: waRing 2s ease-out infinite;
}

@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

@keyframes waRing {
    0%   { transform: scale(1);   opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Botón Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    border: none;
    border-radius: 50%;
    color: var(--color-text-white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.scroll-top i {
    transform: rotate(-90deg);
    /* Rotar máquina de tatuaje para que apunte arriba */
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-5px);
}


/* ========================================
   11. RESPONSIVE - TABLET
======================================== */
@media screen and (max-width: 968px) {
    :root {
        --font-size-hero: 3rem;
        --font-size-h1: 2.5rem;
        --font-size-h2: 1.75rem;
    }

    .about__content,
    .contact__content,
    .artist__content {
        grid-template-columns: 1fr;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .artist__name-gothic {
        font-size: 2.5rem !important;
    }

    .gallery__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .footer__content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}


/* ========================================
   12. RESPONSIVE - MÓVIL
======================================== */
@media screen and (max-width: 768px) {
    /* Header: z-index SUPREMO en móvil para estar sobre todo */
    .header-wrapper,
    .main-nav-bg {
        z-index: 10000 !important;
        position: sticky;
        top: 0;
    }

    .nav__toggle {
        position: relative;
        z-index: 10001 !important; /* Encima del overlay del menú */
    }

    .main-nav-bg {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background-color: transparent !important;
        box-shadow: none;
    }

    
    .nav__logo .logo-img {
        transform: none !important;
        -webkit-transform: none !important;
        filter: none !important;
    }

    /* Menú: OCULTO fuera de pantalla a la derecha por defecto */
    .nav__menu {
        display: flex !important; /* Siempre en el DOM para que el toggle funcione */
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #0a0a0a;
        padding: 60px var(--spacing-lg) var(--spacing-lg);
        box-shadow: -5px 0 20px rgba(0,0,0,0.9);
        z-index: 9999;
        overflow-y: auto;
        /* CLAVE: Empieza fuera de la pantalla hacia la derecha */
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        visibility: hidden;
    }

    .nav__menu.show-menu {
        transform: translateX(0); /* Desliza hacia adentro */
        visibility: visible;
    }

    .nav__list {
        flex-direction: column;
        gap: var(--spacing-md);
        margin-top: var(--spacing-xl);
    }

    .nav__link {
        font-size: var(--font-size-large);
    }

    /* Reducir tamaño del header en móvil para que no sea estorboso */
    .nav {
        padding: 0.5rem 0;
    }

    .nav__logo .logo-img {
        height: 55px;
        width: auto;
        /* Force display block / visibility on mobile */
        display: block;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav__phone {
        display: none;
    }

    .nav__toggle,
    .nav__close {
        display: flex;
    }

    .nav__close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 3rem; /* Extra grande para IOS/Android */
        color: var(--color-primary);
        cursor: pointer;
        z-index: 3100; /* Por encima del propio menú */
        transition: transform 0.3s ease;
    }

    /* Hero */
    :root {
        --font-size-hero: 2.5rem;
        --font-size-h1: 2rem;
        --font-size-h2: 1.5rem;
        --spacing-xl: 3rem;
    }

    .hero__logo-img {
        height: 200px;
        /* Más pequeño en móvil */
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    /* Gallery Carousel para Móvil (Reduce la longitud de la página) */
    .gallery__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--spacing-md);
        padding: var(--spacing-sm) 0 var(--spacing-xl);
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .gallery__item {
        flex: 0 0 85%; /* Se ve una foto y media para invitar al scroll lateral */
        scroll-snap-align: center;
        margin-bottom: 0px;
    }

    .gallery__social {
        margin-top: var(--spacing-md);
        padding: var(--spacing-md);
    }

    /* Smoke Shop Gateway Responsive */
    .smokeshop-gateway {
        padding: var(--spacing-xl) 0;
    }

    .smokeshop-gateway__title {
        font-size: 2.2rem !important;
    }

    .smokeshop-gateway__desc {
        font-size: var(--font-size-base);
        padding: 0 var(--spacing-md);
    }

    .smokeshop-gateway__frame {
        opacity: 0.6;
    }

    /* Bordes Decorativos: Solución Técnica al Estiramiento */
    .artist-services-wrapper::before,
    .artist-services-wrapper::after {
        width: 100px;
        opacity: 0.4;
        background-size: 100% auto; /* Bloquea el estiramiento vertical */
        background-repeat: repeat-y; /* Repite el patrón elegantemente hacia abajo */
    }
    
    .artist-services-wrapper::before { left: -5px; }
    .artist-services-wrapper::after { right: -5px; }

    /* Ajuste de sección Artista para centrar franjas */
    .artist__specialty {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100%;
    }

    .artist__content {
        grid-template-columns: 1fr;
    }

    .artist .container,
    .services .container {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }

    /* Contact */
    .contact__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .form__input,
    .form__textarea {
        width: 100%; /* Garantiza que ocupen todo el ancho sin salirse */
    }

    .contact__item {
        width: 100%;
        flex-wrap: wrap; /* Permite que el texto baje si es muy largo en pantallas mini */
    }

    .contact__item-content {
        word-break: break-word; /* Evita que links largos rompan el layout */
    }

    .social-links {
        justify-content: center;
    }

    /* Services */
    .services__grid {
        grid-template-columns: 1fr;
    }

    /* WhatsApp button más pequeño */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }

    .scroll-top {
        bottom: 80px;
        right: 20px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .gallery__grid {
        display: flex; /* Mantiene el carrusel en teléfonos pequeños */
    }

    .gallery__item {
        flex: 0 0 90%;
    }

    :root {
        --font-size-hero: 2rem;
        --spacing-lg: 2rem;
    }
}

/* ========================================
   VELAS Y PARTÍCULAS - Efecto ambiental
   (se muestra después de la sección Nosotros)
======================================== */

/* Video de fondo de brasas (Arcaicos style) */
#fireBackground {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 5;
    object-fit: cover;
    mix-blend-mode: screen; /* Solo deja las chispas, oculta el fondo negro del video */
    opacity: 0;
    visibility: visible; /* CRÍTICO: nunca display:none para permitir reproducción */
    transition: opacity 1.5s ease;
    pointer-events: none;
}

/* === VELAS CSS === */
.candle {
    position: fixed;
    bottom: 40px;
    z-index: 6;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

/* Ocultar velas en PC (Escritorio) */
@media screen and (min-width: 769px) {
    .candle {
        display: none !important;
    }
}

.candle--visible {
    opacity: 0.8 !important; /* Un poco menos opacas en móvil para integrar mejor */
}

.candle--left {
    left: 20px;
}

.candle--right {
    right: 20px;
}

.candle__body {
    position: relative;
    width: 20px;
    height: 100px;
    background: linear-gradient(180deg, #e8d4a0 0%, #c9a84c 30%, #a07830 100%);
    border-radius: 3px 3px 0 0;
    box-shadow:
        inset -3px 0 6px rgba(0, 0, 0, 0.2),
        inset 3px 0 6px rgba(255, 255, 255, 0.1);
    margin: 0 auto;
}

.candle__wick {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 12px;
    background: linear-gradient(180deg, #333 0%, #1a1a1a 100%);
    border-radius: 1px;
}

.candle__flame {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 40px;
}

.candle__flame-inner {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 20px;
    background: radial-gradient(ellipse at bottom, #fff 0%, #ffe680 40%, rgba(255, 200, 50, 0) 100%);
    border-radius: 50% 50% 20% 20%;
    animation: flameInner 0.15s ease-in-out infinite alternate;
}

.candle__flame-outer {
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 35px;
    background: radial-gradient(ellipse at bottom, #ff8c00 0%, #ff4500 40%, rgba(139, 0, 0, 0.3) 80%, transparent 100%);
    border-radius: 50% 50% 20% 20%;
    animation: flameOuter 0.2s ease-in-out infinite alternate;
    opacity: 0.8;
}

.candle__glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, rgba(139, 0, 0, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    animation: glowCandle 2s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes flameInner {
    0% {
        height: 18px;
        width: 7px;
        transform: translateX(-50%) skewX(-1deg);
    }

    100% {
        height: 22px;
        width: 9px;
        transform: translateX(-50%) skewX(1deg);
    }
}

@keyframes flameOuter {
    0% {
        height: 32px;
        width: 14px;
        transform: translateX(-50%) skewX(2deg);
        opacity: 0.7;
    }

    100% {
        height: 38px;
        width: 18px;
        transform: translateX(-50%) skewX(-2deg);
        opacity: 0.9;
    }
}

@keyframes glowCandle {
    from {
        opacity: 0.6;
        transform: translateX(-50%) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

@media (max-width: 768px) {
    .candle {
        display: none;
    }
}

/* === LIGHTBOX MODAL === */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox__content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    max-height: 80vh;
    border: 1px solid rgba(139, 0, 0, 0.3);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    animation: zoom 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes zoom {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.lightbox__close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2;
}

.lightbox__close:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.lightbox__caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.lightbox__btn {
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid rgba(139, 0, 0, 0.3);
    color: white;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    pointer-events: auto;
    transition: 0.3s;
}

.lightbox__btn:hover {
    background: var(--color-primary);
    border-color: white;
}

@media only screen and (max-width: 700px) {
    .lightbox__content {
        width: 95%;
    }
    .lightbox__close {
        top: 15px;
        right: 20px;
    }
}


/* ========================================
   RESPONSIVE: TABLET (max-width: 968px)
======================================== */
@media (max-width: 968px) {
    /* Grids a 2 columnas */
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Artist: reducir grid */
    .artist__content {
        grid-template-columns: 1fr;
    }

    /* Reducir padding de las secciones wrapper */
    .artist .container,
    .services .container {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }

    /* Features: 2 columnas */
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Specialties dentro del artista */
    .artist__specialty {
        margin-left: 0;
        max-width: 100%;
    }

    /* Contact grid */
    .contact__content {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   RESPONSIVE: MÓVIL (max-width: 768px)
======================================== */
@media (max-width: 768px) {
    /* ---- HERO ---- */
    .hero {
        height: 100vh;
        min-height: 500px;
    }

    .hero__bg-candles {
        background-position: center center;
    }

    .hero__logo-fullscreen {
        width: 90vw !important;
        max-width: 400px !important;
        max-height: 60vh !important;
        margin-bottom: -20px;
    }

    .hero__logo-row {
        margin-bottom: 40px;
    }

    .hero__logo-labels {
        gap: 2rem;
        margin-top: -15px;
    }

    .hero__flanking-text {
        font-size: 2.2rem;
        letter-spacing: 4px;
        min-width: 170px;
        text-align: center;
    }

    /* ---- NAVEGACIÓN ---- */
    .nav__list {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    /* ---- TIPOGRAFÍA ---- */
    .section-header__title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .artist__name-gothic {
        font-size: 2.2rem !important;
        letter-spacing: 2px !important;
    }

    /* ---- GRIDS A 1 COLUMNA ---- */
    .services__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .gallery__item {
        aspect-ratio: auto;
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

    /* ---- ABOUT / NOSOTROS ---- */
    .about__content-grid {
        grid-template-columns: 1fr;
    }

    .about__bg-slide {
        display: flex;
        align-items: center;    
        justify-content: center;
        transform: translateY(-12%); /* Slightly lower to avoid pushing too close to the title */
    }

    .about__bg-slide img {
        object-fit: contain;     /* Imagen completa sin recorte */
        object-position: center center;
        background-color: var(--color-bg-darker); /* Rellena los bordes con negro */
    }

    /* ---- ARTISTA ---- */
    .artist__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .artist__specialty {
        margin-left: 0;
        max-width: 100%;
    }

    .artist__stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .artist__photo {
        max-width: 250px;
        margin: 0 auto;
    }

    /* ---- ARTIST-SERVICES WRAPPER ---- */
    .artist-services-wrapper::before,
    .artist-services-wrapper::after {
        display: none;
    }

    .artist .container,
    .services .container {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }

    /* ---- SMOKE SHOP ---- */
    .smokeshop-gateway__title {
        font-size: 2.2rem !important;
    }

    .smokeshop-gateway__desc {
        font-size: 0.95rem;
        padding: 0 var(--spacing-sm);
    }

    /* ---- CONTACT ---- */
    .contact__content {
        grid-template-columns: 1fr;
    }

    .contact__form {
        padding: var(--spacing-md);
    }

    /* ---- FOOTER ---- */
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }

    /* ---- BOTONES ---- */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    /* ---- GENERAL SPACING ---- */
    .container {
        padding: 0 var(--spacing-sm);
    }
}


/* ========================================
   RESPONSIVE: MÓVIL PEQUEÑO (max-width: 480px)
======================================== */
@media (max-width: 480px) {
    .hero {
        height: 85vh;
        min-height: 400px;
    }

    .hero__logo-fullscreen {
        width: 95vw !important;
        max-width: 320px !important;
        max-height: 50vh !important;
    }

    .hero__logo-labels {
        gap: 1rem;
    }

    .hero__flanking-text {
        font-size: 1.6rem;
        letter-spacing: 3px;
        min-width: 130px;
        text-align: center;
    }

    .section-header__title {
        font-size: 1.4rem;
    }

    .artist__name-gothic {
        font-size: 1.8rem !important;
    }

    .smokeshop-gateway__title {
        font-size: 1.6rem !important;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   BOTÓN VOLVER ARRIBA (Flotante)
======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Movido a la izquierda para no chocar con WhatsApp */
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    z-index: 998; /* Un nivel por debajo de elementos críticos */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transform: translateY(20px);
}

.scroll-top i {
    transform: translateY(-2px); /* Ajuste visual para la flecha */
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: #a01818;
    transform: translateY(-5px) scale(1.1);
}

@media screen and (max-width: 768px) {
    .scroll-top {
        bottom: 25px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ========================================
   SISTEMA DE CENIZAS - REGLA UNIFICADA
   (La definición activa está arriba, línea ~2280)
   El video NUNCA usa display:none para que pueda
   reproducirse en background en móvil y PC.
======================================== */

/* ========================================
   HERO LAUNCH PROMO (Nueva versión)
======================================== */
.hero__logo-row {
    position: relative; /* Clave para el centrado absoluto del hijo */
}

.hero__launch-promo {
    position: absolute; /* Mantiene el logo en su posición original */
    bottom: -180px; /* Al ser ahora horizontal, podemos subirlo un poquito */
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    padding: 0; /* Sin relleno de caja */
    width: 100%;
    max-width: 1200px; /* Mucho más ancho, permite contenido horizontal */
    text-align: center;
    background: transparent; /* Sin tarjeta negra */
    border: none;
    box-shadow: none;
}

.hero__launch-overlay {
    display: none; /* Eliminamos completamente el fondo oscuro difuminado */
}

.hero__launch-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row; /* Ahora fluirá de manera horizontal en PC */
    flex-wrap: wrap; /* Permitirá bajar de renglón si la pantalla es de laptop pequeña */
    justify-content: center;
    align-items: center;
    gap: 1.5rem; /* Separación horizontal entre los elementos */
}

.hero__launch-title {
    font-family: var(--font-display);
    font-size: 2.2rem; /* Tamaño proporcional para Desktop */
    color: var(--color-text-white);
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,1), 0 0 15px rgba(0,0,0,0.8); /* Máxima legibilidad sobre el fondo libre */
}

.hero__launch-subtitle {
    font-size: 1rem; /* Discreto pero legible */
    color: #f1f1f1;
    margin: 0;
    font-family: var(--font-body);
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0,0,0,1);
}

.highlight-discount {
    color: #fff; /* Blanco puro para máximo contraste */
    font-weight: 900;
    font-size: 1.3em;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin: 0 5px;
    /* Brillo de neón inicial */
    text-shadow: 0 0 10px rgba(196, 30, 30, 0.8), 0 0 20px rgba(196, 30, 30, 0.4);
    animation: discountPulse 2s infinite ease-in-out;
}

@keyframes discountPulse {
    0% { text-shadow: 0 0 10px rgba(196, 30, 30, 0.8), 0 0 20px rgba(196, 30, 30, 0.4); transform: scale(1); }
    50% { text-shadow: 0 0 20px rgba(196, 30, 30, 1), 0 0 35px rgba(196, 30, 30, 0.8); transform: scale(1.1); }
    100% { text-shadow: 0 0 10px rgba(196, 30, 30, 0.8), 0 0 20px rgba(196, 30, 30, 0.4); transform: scale(1); }
}

.hero__launch-cta {
    display: inline-block;
    margin-top: 1rem; 
    padding: 12px 24px; 
    font-size: 0.9rem;
    background: rgba(0,0,0,0.4); /* Leve sombra detrás del botón en Desktop */
    color: var(--color-text-white);
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.hero__launch-cta:hover {
    background: var(--color-primary);
    box-shadow: 0 0 20px rgba(196, 30, 30, 0.6);
    transform: translateY(-2px);
    color: white;
}

/* ========================================
   OPTIMIZACION HERO MOVIL (Adaptación Orgánica sin Cajas)
======================================== */
@media screen and (max-width: 768px) {
    /* 1. Hero Dinámico */
    .hero {
        height: auto !important;
        min-height: 100vh !important;
        padding-bottom: 2rem !important; /* Menos padding abajo para evitar espacio muerto extra */
        display: flex;
        flex-direction: column;
        justify-content: center; /* Alineamos por completo al centro vertical el bloque entero */
    }

    /* 2. Rescatar las velas: evitar el corte extremo en pantallas angostas */
    .hero__bg-candles {
        background-size: cover !important; 
        background-position: center 80% !important; /* Enfoca las velas en el tercio inferior */
        opacity: 0.65; /* Evitar saturar el texto */
    }

    /* 3. Reorganización vertical (Logo -> Espacio ajustado) */
    .hero__logo-row {
        position: static !important;
        margin-bottom: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px; /* Espacio natural un poco cerrado */
        width: 100%;
        margin-top: 5vh; /* Bajamos solo un poco (menos que antes) para evitar vacío central */
    }

    .hero__logo-fullscreen {
        width: 85vw !important;
        max-width: 320px !important;
        max-height: 35vh !important;
        margin-bottom: 0 !important;
    }

    .hero__logo-labels {
        margin-top: 0 !important;
        gap: 1.5rem !important;
    }

    .hero__flanking-text {
        font-size: 1.4rem !important;
        min-width: auto !important;
    }

    /* 4. Texto Promocional: Sin Tarjeta Negra, Pura Tipografía Integrada */
    .hero__launch-promo {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 2rem !important; /* Aire superior sano */
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
        background: transparent !important; /* Destruye el fondo sólido negro */
        border: none !important; /* Destruye el borde de tarjeta */
    }

    .hero__launch-overlay {
        display: none !important; /* Destruye el blur/overlay interior para que se vea el fondo limpio */
    }

    /* 5. Ajustes micro de tipografía móvil (Legibilidad con sombras pesadas) */
    .hero__launch-text {
        flex-direction: column !important; /* Vital para restaurar el apilamiento vertical en móviles */
        gap: 0.4rem; /* Muy compacto para evitar altura excesiva */
    }

    .hero__launch-title {
        font-size: 1.4rem !important; /* Tamaño sutil pero legible */
        line-height: 1.25;
        padding: 0 10px;
        text-shadow: 0 2px 10px rgba(0,0,0,1), 0 0 15px rgba(0,0,0,0.8); /* Doble sombra para separar de las velas */
    }

    .hero__launch-subtitle {
        font-size: 0.85rem !important;
        line-height: 1.4;
        padding: 0 15px;
        color: #f1f1f1 !important; /* Más claro para contrastar el fondo */
        text-shadow: 0 2px 8px rgba(0,0,0,1);
    }

    .highlight-discount {
        font-size: 1.25em !important;
        font-weight: 900 !important;
        display: inline-block;
        margin: 5px 0;
        padding: 0;
        background: none;
        box-shadow: none;
        text-shadow: 0 0 15px rgba(196, 30, 30, 1), 0 0 25px rgba(196, 30, 30, 0.8);
    }

    .hero__launch-cta {
        margin-top: 0.8rem !important;
        padding: 10px 18px !important;
        font-size: 0.8rem !important;
        width: auto;
        max-width: 280px;
        background: rgba(0,0,0,0.4) !important; /* Leve tinte para que el botón exista pero sin ser bloque */
    }

    /* 6. Ajuste Degradado y Posición Imágenes Nosotros (Móvil) */
    .about__bg-slider {
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%) !important;
        mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%) !important;
    }

    .about__bg-slide img {
        object-position: center 30% !important; /* Ajuste vertical para centrar mejor en pantallas altas/móviles */
    }
}