/* Design System & Core Styles */
:root {
    --bg-dark: #05070B;             /* Obsidian Black */
    --green-primary: #A3FF00;       /* Acid Lime Green (Volt) */
    --green-dark: #121A0A;          /* Dark Acid Green */
    --brand-plum: #45242D;          /* Brand Plum */
    --white-soft: #F4F7F9;          /* soft White text */
    --gray-muted: #8E9BAE;          /* Muted Grey */
    --neon-magenta: #FF007A;        /* Psychedelic Hot Pink/Magenta */
    --neon-yellow: #FFE600;         /* Energetic Juice Yellow */
    
    /* Layout styling tokens */
    --card-bg: rgba(5, 7, 11, 0.7);
    --card-border: rgba(163, 255, 0, 0.15);
    --card-border-glow: rgba(163, 255, 0, 0.5);
    --transition-fluid: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--white-soft);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
    background-color: var(--bg-dark);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--green-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-magenta);
}

/* Selection */
::selection {
    background-color: var(--neon-magenta);
    color: var(--white-soft);
}

/* SVG Liquid filter hook */
.liquid-target {
    filter: url(#liquid-filter);
    will-change: filter;
}

/* Liquid background canvas */
#liquid-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    pointer-events: none;
    background-color: var(--bg-dark);
}

/* Shared Typography Components */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

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

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(5, 7, 11, 0.75);
    border-bottom: 1px solid rgba(163, 255, 0, 0.1);
    transition: var(--transition-fluid);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition-fluid);
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition-fluid);
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gray-muted);
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--green-primary);
    transition: var(--transition-fluid);
}

.nav-menu a:hover {
    color: var(--white-soft);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sound-toggle {
    background: none;
    border: 1px solid rgba(255, 0, 122, 0.2);
    color: var(--neon-magenta);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fluid);
}

.sound-toggle:hover {
    background-color: rgba(255, 0, 122, 0.1);
    border-color: var(--neon-magenta);
    box-shadow: 0 0 10px rgba(255, 0, 122, 0.3);
}

.sound-toggle svg {
    width: 18px;
    height: 18px;
}

.header-btn {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--green-primary);
    letter-spacing: 0.08em;
    border: 1px solid var(--green-primary);
    padding: 10px 24px;
    border-radius: 4px;
    background: transparent;
    transition: var(--transition-fluid);
}

.header-btn:hover {
    background-color: var(--green-primary);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(163, 255, 0, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white-soft);
    transition: var(--transition-fluid);
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: var(--transition-fluid);
}

.mobile-nav.active {
    right: 0;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-muted);
}

.mobile-link:hover {
    color: var(--white-soft);
}

.mobile-btn {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-dark);
    background-color: var(--green-primary);
    padding: 16px 36px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(163, 255, 0, 0.4);
}

/* Hero Section (Immersive Psychedelic Layout) */
.hero-section.immersive-psychedelic {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 60px 40px;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 7, 11, 0.96) 20%, rgba(5, 7, 11, 0.6) 60%, rgba(5, 7, 11, 0.96) 100%);
    z-index: -1;
}

.hero-brutalist-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    gap: 60px;
    z-index: 5;
}

.hero-brutalist-text {
    animation: fade-in-left 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-acid-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--neon-magenta);
    letter-spacing: 0.25em;
    display: block;
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(255, 0, 122, 0.3);
}

.hero-kinetic-title {
    font-size: clamp(2.5rem, 5.5vw, 5.5rem);
    line-height: 0.85;
    color: var(--white-soft);
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.highlight-neon {
    color: var(--green-primary);
    text-shadow: 0 0 35px rgba(163, 255, 0, 0.25);
}

.hero-brutalist-desc {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    color: var(--gray-muted);
    line-height: 1.5;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-interactive-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-acid-btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--bg-dark);
    background-color: var(--green-primary);
    padding: 18px 40px;
    border-radius: 4px;
    letter-spacing: 0.1em;
    box-shadow: 0 0 25px rgba(163, 255, 0, 0.3);
    transition: var(--transition-fluid);
}

.cta-acid-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(163, 255, 0, 0.6);
    background-color: var(--white-soft);
    color: var(--bg-dark);
}

.cta-flat-btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--white-soft);
    border: 2px solid rgba(244, 247, 249, 0.15);
    padding: 16px 38px;
    border-radius: 4px;
    letter-spacing: 0.1em;
    transition: var(--transition-fluid);
}

.cta-flat-btn:hover {
    border-color: var(--neon-magenta);
    color: var(--neon-magenta);
    box-shadow: 0 0 20px rgba(255, 0, 122, 0.3);
}

