:root {
    --bg-dark: #08020e;
    --bg-deep: #13031f;
    --bg-panel: rgba(35, 12, 53, 0.55);
    --border-soft: rgba(255, 255, 255, 0.14);
    --accent-purple: #a834ff;
    --accent-gold: #f7d46b;
    --accent-pink: #ff7edf;
    --accent-blue: #84f2ff;
    --text-soft: rgba(255, 255, 255, 0.72);
    --shadow-main: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background:
        radial-gradient(circle at 15% 20%, rgba(180, 64, 255, 0.34), transparent 25%),
        radial-gradient(circle at 85% 15%, rgba(116, 34, 170, 0.32), transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 40%),
        linear-gradient(180deg, #1a0430 0%, var(--bg-deep) 48%, var(--bg-dark) 100%);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.03));
    mix-blend-mode: screen;
    opacity: 0.7;
    z-index: 0;
}

main,
nav,
footer {
    position: relative;
    z-index: 2;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

.brand-logo {
    font-family: 'Cinzel', serif;
    font-style: italic;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.gold-text {
    color: var(--accent-gold);
}

.text-shadow {
    text-shadow: 0 10px 35px rgba(0, 0, 0, 0.55);
}

.glow-text {
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.18), 0 0 32px rgba(168, 52, 255, 0.45);
}

.letter-spacing-1 {
    letter-spacing: 0.22em;
}

.holographic-text {
    background: linear-gradient(90deg, #ffe8ff 0%, var(--accent-blue) 22%, #d8b4ff 44%, var(--accent-pink) 66%, #fff3b0 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: holoGradient 5s linear infinite;
    filter: drop-shadow(0 0 20px rgba(197, 150, 255, 0.18));
}

@keyframes holoGradient {
    from {
        background-position: 0 center;
    }
    to {
        background-position: 200% center;
    }
}

.stars-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        radial-gradient(2px 2px at 6% 12%, rgba(255, 255, 255, 0.95), transparent),
        radial-gradient(1px 1px at 16% 78%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 34% 22%, rgba(240, 212, 107, 0.8), transparent),
        radial-gradient(2px 2px at 46% 60%, rgba(255, 255, 255, 0.72), transparent),
        radial-gradient(1px 1px at 57% 31%, rgba(132, 242, 255, 0.85), transparent),
        radial-gradient(2px 2px at 72% 14%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 81% 42%, rgba(255, 126, 223, 0.85), transparent),
        radial-gradient(2px 2px at 93% 74%, rgba(255, 255, 255, 0.8), transparent);
    animation: starsSparkle 6s ease-in-out infinite alternate;
}

@keyframes starsSparkle {
    from {
        opacity: 0.45;
        transform: scale(1);
    }
    to {
        opacity: 0.92;
        transform: scale(1.015);
    }
}

.nebula {
    position: fixed;
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.32;
}

.nebula-left {
    top: 12%;
    left: -12rem;
    background: radial-gradient(circle, rgba(170, 63, 255, 0.9), rgba(170, 63, 255, 0));
}

.nebula-right {
    right: -14rem;
    bottom: 8%;
    background: radial-gradient(circle, rgba(255, 126, 223, 0.8), rgba(255, 126, 223, 0));
}

.nav-cta {
    border-color: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
}

.nav-link-custom {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.nav-link-custom:hover {
    color: #fff;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.42);
}

.hero-section {
    padding: 2rem 0 4rem;
}

.hero-shell {
    padding: 2rem 0 1rem;
}

.eyebrow-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--border-soft);
    backdrop-filter: blur(18px);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero-kicker {
    letter-spacing: 0.32em;
    font-size: 0.92rem;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 0.94;
    font-weight: 900;
    max-width: 10ch;
}

.hero-copy {
    max-width: 57ch;
    font-size: 1.05rem;
    line-height: 1.8;
}

.benefits-panel {
    display: grid;
    gap: 0.9rem;
    padding: 1.4rem;
    max-width: 34rem;
    border-radius: 1.6rem;
    background: linear-gradient(180deg, rgba(50, 20, 72, 0.7), rgba(18, 8, 28, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-main);
    backdrop-filter: blur(18px);
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.benefit-icon {
    display: inline-grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    flex: 0 0 auto;
}

.hero-note {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    max-width: 42rem;
}

.cta-group .btn {
    min-height: 3.8rem;
}

.showcase-scene {
    position: relative;
    min-height: 45rem;
    transition: transform 0.18s ease-out;
    will-change: transform;
}

.glass-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(40, 15, 61, 0.75), rgba(13, 5, 22, 0.65));
    box-shadow: var(--shadow-main);
    backdrop-filter: blur(16px);
}

.showcase-copy {
    position: absolute;
    top: 1rem;
    left: 0;
    width: min(20rem, 62%);
    padding: 1.2rem 1.3rem;
    border-radius: 1.25rem;
    z-index: 3;
}

.showcase-copy h2 {
    margin: 0.25rem 0 0.6rem;
    font-size: 1.35rem;
    font-weight: 800;
}

.showcase-copy p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.65;
}

.mini-label,
.section-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(247, 212, 107, 0.12);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 800;
}

