: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; }
}


/* v24 Home Premium */
.home-topbar {
    background: rgba(5,6,8,.76);
}

.home-topbar .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-quote-btn {
    padding: 12px 16px;
    border-radius: 999px;
}

.home-hero-premium {
    position: relative;
    min-height: calc(100vh - 78px);
    display: grid;
    align-items: center;
    padding: 84px 0;
    background-image:
        radial-gradient(circle at 78% 22%, rgba(212,173,86,.22), transparent 34%),
        linear-gradient(90deg, rgba(5,6,8,.98) 0%, rgba(5,6,8,.88) 42%, rgba(5,6,8,.40) 72%, rgba(5,6,8,.92)),
        var(--home-hero);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.home-hero-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .18;
}

.home-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .96fr) 360px;
    gap: 44px;
    align-items: end;
}

.home-hero-copy h1 {
    font-size: clamp(44px, 6.6vw, 82px);
    line-height: .92;
    margin: 16px 0 22px;
    max-width: 760px;
}

.home-hero-copy p {
    max-width: 620px;
    color: #e1dfd8;
    font-size: 18px;
    line-height: 1.7;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn-whatsapp-soft {
    background: rgba(23, 166, 74, .16);
    border: 1px solid rgba(69, 226, 119, .28);
    color: #caffd9;
}

.home-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 170px));
    gap: 12px;
    margin-top: 32px;
}

.home-trust-row div {
    border: 1px solid rgba(255,255,255,.14);
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
    border-radius: 18px;
    padding: 15px;
    backdrop-filter: blur(12px);
}

.home-trust-row strong {
    display: block;
    color: var(--gold-2);
    font-size: 30px;
    line-height: 1;
}

.home-trust-row span {
    color: #e6e1d5;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.home-hero-card {
    border: 1px solid rgba(240,201,108,.28);
    background: linear-gradient(180deg, rgba(18,20,26,.72), rgba(5,6,8,.86));
    box-shadow: 0 30px 80px rgba(0,0,0,.42);
    border-radius: 28px;
    padding: 14px;
    backdrop-filter: blur(14px);
}

.home-hero-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.home-hero-card div {
    padding: 16px 8px 6px;
}

.home-hero-card span {
    color: var(--gold-2);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 900;
}

.home-hero-card strong {
    display: block;
    color: #fff;
    font-size: 25px;
    margin: 6px 0;
}

.home-hero-card small {
    color: var(--muted);
}

.section-title p {
    max-width: 620px;
    margin: 8px auto 0;
    color: var(--muted);
    line-height: 1.55;
}

.premium-how div {
    position: relative;
    overflow: hidden;
}

.premium-how div::after {
    content: "";
    position: absolute;
    inset: auto 18px 0 18px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: .55;
}

.home-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.home-package-card {
    position: relative;
    min-height: 330px;
    display: grid;
    align-content: start;
    gap: 12px;
    border: 1px solid rgba(255,255,255,.12);
    background:
        radial-gradient(circle at top right, rgba(212,173,86,.12), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
    border-radius: 24px;
    padding: 24px;
    transition: .22s ease;
}

.home-package-card:hover {
    transform: translateY(-5px);
    border-color: rgba(240,201,108,.42);
    box-shadow: 0 24px 60px rgba(0,0,0,.30);
}

.home-package-card.featured {
    border-color: rgba(240,201,108,.56);
    background:
        radial-gradient(circle at top right, rgba(240,201,108,.22), transparent 38%),
        linear-gradient(180deg, rgba(212,173,86,.16), rgba(255,255,255,.035));
}

.home-package-card em {
    position: absolute;
    top: 18px;
    right: 18px;
    font-style: normal;
    background: var(--gold-2);
    color: #111;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 950;
}

.home-package-card > span {
    color: var(--gold-2);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
    font-weight: 950;
}

.home-package-card h3 {
    font-size: 25px;
    margin: 0;
}

.home-package-card p {
    color: #cfcfcf;
    line-height: 1.55;
    margin: 0;
}

.home-package-card strong {
    display: block;
    color: var(--gold-2);
    font-size: 29px;
    margin-top: 8px;
}

.home-package-card small {
    color: var(--muted);
    font-size: 13px;
}

.home-package-card a {
    align-self: end;
    width: fit-content;
    margin-top: 14px;
    border: 1px solid rgba(240,201,108,.28);
    background: rgba(212,173,86,.11);
    color: var(--gold-2);
    border-radius: 999px;
    padding: 11px 14px;
    font-weight: 900;
}

.featured-drinks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.featured-drinks-grid article {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.12);
    background: #111;
    box-shadow: 0 22px 50px rgba(0,0,0,.25);
}

.featured-drinks-grid img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    display: block;
    transition: .35s ease;
}

.featured-drinks-grid article:hover img {
    transform: scale(1.06);
}

.featured-drinks-grid article::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.86));
}

.featured-drinks-grid article div {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
}

.featured-drinks-grid span {
    color: var(--gold-2);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 900;
}

.featured-drinks-grid h3 {
    font-size: 24px;
    margin: 5px 0 7px;
}

.featured-drinks-grid p {
    color: #ddd;
    margin: 0;
    line-height: 1.45;
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.event-chip-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.event-chip-grid div {
    display: grid;
    place-items: center;
    min-height: 106px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.045);
    border-radius: 20px;
    color: #fff;
    font-weight: 900;
}