/* Immersive 3D Mascot floating panel */
.hero-mascot-container {
    position: relative;
    height: 520px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    animation: fade-in 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mascot-glow-layer {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163, 255, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.15); opacity: 1.0; }
}

.mascot-card {
    position: relative;
    width: 290px;
    height: 435px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(5, 7, 11, 0.85);
    border: 2px solid var(--green-primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(163, 255, 0, 0.15);
    transition: transform 0.15s ease-out;
    transform-style: preserve-3d;
}

.mascot-visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mascot-card-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateZ(30px);
    background: var(--neon-magenta);
    color: var(--white-soft);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 20px;
    letter-spacing: 0.1em;
    white-space: nowrap;
    box-shadow: 0 0 15px rgba(255, 0, 122, 0.5);
    z-index: 10;
}

/* The Manifesto Section */
.manifesto-section {
    position: relative;
    background-color: var(--bg-dark);
    padding: 160px 40px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.manifesto-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.8rem, 4.5vw, 4.2rem);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    text-align: center;
}

.manifesto-word {
    display: inline-block;
    margin-right: 0.25em;
    margin-bottom: 0.15em;
    color: #101520; /* Opaco */
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.manifesto-word.active {
    color: var(--white-soft);
    text-shadow: 0 0 15px rgba(244, 247, 249, 0.2);
}

/* Lines Gallery Section */
.gallery-section {
    position: relative;
    background-color: var(--bg-dark);
    padding: 120px 40px;
    z-index: 6;
    transition: background-color 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-title-wrapper {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-title-wrapper.align-center {
    align-items: center;
    text-align: center;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--green-primary);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--white-soft);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Gallery Card Design */
.gallery-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    transition: var(--transition-fluid);
}

.card-glow-acid {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fluid);
}

.line-bg-green { background: radial-gradient(circle, rgba(163, 255, 0, 0.08) 0%, transparent 65%); }
.line-bg-red { background: radial-gradient(circle, rgba(255, 0, 122, 0.08) 0%, transparent 65%); }
.line-bg-orange { background: radial-gradient(circle, rgba(255, 230, 0, 0.08) 0%, transparent 65%); }

.gallery-card:hover .card-glow-acid {
    opacity: 1;
}

.gallery-card:hover {
    transform: translateY(-8px);
    background: rgba(5, 7, 11, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

.gallery-card[data-bg="#1F3D2B"]:hover { border-color: var(--green-primary); }
.gallery-card[data-bg="#2D1917"]:hover { border-color: var(--neon-magenta); }
.gallery-card[data-bg="#2F1E16"]:hover { border-color: var(--neon-yellow); }

.card-image-wrap {
    width: 100%;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    background: rgba(5, 7, 11, 0.4);
    border-bottom: 1px solid rgba(163, 255, 0, 0.08);
    transition: var(--transition-fluid);
}

.card-product-label {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
    transition: var(--transition-fluid);
}

.gallery-card:hover .card-product-label {
    transform: scale(1.08) rotate(3deg);
}

.gallery-card[data-bg="#1F3D2B"]:hover .card-product-label { filter: drop-shadow(0 20px 30px rgba(163, 255, 0, 0.25)); }
.gallery-card[data-bg="#2D1917"]:hover .card-product-label { filter: drop-shadow(0 20px 30px rgba(255, 0, 122, 0.25)); }
.gallery-card[data-bg="#2F1E16"]:hover .card-product-label { filter: drop-shadow(0 20px 30px rgba(255, 230, 0, 0.25)); }

.card-content-wrap {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.line-title {
    font-size: 1.6rem;
    color: var(--white-soft);
    transition: var(--transition-fluid);
}

.gallery-card:hover .line-green-acid { color: var(--green-primary); }
.gallery-card:hover .line-red-acid { color: var(--neon-magenta); }
.gallery-card:hover .line-orange-acid { color: var(--neon-yellow); }

.card-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.line-status-acid {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 20px;
    width: fit-content;
    color: var(--bg-dark);
}

.bg-neon-green { background-color: var(--green-primary); }
.bg-neon-magenta { background-color: var(--neon-magenta); }
.bg-neon-yellow { background-color: var(--neon-yellow); }

.card-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

.spec-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label-acid {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--gray-muted);
    letter-spacing: 0.1em;
}

.spec-content {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--white-soft);
}

.card-footer-acid {
    border-top: 1px solid rgba(244, 247, 249, 0.05);
    padding-top: 20px;
    margin-top: 20px;
}

.card-footnote-acid {
    font-size: 0.75rem;
    color: var(--gray-muted);
    letter-spacing: 0.02em;
}

/* CONFIGURADOR DYNAMIC DASHBOARD */
.configurador-section {
    background-color: var(--bg-dark);
    padding: 120px 40px;
    border-top: 1px solid rgba(163, 255, 0, 0.1);
    z-index: 7;
    position: relative;
}

.configurador-dashboard {
    max-width: 1200px;
    margin: 50px auto 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 40px;
}

.config-panel-controls {
    background: rgba(5, 7, 11, 0.5);
    border: 1px solid rgba(163, 255, 0, 0.1);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    backdrop-filter: blur(8px);
}

.panel-subtitle {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--gray-muted);
    letter-spacing: 0.15em;
    border-bottom: 1px solid rgba(163, 255, 0, 0.1);
    padding-bottom: 12px;
}