.ad-frame {
    position: absolute;
    right: 0;
    top: 3.5rem;
    width: min(100%, 33rem);
    padding: 0.9rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
    box-shadow: var(--shadow-main);
}

.ad-frame::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(255, 126, 223, 0.3), rgba(132, 242, 255, 0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.hero-poster {
    position: relative;
    width: 100%;
    display: block;
    aspect-ratio: 636 / 836;
    object-fit: cover;
    border-radius: 1.4rem;
}

.floating-tag {
    position: absolute;
    max-width: 15rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(20, 8, 34, 0.8);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(18px);
    color: #fff;
    font-weight: 700;
    z-index: 3;
}

.floating-tag-top {
    right: 1rem;
    top: -0.5rem;
}

.floating-tag-bottom {
    left: 0;
    bottom: 1.2rem;
}

.collection-section {
    padding-bottom: 5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    font-weight: 900;
    margin: 0;
}

.section-copy {
    max-width: 52rem;
    line-height: 1.8;
}

.catalog-tools {
    width: min(100%, 26rem);
    padding: 1rem 1.1rem;
    border-radius: 1.25rem;
}

.catalog-tools .input-group {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.catalog-tools input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-chip {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-radius: 999px;
    padding: 0.75rem 1.1rem;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
    background: rgba(247, 212, 107, 0.15);
    border-color: rgba(247, 212, 107, 0.45);
    transform: translateY(-1px);
}

.product-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(28, 10, 42, 0.84), rgba(10, 4, 17, 0.92));
    box-shadow: var(--shadow-main);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%);
    pointer-events: none;
}

.product-media {
    position: relative;
    padding: 1.1rem 1.1rem 0;
}

.product-media::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.8rem;
    width: 58%;
    height: 1.4rem;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    filter: blur(12px);
}

.product-image-wrap {
    position: relative;
    border-radius: 1.4rem;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 244, 248, 0.98));
    aspect-ratio: 4 / 5;
    display: grid;
    place-items: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-body {
    position: relative;
    padding: 1.35rem 1.35rem 1.5rem;
    z-index: 1;
}

.product-category {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.product-title {
    margin: 1rem 0 0.45rem;
    font-size: 1.45rem;
    font-weight: 900;
}

.product-tagline {
    color: var(--accent-gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}

.product-description {
    margin: 0.9rem 0 1rem;
    color: var(--text-soft);
    line-height: 1.75;
}

.product-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.benefit-pill {
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.product-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.product-link:hover {
    color: #fff;
}

.catalog-empty {
    margin-top: 1rem;
    padding: 1.4rem;
    border-radius: 1.25rem;
    color: rgba(255, 255, 255, 0.82);
}

.experience-card {
    padding: 2rem;
    border-radius: 1.6rem;
}

.feature-list-clean {
    margin-top: 1.2rem;
    display: grid;
    gap: 0.8rem;
}

.feature-list-clean li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.86);
}

.feature-list-clean i {
    color: var(--accent-gold);
    margin-top: 0.15rem;
}

.cta-panel {
    background: linear-gradient(180deg, rgba(70, 24, 107, 0.72), rgba(16, 5, 26, 0.88));
}

.loading-card {
    min-height: 34rem;
}

.loading-line,
.loading-chip,
.loading-button,
.loading-image {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.loading-line::after,
.loading-chip::after,
.loading-button::after,
.loading-image::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    animation: shimmer 1.6s infinite;
}

.loading-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 1.4rem;
}

