:root {
    --jade-navy: #132766;
    --jade-navy-2: #1b2f78;
    --jade-blue: #35359d;
    --jade-cyan: #16a8dc;
    --jade-orange: #f5851f;
    --jade-wine: #7d2d68;
    --jade-bg: #060c27;
    --jade-panel: #0e173d;
    --jade-text: #e9f3ff;
    --jade-muted: #9eb4d8;
    --jade-neon: #40d8ff;
}

* { box-sizing: border-box; }

body {
    position: relative;
    font-family: "Trebuchet MS", Verdana, sans-serif;
    color: var(--jade-text);
    background: linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82));
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 14%, rgba(53, 53, 157, 0.24), transparent 30rem),
        radial-gradient(circle at 84% 22%, rgba(22, 168, 220, 0.22), transparent 32rem),
        radial-gradient(circle at 48% 92%, rgba(245, 133, 31, 0.2), transparent 30rem);
}

.jade-nav {
    background: rgba(6, 12, 39, 0.85);
    border-bottom: 1px solid rgba(64, 216, 255, 0.25);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    letter-spacing: 0.04em;
    text-shadow: 0 0 20px rgba(64, 216, 255, 0.45);
}

.nav-link { color: #d8ebff; }
.nav-link:hover { color: #ffffff; }
.footer { background: rgba(6, 12, 39, 0.92); color: #c8ddff; border-top: 1px solid rgba(64, 216, 255, 0.18); }

.text-muted {
    color: #ffffff !important;
}

.hero {
    min-height: 78vh;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(140deg, rgba(10, 22, 67, 0.96), rgba(125, 45, 104, 0.75));
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(32px);
    pointer-events: none;
}

.hero::before {
    width: 320px;
    height: 320px;
    background: rgba(64, 216, 255, 0.26);
    top: -70px;
    right: 8%;
    animation: drift 7s ease-in-out infinite;
}

.hero::after {
    width: 260px;
    height: 260px;
    background: rgba(245, 133, 31, 0.24);
    bottom: -80px;
    left: 6%;
    animation: drift 8.5s ease-in-out infinite reverse;
}

.hero-inner { position: relative; z-index: 2; }
.hero-logo { filter: drop-shadow(0 0 30px rgba(64, 216, 255, 0.45)); }
.hero-title { max-width: 980px; margin: 0 auto; font-size: clamp(2.1rem, 6vw, 5rem); line-height: 0.94; letter-spacing: -0.05em; }
.hero .lead { max-width: 760px; color: #d8ebff; }
.glow-text { text-shadow: 0 0 24px rgba(64, 216, 255, 0.4); }
.eyebrow { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.8rem; font-weight: 700; color: #b6d2fb; }

.hero-metrics .metric-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #c9e7ff;
    border: 1px solid rgba(64, 216, 255, 0.36);
    background: rgba(13, 28, 76, 0.65);
    box-shadow: inset 0 0 22px rgba(64, 216, 255, 0.1);
}

.page-head {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, rgba(19, 39, 102, 0.95), rgba(22, 168, 220, 0.32));
    border-bottom: 1px solid rgba(64, 216, 255, 0.18);
}

.page-head h1 { font-size: clamp(2rem, 5vw, 4rem); letter-spacing: -0.04em; }

.jade-panel, .jade-card, .empty-state {
    background: linear-gradient(165deg, rgba(14, 23, 61, 0.95), rgba(15, 28, 75, 0.88));
    border: 1px solid rgba(64, 216, 255, 0.22);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    padding: clamp(1.25rem, 4vw, 2.4rem);
}

.neon-frame { box-shadow: 0 20px 70px rgba(64, 216, 255, 0.18), inset 0 0 40px rgba(64, 216, 255, 0.05); }
.narrow { max-width: 780px; margin-inline: auto; }
.section-title { letter-spacing: -0.03em; }

.choice-card {
    width: 100%;
    min-height: 165px;
    border: 1px solid rgba(64, 216, 255, 0.26);
    border-radius: 20px;
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: #f5fbff;
    background: linear-gradient(150deg, rgba(19, 39, 102, 0.95), rgba(125, 45, 104, 0.8));
    box-shadow: 0 16px 34px rgba(2, 7, 24, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.choice-card i {
    font-size: 1.35rem;
    color: #73e2ff;
    text-shadow: 0 0 12px rgba(64, 216, 255, 0.55);
}

.choice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 46px rgba(64, 216, 255, 0.25);
    border-color: rgba(64, 216, 255, 0.6);
    color: #ffffff;
}

.choice-card span { font-size: 1.2rem; font-weight: 800; }
.choice-card small { color: #b9dcff; }

.btn-orange {
    background: linear-gradient(135deg, var(--jade-orange), #ff9d3f);
    color: #091a43;
    border: 0;
    font-weight: 700;
}

.btn-orange:hover {
    background: linear-gradient(135deg, #ff9d3f, var(--jade-orange));
    color: #031033;
}

.btn-outline-navy {
    border: 1px solid rgba(64, 216, 255, 0.45);
    color: #d6ecff;
    background: rgba(16, 34, 87, 0.55);
}

.btn-outline-navy:hover,
.btn-outline-navy.active {
    background: rgba(64, 216, 255, 0.2);
    color: #ffffff;
    border-color: rgba(64, 216, 255, 0.85);
    box-shadow: 0 0 18px rgba(64, 216, 255, 0.38);
}

.selector-feedback {
    min-height: 36px;
    display: flex;
    align-items: center;
    color: #b6d8ff;
    font-size: 0.92rem;
}

.selector-feedback strong { color: #73e2ff; }

.text-orange, .price {
    color: #ffb77c;
    text-shadow: 0 0 14px rgba(245, 133, 31, 0.25);
}

.product-card {
    border: 1px solid rgba(64, 216, 255, 0.17);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(10, 21, 57, 0.92);
    box-shadow: 0 14px 34px rgba(2, 8, 25, 0.5);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(64, 216, 255, 0.2);
}

.product-card .card-footer,
.product-card .card-body {
    background: rgba(10, 21, 57, 0.88);
    color: var(--jade-text);
}

.product-image-trigger {
    padding: 0;
    border: 0;
    background: transparent;
    text-align: inherit;
    width: 100%;
    cursor: zoom-in;
}

.product-thumb-frame {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(140deg, rgba(19, 39, 102, 0.6), rgba(22, 168, 220, 0.24));
}

.product-card img,
.product-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.product-detail-img {
    height: auto;
    border-radius: 24px;
    border: 1px solid rgba(64, 216, 255, 0.2);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.image-preview-modal-content {
    background: rgba(7, 14, 41, 0.98);
    border: 1px solid rgba(64, 216, 255, 0.32);
}

.image-preview-full {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    object-position: center;
}

.btn-whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #1db954, #25d366);
    box-shadow: 0 16px 35px rgba(14, 168, 83, 0.42);
}

.floating { animation: floating 4s ease-in-out infinite; }
.reveal-up { animation: revealUp 0.65s ease both; }

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-7px); }
    100% { transform: translateY(0px); }
}

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

@keyframes drift {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-12px, 18px); }
    100% { transform: translate(0, 0); }
}

@media (max-width: 768px) {
    .hero { min-height: 72vh; }
    .choice-card { min-height: 136px; }
    .choice-card span { font-size: 1.02rem; }
}