.control-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.control-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.control-counter {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    padding: 4px 16px;
    border-radius: 4px;
    border: 1px solid;
    min-width: 65px;
    text-align: center;
}

.counter-green {
    border-color: var(--green-primary);
    color: var(--green-primary);
    background: rgba(163, 255, 0, 0.05);
}

.counter-magenta {
    border-color: var(--neon-magenta);
    color: var(--neon-magenta);
    background: rgba(255, 0, 122, 0.05);
}

.counter-yellow {
    border-color: var(--neon-yellow);
    color: var(--neon-yellow);
    background: rgba(255, 230, 0, 0.05);
}

.slider-wrapper {
    position: relative;
    width: 100%;
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(244, 247, 249, 0.1);
    outline: none;
    transition: background 0.3s;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

.slider-green-glow::-webkit-slider-thumb {
    background: var(--green-primary);
    box-shadow: 0 0 15px var(--green-primary);
}

.slider-magenta-glow::-webkit-slider-thumb {
    background: var(--neon-magenta);
    box-shadow: 0 0 15px var(--neon-magenta);
}

.slider-yellow-glow::-webkit-slider-thumb {
    background: var(--neon-yellow);
    box-shadow: 0 0 15px var(--neon-yellow);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

.control-metrics {
    font-size: 0.8rem;
    color: var(--gray-muted);
}

/* Stats panel (Right side) */
.config-panel-stats {
    background: rgba(5, 7, 11, 0.6);
    border: 2px solid var(--neon-magenta);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 50px rgba(255, 0, 122, 0.08);
}

.config-panel-stats.card-border-magenta {
    border-color: var(--neon-magenta);
    box-shadow: 0 20px 50px rgba(255, 0, 122, 0.1);
}

.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.stat-box {
    background: rgba(5, 7, 11, 0.8);
    border: 1px solid rgba(244, 247, 249, 0.05);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
}

.color-lime {
    color: var(--green-primary);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--gray-muted);
    font-weight: 800;
    margin-top: 6px;
    letter-spacing: 0.1em;
}

.nutrition-meters {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.meter-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meter-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--white-soft);
}

.meter-bar {
    width: 100%;
    height: 6px;
    background: rgba(244, 247, 249, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fill-neon-green {
    background-color: var(--green-primary);
    box-shadow: 0 0 10px var(--green-primary);
}

.fill-neon-magenta {
    background-color: var(--neon-magenta);
    box-shadow: 0 0 10px var(--neon-magenta);
}

.fill-neon-yellow {
    background-color: var(--neon-yellow);
    box-shadow: 0 0 10px var(--neon-yellow);
}

/* Summary checkout box */
.summary-checkout-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid rgba(255, 0, 122, 0.15);
    padding-top: 30px;
}

.checkout-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.checkout-price-row span:first-child {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-muted);
    letter-spacing: 0.1em;
}

.checkout-total {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white-soft);
}

.checkout-buy-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    color: var(--bg-dark);
    background-color: var(--green-primary);
    padding: 20px 30px;
    border-radius: 4px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(163, 255, 0, 0.3);
    transition: var(--transition-fluid);
}

.checkout-buy-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(163, 255, 0, 0.6);
    background-color: var(--white-soft);
    color: var(--bg-dark);
}

.delivery-notice {
    font-size: 0.75rem;
    color: var(--gray-muted);
    text-align: center;
}

/* Pricing Table Section */
.pricing-section {
    position: relative;
    background-color: var(--bg-dark);
    padding: 120px 40px;
    z-index: 7;
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-fluid);
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    border-color: rgba(163, 255, 0, 0.4);
}

/* Featured card (Mensual) styled in Neon Magenta */
.price-card.featured {
    border: 2px solid var(--neon-magenta);
    box-shadow: 0 10px 45px rgba(255, 0, 122, 0.12);
}

.price-card.featured:hover {
    box-shadow: 0 20px 50px rgba(255, 0, 122, 0.3);
    border-color: var(--neon-magenta);
}