.loading-chip {
    width: 6rem;
    height: 1.9rem;
    border-radius: 999px;
}

.loading-line {
    height: 0.95rem;
    border-radius: 999px;
    margin-top: 0.8rem;
}

.loading-line.title {
    height: 1.4rem;
    width: 75%;
}

.loading-line.short {
    width: 55%;
}

.loading-button {
    margin-top: 1.2rem;
    width: 10rem;
    height: 2.8rem;
    border-radius: 999px;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.product-card[data-accent='violet'] .product-category,
.product-card[data-accent='violet'] .benefit-pill:hover {
    background: rgba(168, 52, 255, 0.18);
}

.product-card[data-accent='blue'] .product-category {
    background: rgba(81, 179, 255, 0.16);
}

.product-card[data-accent='purple'] .product-category {
    background: rgba(158, 114, 255, 0.16);
}

.product-card[data-accent='gold'] .product-category {
    background: rgba(247, 212, 107, 0.18);
}

.product-card[data-accent='pink'] .product-category {
    background: rgba(255, 126, 223, 0.16);
}

.product-card[data-accent='red'] .product-category {
    background: rgba(255, 90, 90, 0.16);
}

.product-card[data-accent='green'] .product-category {
    background: rgba(58, 193, 112, 0.18);
}

.product-card[data-accent='aqua'] .product-category {
    background: rgba(132, 242, 255, 0.18);
}

.info-card {
    height: 100%;
    padding: 2rem;
    border-radius: 1.6rem;
    background: linear-gradient(180deg, rgba(27, 10, 43, 0.8), rgba(11, 4, 18, 0.82));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-main);
}

.info-card h3 {
    margin: 1rem 0 0.8rem;
    font-size: 1.4rem;
    font-weight: 800;
}

.info-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.highlight-card {
    background: linear-gradient(180deg, rgba(74, 26, 109, 0.82), rgba(15, 4, 25, 0.9));
}

.btn-whatsapp {
    background: linear-gradient(135deg, #27db71, #15b95b);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.9rem 1.7rem;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-whatsapp:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(37, 211, 102, 0.35);
    filter: brightness(1.04);
}

.pulse-effect {
    animation: pulseWhatsApp 2.2s infinite;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.border-purple {
    border-color: rgba(168, 52, 255, 0.26) !important;
}

.footer-banner {
    background: linear-gradient(180deg, rgba(11, 4, 18, 0.88), rgba(18, 7, 30, 0.95));
    backdrop-filter: blur(16px);
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 1rem;
    }

    .hero-title {
        max-width: none;
    }

    .showcase-scene {
        min-height: auto;
        padding-top: 8rem;
    }

    .showcase-copy,
    .ad-frame,
    .floating-tag {
        position: relative;
    }

    .showcase-copy {
        top: auto;
        left: auto;
        width: 100%;
        margin-bottom: 1rem;
    }

    .ad-frame {
        top: auto;
        right: auto;
        width: 100%;
    }

    .floating-tag-top,
    .floating-tag-bottom {
        inset: auto;
        margin-top: 1rem;
        max-width: none;
    }

    .catalog-tools {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .navbar .container {
        gap: 1rem;
        justify-content: center !important;
    }

    .hero-shell {
        padding-top: 1rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 13vw, 4rem);
    }

    .hero-copy {
        font-size: 0.98rem;
    }

    .benefits-panel,
    .info-card,
    .experience-card {
        padding: 1.25rem;
    }

    .cta-group {
        width: 100%;
    }

    .cta-group .btn {
        width: 100%;
    }

    .showcase-scene {
        padding-top: 0;
    }

    .product-body {
        padding: 1.1rem 1.1rem 1.3rem;
    }

    .product-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .product-footer .btn,
    .product-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}