/* ==========================================================================
   Variables - Paleta Metálica y Lujosa
   ========================================================================== */
:root {
    --bg-dark: #0a0a0a;
    --bg-secondary: #141414;
    --metallic-rose: #b76e79;
    --metallic-rose-light: #e0bfb8;
    --metallic-silver: #e5e4e2;
    --metallic-silver-dark: #8a8d8f;
    --metallic-gold: #d4af37;
    --metallic-bronze: #cd7f32;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --gradient-gold: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --gradient-rose: linear-gradient(135deg, #b76e79, #e0bfb8, #b76e79);
    --gradient-silver: linear-gradient(135deg, #8a8d8f, #e5e4e2, #8a8d8f);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

.mt-2 { margin-top: 2rem; }
.text-center { text-align: center; }

.metallic-text {
    background: linear-gradient(135deg, var(--metallic-rose) 0%, var(--metallic-rose-light) 25%, #ffffff 50%, var(--metallic-rose-light) 75%, var(--metallic-rose) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: textShine 4s linear infinite;
}

@keyframes textShine {
    to {
        background-position: 200% center;
    }
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 15px;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient-rose);
    color: var(--bg-dark);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(183, 110, 121, 0.6);
    background: var(--gradient-gold);
}

.btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    color: var(--metallic-rose-light);
    border: 1px solid var(--metallic-rose-light);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--metallic-rose-light);
    color: var(--bg-dark);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    z-index: 1000;
    transition: all 0.4s ease;
}

header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 5%;
}

.logo-text {
    font-size: 2rem;
    letter-spacing: 4px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: -5px;
    left: 0;
    background: var(--metallic-rose);
    transition: width 0.3s;
}

.nav-item:hover::after { width: 100%; }
.nav-item:hover { color: var(--metallic-rose-light); }

.btn-glow {
    border: 1px solid var(--metallic-rose);
    padding: 8px 15px;
    border-radius: 4px;
    color: var(--metallic-rose-light);
}
.btn-glow:hover {
    background: var(--metallic-rose);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(183, 110, 121, 0.5);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--metallic-gold);
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--metallic-silver);
    font-weight: 300;
}

/* Catalog */
.catalog-section {
    padding: 100px 5%;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Featured Product (Linea Completa) */
.featured-product {
    display: flex;
    flex-wrap: wrap;
    background: var(--bg-dark);
    border: 1px solid var(--metallic-rose);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(183, 110, 121, 0.15);
}

.featured-img {
    flex: 1 1 50%;
    min-width: 350px;
    background: var(--bg-dark);
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.featured-info {
    flex: 1 1 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-info h3 {
    font-size: 2.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    text-shadow: 0px 0px 8px rgba(212, 175, 55, 0.3);
}

.featured-info .description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.featured-info .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--metallic-rose-light);
}

.discount-badge {
    background: var(--metallic-rose);
    color: var(--bg-dark);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Catalog Grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card:hover,
.product-card.in-view {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(183, 110, 121, 0.15);
    border-color: var(--metallic-rose);
}

.product-img {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img img,
.product-card.in-view .product-img img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 10, 10, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 20px;
    text-align: center;
}

.product-card:hover .product-overlay,
.product-card:active .product-overlay,
.product-card.in-view .product-overlay { 
    opacity: 1; 
    pointer-events: auto; 
}

.hover-desc {
    color: var(--metallic-silver);
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 300;
}

.btn-cart {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cart:hover {
    background: var(--text-light);
    color: var(--bg-dark);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.3rem;
    color: var(--metallic-silver);
}

/* Resultados Reales */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.result-card {
    background: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.result-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.result-text {
    padding: 20px;
    text-align: center;
    font-style: italic;
    color: var(--metallic-rose-light);
}

/* Quiz */
.quiz-section {
    padding: 120px 5%;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-dark));
    display: flex;
    justify-content: center;
    align-items: center;
}

.quiz-container {
    max-width: 700px;
    width: 100%;
    padding: 50px;
}

.quiz-container h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.quiz-step {
    display: none;
    animation: fadeIn 0.5s ease forwards;
    margin-top: 40px;
}

.quiz-step.active {
    display: block;
}

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

.quiz-step h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--text-light);
    text-align: center;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.quiz-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 15px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-option:hover {
    background: var(--metallic-rose);
    border-color: var(--metallic-rose);
    color: var(--bg-dark);
}

.result-product {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.result-product img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.result-product h4 {
    font-size: 1.2rem;
    color: var(--metallic-gold);
    margin-bottom: 5px;
}

.result-product p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 80px 5% 20px;
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo h2 {
    font-size: 2.5rem;
    letter-spacing: 3px;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.footer-logo p { color: var(--text-muted); }

.footer-links h3, .footer-contact h3 {
    color: var(--metallic-rose-light);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--text-light); }

.footer-contact p {
    margin-bottom: 10px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--metallic-rose);
    color: var(--bg-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Responsivo */
@media (max-width: 992px) {
    .featured-product { flex-direction: column; }
    .hero h1 { font-size: 3.5rem; }
    .options-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 20px 0;
        clip-path: circle(0 at 100% 0);
        transition: clip-path 0.5s ease-in-out;
    }
    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }
    .hero h1 { font-size: 2.8rem; }
    .quiz-container { padding: 30px 20px; }
}
/* ==========================================================================
   Hero Video Background
   ========================================================================== */
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 100px 5%;
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--metallic-rose-light);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--metallic-silver);
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover, .faq-question.active {
    color: var(--metallic-gold);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(0,0,0,0.2);
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    color: var(--text-muted);
}

/* ==========================================================================
   Instagram Section
   ========================================================================== */
.instagram-section {
    padding: 100px 5%;
    background: var(--bg-dark);
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.insta-post {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--glass-border);
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.insta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10,10,10,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.insta-post:hover img {
    transform: scale(1.1);
}

.insta-post:hover .insta-overlay {
    opacity: 1;
}

/* ==========================================================================
   Scarcity Banner (Oferta Limitada)
   ========================================================================== */
.scarcity-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--metallic-rose);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transform: translateY(100%);
    animation: slideUpBanner 0.8s ease forwards 1s;
}

@keyframes slideUpBanner {
    to { transform: translateY(0); }
}

.scarcity-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.scarcity-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.scarcity-counter {
    background: rgba(183, 110, 121, 0.1);
    border: 1px solid var(--metallic-rose-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timer-divider {
    color: var(--metallic-rose);
    font-weight: bold;
}

.spots-number {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-shadow: 0px 0px 8px rgba(212, 175, 55, 0.3);
}

.btn-scarcity {
    padding: 10px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .scarcity-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 10px;
    }
    .scarcity-content {
        justify-content: center;
    }
    .scarcity-text {
        font-size: 0.95rem;
    }
    .whatsapp-float {
        bottom: 160px;
    }
}
@media (min-width: 769px) {
    .whatsapp-float {
        bottom: 90px;
    }
}