.event-chip-grid span {
    display: block;
    color: var(--gold-2);
    font-size: 24px;
    margin-bottom: 8px;
}

.about-premium-card {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 26px;
    align-items: stretch;
    border: 1px solid rgba(240,201,108,.20);
    background:
        radial-gradient(circle at top left, rgba(212,173,86,.14), transparent 35%),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
    border-radius: 28px;
    padding: 26px;
    box-shadow: var(--shadow);
}

.about-premium-card > img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 22px;
}

.about-premium-card h2 {
    font-size: clamp(30px, 4vw, 52px);
    margin: 12px 0;
}

.about-premium-card p {
    color: #d5d5d5;
    line-height: 1.65;
    font-size: 17px;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.differentials-grid article {
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.18);
    border-radius: 18px;
    padding: 16px;
    display: grid;
    gap: 7px;
}

.differentials-grid b {
    color: var(--gold-2);
    font-size: 24px;
}

.differentials-grid strong {
    color: #fff;
}

.differentials-grid small {
    color: var(--muted);
    line-height: 1.45;
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    grid-auto-rows: 230px;
    gap: 14px;
}

.home-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 20px 48px rgba(0,0,0,.22);
}

.home-gallery-grid img:first-child {
    grid-row: span 2;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-grid article {
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
    border-radius: 24px;
    padding: 24px;
}

.testimonial-grid article div {
    color: var(--gold-2);
    font-size: 64px;
    line-height: .7;
}

.testimonial-grid p {
    color: #dfdfdf;
    line-height: 1.55;
    min-height: 86px;
}

.testimonial-grid strong {
    color: #fff;
}

.budget-section {
    scroll-margin-top: 100px;
}

.premium-wizard {
    width: min(980px, 100%);
    margin: 0 auto;
}

.premium-footer {
    border-top: 1px solid rgba(255,255,255,.10);
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    height: 52px;
    border-radius: 999px;
    background: linear-gradient(135deg, #20c458, #13943d);
    color: #fff;
    font-weight: 950;
    box-shadow: 0 18px 46px rgba(20, 180, 70, .30);
}

.floating-whatsapp::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-right: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(255,255,255,.13);
}

/* Admin home editor */
.home-admin-form {
    display: grid;
    gap: 18px;
}

.home-editor-card {
    overflow: hidden;
}

.home-editor-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 18px;
}

.home-editor-fields,
.home-admin-form .quote-form-grid {
    display: grid;
    gap: 14px;
}

.home-editor-fields label,
.home-admin-form .quote-form-grid label,
.testimonial-admin-grid label,
.home-gallery-admin-grid label {
    display: grid;
    gap: 8px;
}

.home-editor-fields span,
.home-admin-form .quote-form-grid span,
.testimonial-admin-grid span,
.home-gallery-admin-grid span {
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.home-editor-fields input,
.home-editor-fields textarea,
.home-admin-form .quote-form-grid input,
.home-admin-form .quote-form-grid textarea,
.testimonial-admin-grid input,
.testimonial-admin-grid textarea,
.home-gallery-admin-grid input[type="file"] {
    width: 100%;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.045);
    color: #fff;
    border-radius: 14px;
    padding: 13px 14px;
}

.home-image-admin {
    display: grid;
    gap: 12px;
    align-content: start;
}

.home-image-admin img,
.home-gallery-admin-grid img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(240,201,108,.22);
}

.home-gallery-admin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.home-gallery-admin-grid article,
.testimonial-admin-grid article {
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.035);
    border-radius: 18px;
    padding: 14px;
    display: grid;
    gap: 12px;
}

.testimonial-admin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.home-admin-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

@media (max-width: 1100px) {
    .home-hero-inner,
    .about-premium-card,
    .home-editor-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-card {
        max-width: 420px;
    }

    .home-package-grid,
    .featured-drinks-grid,
    .testimonial-grid,
    .home-gallery-admin-grid,
    .testimonial-admin-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-chip-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 780px) {
    .home-topbar nav,
    .nav-quote-btn {
        display: none;
    }

    .home-hero-premium {
        padding: 54px 0;
    }

    .home-hero-inner,
    .home-package-grid,
    .featured-drinks-grid,
    .testimonial-grid,
    .home-gallery-admin-grid,
    .testimonial-admin-grid,
    .differentials-grid {
        grid-template-columns: 1fr;
    }

    .home-trust-row {
        grid-template-columns: 1fr;
    }

    .event-chip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .home-gallery-grid img:first-child {
        grid-row: auto;
    }

    .home-admin-actions,
    .home-hero-actions {
        display: grid;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        min-width: 116px;
        height: 48px;
    }
}

/* Melhorias v25: segurança/UX do orçamento */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.guest-input-card {
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.04);
}
.guest-input-card input {
    font-size: 1.2rem;
    font-weight: 800;
}
.compact-ranges {
    margin-top: 14px;
}
.range-card-info {
    cursor: default;
}
.range-card-info.selected {
    outline: 2px solid rgba(214,174,96,.9);
}
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
    margin: 14px 0 22px;
}
.addon-card {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.04);
}
.addon-card.selected {
    outline: 2px solid rgba(214,174,96,.9);
}
.addon-card small,
.addon-card em {
    display: block;
    opacity: .78;
    font-style: normal;
}
.addon-card b {
    display: block;
    margin-top: 8px;
}
.addon-qty-control {
    align-self: center;
    flex-shrink: 0;
}
