:root {
    --bg: #050608;
    --panel: rgba(15, 17, 22, .92);
    --panel-soft: rgba(255,255,255,.045);
    --border: rgba(255,255,255,.12);
    --text: #f7f5f0;
    --muted: #a7a7a7;
    --gold: #d4ad56;
    --gold-2: #f0c96c;
    --green: #18a83f;
    --danger: #cf4747;
    --radius: 18px;
    --shadow: 0 24px 80px rgba(0,0,0,.42);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.site-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 75% 15%, rgba(212,173,86,.16), transparent 34%),
        radial-gradient(circle at 12% 80%, rgba(134,55,28,.18), transparent 32%),
        linear-gradient(135deg, #050608, #0b0d12 55%, #050608);
    pointer-events: none;
    z-index: -2;
}
.site-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: .22;
}
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5,6,8,.82);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 24px; }
.brand img { width: 108px; max-height: 68px; object-fit: contain; display: block; }
nav { display: flex; gap: 28px; align-items: center; }
nav a { color: #dedede; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
nav a:hover { color: var(--gold-2); }
.btn {
    border: 0;
    border-radius: 12px;
    padding: 14px 20px;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: .02em;
    transition: .2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: linear-gradient(135deg, var(--gold), #b98728); color: #14100a; box-shadow: 0 12px 30px rgba(212,173,86,.18); }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border: 1px solid var(--border); }
.btn-whatsapp { background: linear-gradient(135deg, #20c458, #13943d); color: #fff; width: 100%; }
.hero {
    position: relative;
    min-height: calc(100vh - 78px);
    padding: 64px 0;
    background-image: linear-gradient(90deg, rgba(5,6,8,.98) 0%, rgba(5,6,8,.82) 38%, rgba(5,6,8,.38) 70%, rgba(5,6,8,.9)), url('../img/ui/hero-drink.jpg');
    background-position: center;
    background-size: cover;
}
.hero-grid { display: grid; grid-template-columns: .8fr 1.25fr; gap: 54px; align-items: start; }
.hero-copy { padding-top: 48px; }
.eyebrow { color: var(--gold-2); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 800; }
h1 { font-size: clamp(40px, 6vw, 74px); line-height: .95; margin: 16px 0 22px; text-transform: uppercase; max-width: 650px; }
h1 strong { color: var(--gold-2); font-weight: 900; }
.hero-copy p { max-width: 520px; color: #d2d2d2; font-size: 17px; line-height: 1.65; }
.hero-features { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 34px; }
.hero-features div { display: flex; gap: 12px; align-items: center; text-transform: uppercase; font-size: 13px; color: #ddd; }
.hero-features span { color: var(--gold-2); font-size: 22px; }
.wizard-card {
    background: linear-gradient(180deg, rgba(18,20,26,.96), rgba(12,13,17,.94));
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 26px;
}
.wizard-steps { display: flex; gap: 12px; margin-bottom: 24px; }
.step-pill {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    color: #bdbdbd;
    padding: 10px;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
}
.step-pill span { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border); margin-right: 7px; }
.step-pill.active { color: var(--gold-2); border-color: rgba(212,173,86,.55); background: rgba(212,173,86,.08); }
.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeIn .22s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
h2 { margin: 0 0 7px; font-size: 26px; }
h3 { margin: 0; }
.muted { color: var(--muted); margin-top: 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 22px; }
label, .full-label { display: grid; gap: 8px; color: #f2f2f2; font-size: 14px; font-weight: 700; }
label b, .choice-block b { color: #ff7878; }
input, textarea, select {
    width: 100%;
    background: rgba(255,255,255,.045);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: #fff;
    padding: 14px 15px;
    outline: none;
}
input:focus, textarea:focus, select:focus { border-color: rgba(212,173,86,.75); box-shadow: 0 0 0 4px rgba(212,173,86,.08); }
textarea { resize: vertical; }
.choice-block { margin-top: 24px; }
.range-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 14px 0 18px; }
.range-card {
    border: 1px solid var(--border);
    background: rgba(255,255,255,.045);
    color: #fff;
    border-radius: 14px;
    padding: 18px 12px;
    cursor: pointer;
    min-height: 92px;
}
.range-card strong { display: block; font-size: 22px; margin-bottom: 6px; }
.range-card small { color: var(--muted); }
.range-card.selected { border-color: var(--gold-2); background: rgba(212,173,86,.1); box-shadow: inset 0 0 0 1px rgba(212,173,86,.25); }
.actions-row { display: flex; justify-content: flex-end; align-items: center; margin-top: 24px; gap: 12px; }
.actions-row.between { justify-content: space-between; }
.category-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.category-tabs button {
    border: 1px solid var(--border);
    background: rgba(255,255,255,.06);
    color: #fff;
    padding: 12px 19px;
    border-radius: 11px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
}
.category-tabs button.active { background: linear-gradient(135deg, var(--gold), #b98728); color: #120d07; }
.drinks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-height: 720px; overflow: auto; padding-right: 8px; }
.drink-card { border: 1px solid var(--border); background: rgba(255,255,255,.04); border-radius: 18px; overflow: hidden; }
.drink-card img { width: 100%; aspect-ratio: 1.28 / .9; object-fit: cover; display: block; background: #090909; }
.drink-card-body { padding: 15px; }
.drink-card h3 { font-size: 18px; margin-bottom: 7px; }
.drink-card p { color: #bcbcbc; font-size: 13px; line-height: 1.5; min-height: 58px; margin: 0 0 10px; }
.drink-price { color: var(--gold-2); font-size: 12px; }
.qty-control { display: grid; grid-template-columns: 42px 1fr 42px; align-items: center; border: 1px solid var(--border); border-radius: 10px; margin-top: 14px; overflow: hidden; }
.qty-control button { background: rgba(255,255,255,.04); border: 0; color: #fff; height: 38px; cursor: pointer; font-size: 20px; }
.qty-control strong { text-align: center; }
.sticky-summary { position: sticky; bottom: 0; margin-top: 22px; border: 1px solid var(--border); background: rgba(8,9,12,.95); border-radius: 16px; padding: 16px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 20px; }
.summary-box { border: 1px solid var(--border); background: rgba(255,255,255,.04); border-radius: 16px; padding: 18px; }
.box-title { display: flex; justify-content: space-between; align-items: center; font-size: 13px; text-transform: uppercase; font-weight: 900; margin-bottom: 18px; }
.box-title button { background: transparent; border: 1px solid rgba(212,173,86,.45); color: var(--gold-2); border-radius: 9px; padding: 7px 10px; cursor: pointer; font-size: 11px; text-transform: uppercase; }
dl { display: grid; grid-template-columns: 125px 1fr; gap: 10px; margin: 0; font-size: 14px; }
dt { color: var(--muted); }
dd { margin: 0; }
.drink-summary-list { display: grid; gap: 12px; }
.drink-summary-item { display: grid; grid-template-columns: 48px 1fr 30px; align-items: center; gap: 12px; }
.drink-summary-item img { width: 48px; height: 48px; border-radius: 9px; object-fit: cover; }
.package-title { margin: 26px 0 14px; font-size: 21px; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.package-card {
    border: 1px solid var(--border);
    background: rgba(255,255,255,.045);
    color: #fff;
    border-radius: 18px;
    padding: 22px 16px;
    cursor: pointer;
    display: grid;
    gap: 8px;
    text-align: center;
    min-height: 218px;
}
.package-card.featured { border-color: rgba(212,173,86,.5); }
.package-card.selected { border-color: var(--gold-2); background: radial-gradient(circle at top, rgba(212,173,86,.16), rgba(255,255,255,.045)); box-shadow: inset 0 0 0 1px rgba(212,173,86,.22); }
.package-icon { color: var(--gold-2); font-size: 28px; }
.package-card small { color: #bcbcbc; line-height: 1.35; }
.package-card b { color: var(--gold-2); font-size: 25px; margin-top: 6px; }
.package-card em { color: var(--muted); font-style: normal; font-size: 12px; }
.total-box { display: flex; justify-content: space-between; align-items: center; gap: 18px; border: 1px solid var(--border); background: rgba(255,255,255,.04); border-radius: 16px; padding: 18px 20px; margin-top: 18px; }
.total-box strong { text-transform: uppercase; display: block; margin-bottom: 3px; }
.total-box small { color: var(--muted); }
.total-box b { color: var(--gold-2); font-size: 30px; }
.save-note { text-align: center; color: var(--muted); font-size: 12px; }
.section { padding: 70px 0; }
.section-title span { color: var(--gold-2); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 900; }
.section-title h2 { font-size: 42px; margin: 8px 0 24px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.how-grid div { border: 1px solid var(--border); background: rgba(255,255,255,.04); border-radius: 18px; padding: 24px; }
.how-grid b { color: var(--gold-2); font-size: 14px; }
.how-grid p { color: var(--muted); }
.footer { border-top: 1px solid var(--border); background: #050608; padding: 34px 0; }
.footer-grid { display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 22px; }
.footer img { width: 95px; }
.footer p { color: var(--muted); margin: 4px 0 0; }
.footer a { color: var(--gold-2); }
.center-page { min-height: 100vh; display: grid; place-items: center; background: radial-gradient(circle at top, rgba(212,173,86,.13), transparent 45%), #050608; }
.thanks-card { width: min(520px, calc(100% - 36px)); text-align: center; border: 1px solid var(--border); background: var(--panel); border-radius: 24px; padding: 42px; box-shadow: var(--shadow); }
.thanks-card img { width: 150px; }
.thanks-card p { color: var(--muted); line-height: 1.7; }
.badge { display: inline-flex; border-radius: 999px; padding: 5px 10px; font-size: 12px; font-weight: 800; }
.badge-warning { background: rgba(212,173,86,.16); color: #ffd477; }
.badge-info { background: rgba(65,165,211,.17); color: #91d8ff; }
.badge-primary { background: rgba(105,134,255,.17); color: #aebdff; }
.badge-success { background: rgba(33,178,91,.17); color: #8bf3b1; }
.badge-danger { background: rgba(214,75,75,.18); color: #ff9c9c; }
.badge-secondary { background: rgba(255,255,255,.1); color: #ddd; }
@media (max-width: 1020px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { padding-top: 12px; }
    .drinks-grid { grid-template-columns: repeat(2, 1fr); }
    nav { display: none; }
}
@media (max-width: 720px) {
    .container { width: min(100% - 24px, 1180px); }
    .nav-wrap { min-height: 68px; }
    .brand img { width: 86px; }
    .topbar .btn { display: none; }
    .hero { padding: 28px 0; }
    .wizard-card { padding: 18px; border-radius: 18px; }
    .form-grid, .range-options, .summary-grid, .package-grid, .how-grid, .footer-grid { grid-template-columns: 1fr; }
    .drinks-grid { grid-template-columns: 1fr; max-height: unset; overflow: visible; padding-right: 0; }
    .sticky-summary { flex-direction: column; align-items: stretch; }
    .sticky-summary > div { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .actions-row, .actions-row.between { flex-direction: column; align-items: stretch; }
    dl { grid-template-columns: 1fr; gap: 4px; }
    .total-box { flex-direction: column; align-items: flex-start; }
}

/* Melhorias visuais da página inicial e botões animados */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 22%, rgba(240,201,108,.18), transparent 22%),
        radial-gradient(circle at 88% 42%, rgba(255,255,255,.08), transparent 24%);
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -160px;
    bottom: -210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,173,86,.18), transparent 68%);
    filter: blur(4px);
    pointer-events: none;
    animation: floatGlow 7s ease-in-out infinite alternate;
}
.hero-grid { position: relative; z-index: 1; }
.hero-copy h1 { text-shadow: 0 18px 55px rgba(0,0,0,.55); }
.hero-copy h1 strong { display: inline-block; position: relative; }
.hero-copy h1 strong::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
    opacity: .72;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 30px; max-width: 560px; }
.hero-stats div {
    border: 1px solid rgba(255,255,255,.13);
    background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
    border-radius: 18px;
    padding: 16px 14px;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 38px rgba(0,0,0,.18);
}
.hero-stats strong { display: block; color: var(--gold-2); font-size: 28px; line-height: 1; }
.hero-stats small { display: block; color: #d3d3d3; margin-top: 7px; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.btn { position: relative; overflow: hidden; will-change: transform; }
.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-120%) skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
    transition: transform .62s ease;
    pointer-events: none;
}
.btn:hover::after { transform: translateX(120%) skewX(-18deg); }
.btn:hover { transform: translateY(-3px); }
.btn-animated { animation: softPulse 2.9s ease-in-out infinite; }
.btn-outline-animated:hover { border-color: rgba(240,201,108,.72); box-shadow: 0 0 0 4px rgba(240,201,108,.08), 0 14px 36px rgba(0,0,0,.25); }
.btn-whatsapp-pulse { box-shadow: 0 0 0 0 rgba(32,196,88,.34); animation: whatsappPulse 2.4s infinite; }
.range-card, .drink-card, .package-card, .how-grid div, .wizard-card { transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease; }
.range-card:hover, .drink-card:hover, .package-card:hover, .how-grid div:hover {
    transform: translateY(-5px);
    border-color: rgba(240,201,108,.45);
    box-shadow: 0 20px 44px rgba(0,0,0,.28);
}
.drink-card img { transition: transform .35s ease, filter .35s ease; }
.drink-card:hover img { transform: scale(1.045); filter: saturate(1.12) contrast(1.04); }
.step-pill.active span { background: var(--gold-2); color: #111; border-color: var(--gold-2); }
.category-tabs button:hover { border-color: rgba(240,201,108,.55); color: var(--gold-2); transform: translateY(-2px); }
.qty-control button:hover { background: rgba(212,173,86,.18); color: var(--gold-2); }
@keyframes softPulse {
    0%, 100% { box-shadow: 0 12px 30px rgba(212,173,86,.18); }
    50% { box-shadow: 0 16px 44px rgba(212,173,86,.35); }
}
@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(32,196,88,.34); }
    70% { box-shadow: 0 0 0 13px rgba(32,196,88,0); }
    100% { box-shadow: 0 0 0 0 rgba(32,196,88,0); }
}
@keyframes floatGlow {
    from { transform: translate3d(0,0,0) scale(1); }
    to { transform: translate3d(50px,-28px,0) scale(1.08); }
}
@media (max-width: 720px) {
    .hero-cta { display: grid; grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr; }
}


/* Instagram e reforço visual da página inicial */
.nav-actions { display: flex; align-items: center; gap: 12px; }
.social-icon, .btn-instagram svg, .footer-instagram svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex: 0 0 auto;
}
.social-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(240,201,108,.28);
    color: var(--gold-2);
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
    box-shadow: 0 16px 34px rgba(0,0,0,.22);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.social-icon:hover {
    transform: translateY(-3px) rotate(-4deg);
    border-color: rgba(240,201,108,.72);
    box-shadow: 0 18px 44px rgba(212,173,86,.16);
}
.btn-instagram {
    color: #fff;
    border: 1px solid rgba(240,201,108,.25);
    background:
        radial-gradient(circle at 20% 20%, rgba(240,201,108,.22), transparent 38%),
        linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
}
.btn-instagram:hover { border-color: rgba(240,201,108,.7); color: var(--gold-2); }
.footer-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--gold-2);
    font-weight: 800;
}
@media (max-width: 720px) {
    .nav-actions .social-icon { display: inline-flex; width: 42px; height: 42px; }
    .nav-actions .btn { display: none; }
}


/* Ajuste V5 - index: topo limpo, botões e cards iguais ao modelo enviado */
.nav-actions .btn-gold { display: none; }
.nav-actions { min-width: 52px; justify-content: flex-end; }

.hero-copy { max-width: 680px; }
.hero-cta {
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}
.hero-cta .btn {
    min-height: 64px;
    border-radius: 15px;
    padding: 0 28px;
    font-size: 16px;
    font-weight: 900;
    white-space: nowrap;
}
.hero-cta .btn-gold {
    min-width: 286px;
    justify-content: center;
    color: #16100a;
    box-shadow: 0 18px 42px rgba(212,173,86,.28);
}
.hero-cta .btn-ghost,
.hero-cta .btn-instagram {
    min-width: 176px;
    border-color: rgba(255,255,255,.24);
    background: rgba(255,255,255,.065);
    backdrop-filter: blur(10px);
}
.hero-cta .btn-instagram {
    color: #fff;
    border-color: rgba(240,201,108,.34);
}
.hero-cta .btn-instagram svg {
    width: 24px;
    height: 24px;
}
.hero-stats {
    max-width: 640px;
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    gap: 14px;
    margin-top: 34px;
}
.hero-stats div {
    min-height: 100px;
    padding: 18px 17px;
    border-radius: 18px;
    border-color: rgba(255,255,255,.16);
    background:
        radial-gradient(circle at 100% 0%, rgba(212,92,45,.20), transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.025));
}
.hero-stats strong {
    font-size: 34px;
    letter-spacing: -.04em;
}
.hero-stats small {
    color: #e4e0d8;
    font-size: 13px;
    letter-spacing: .055em;
}
@media (max-width: 720px) {
    .nav-actions .social-icon { display: inline-flex; }
    .hero-cta .btn { width: 100%; min-width: 0; }
    .hero-stats { grid-template-columns: 1fr; max-width: none; }
}