.price-card.featured .price-title {
    color: var(--white-soft);
}

.price-title {
    font-size: 1.3rem;
    color: var(--green-primary);
    margin-bottom: 6px;
}

.color-magenta {
    color: var(--neon-magenta) !important;
}

.price-subtitle {
    font-size: 0.75rem;
    color: var(--gray-muted);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    color: var(--white-soft);
}

.price-amount .currency {
    font-size: 1.4rem;
    font-weight: 700;
    margin-right: 4px;
}

.price-amount .value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.price-amount .period {
    font-size: 0.85rem;
    color: var(--gray-muted);
    font-weight: 500;
    margin-left: 8px;
    letter-spacing: 0.05em;
}

.price-card-body {
    flex-grow: 1;
    margin-bottom: 40px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-list li {
    font-size: 0.95rem;
    color: var(--white-soft);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.features-list li svg {
    width: 16px;
    height: 16px;
    color: var(--green-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.price-card.featured .features-list li svg {
    color: var(--neon-magenta);
}

.price-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--white-soft);
    background-color: transparent;
    border: 1px solid rgba(244, 247, 249, 0.15);
    padding: 16px 20px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-fluid);
}

.price-btn:hover {
    background-color: var(--white-soft);
    color: var(--bg-dark);
    border-color: var(--white-soft);
}

.price-btn.highlight-magenta {
    background-color: var(--neon-magenta);
    border-color: var(--neon-magenta);
    color: var(--white-soft);
    box-shadow: 0 4px 20px rgba(255, 0, 122, 0.3);
}

.price-btn.highlight-magenta:hover {
    background-color: var(--white-soft);
    color: var(--bg-dark);
    border-color: var(--white-soft);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

/* Flavor Dropdown Selector */
.flavor-selector-wrapper {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.flavor-label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--gray-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.flavor-dropdown {
    width: 100%;
    background-color: rgba(5, 7, 11, 0.9);
    border: 1px solid var(--card-border);
    border-radius: 4px;
    padding: 12px 16px;
    color: var(--white-soft);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    outline: none;
    transition: var(--transition-fluid);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23A3FF00' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.flavor-dropdown:focus, 
.flavor-dropdown:hover {
    border-color: var(--green-primary);
    box-shadow: 0 0 10px rgba(163, 255, 0, 0.2);
}

.flavor-dropdown.border-magenta {
    border-color: rgba(255, 0, 122, 0.3);
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23FF007A' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
}

.flavor-dropdown.border-magenta:focus, 
.flavor-dropdown.border-magenta:hover {
    border-color: var(--neon-magenta);
    box-shadow: 0 0 10px rgba(255, 0, 122, 0.2);
}

/* FAQ Accordion Section */
.faq-section {
    position: relative;
    background-color: var(--bg-dark);
    padding: 120px 40px;
    z-index: 8;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-fluid);
}

.faq-item:hover {
    border-color: rgba(163, 255, 0, 0.4);
}

.faq-item.active {
    border-color: var(--green-primary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--white-soft);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    gap: 20px;
}

.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--green-primary);
    transition: transform 0.3s ease;
}

/* Horizontal line */
.faq-icon::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}

/* Vertical line */
.faq-icon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon::before {
    transform: rotate(180deg);
    background-color: var(--green-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 30px 30px 30px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-muted);
}

/* Footer styling */
.main-footer {
    background-color: #020305;
    border-top: 1px solid rgba(163, 255, 0, 0.15);
    padding: 80px 40px;
    z-index: 9;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.footer-brand .logo {
    font-size: 2rem;
}

.motto {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--green-primary);
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--gray-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links a:hover {
    color: var(--white-soft);
}

.footer-copyright {
    border-top: 1px solid rgba(244, 247, 249, 0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright p {
    font-size: 0.8rem;
    color: var(--gray-muted);
}

/* Responsive Rules */
@media (max-width: 992px) {
    .hero-brutalist-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-mascot-container {
        height: 380px;
        order: -1;
    }
    
    .mascot-card {
        width: 220px;
        height: 330px;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .configurador-dashboard {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    
    .price-card.featured {
        order: -1;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 20px;
    }
    
    .nav-menu, 
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-section.immersive-psychedelic {
        padding-top: 100px;
    }
    
    .manifesto-section {
        padding: 100px 20px;
    }
    
    .gallery-section,
    .configurador-section,
    .pricing-section,
    .faq-section {
        padding: 80px 20px;
    }
    
    .config-panel-controls,
    .config-panel-stats {
        padding: 24px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer-inner {
        padding: 0 20px 20px 20px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}
