/* =========================================================
   ColágenoPro™ B2B — Health By AI
   Stylesheet corporativo (preto / dourado / off-white)
   ========================================================= */

:root {
    --black:      #0d0d0f;
    --black-2:    #16161a;
    --black-3:    #1f1f24;
    --gold:       #c9a55c;
    --gold-2:     #b8923f;
    --gold-light: #e6c98a;
    --white:      #ffffff;
    --offwhite:   #f7f5f1;
    --gray-100:   #f1efeb;
    --gray-200:   #e3e0d8;
    --gray-300:   #c9c5bb;
    --gray-500:   #6b6a66;
    --gray-700:   #36363a;
    --text:       #1a1a1d;
    --text-soft:  #4a4a52;
    --text-light: #cfcdc6;

    --radius:     14px;
    --radius-sm:  8px;
    --shadow:     0 12px 40px rgba(0,0,0,.08);
    --shadow-lg:  0 24px 60px rgba(0,0,0,.18);

    --font-sans:    'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; transition: color .2s ease; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================== TOP BAR ===================== */
.topbar {
    background: var(--black);
    color: var(--text-light);
    font-size: 13px;
    border-bottom: 1px solid rgba(201,165,92,.25);
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px;
    gap: 16px;
}
.topbar-text { letter-spacing: .02em; }
.topbar-cta {
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: .03em;
}
.topbar-cta:hover { color: var(--white); }

/* ===================== HEADER ===================== */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
    font-weight: 700;
    font-size: 17px;
    color: var(--black);
    letter-spacing: .01em;
}
.brand-tag {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-top: 3px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-soft);
    position: relative;
}
.nav a:hover { color: var(--black); }
.nav .nav-cta {
    background: var(--black);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--black);
    transition: all .2s ease;
}
.nav .nav-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0d0d0f 0%, #1a1a20 60%, #0d0d0f 100%);
    color: var(--white);
    overflow: hidden;
    padding: 80px 0 100px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 20%, rgba(201,165,92,.18), transparent 45%),
      radial-gradient(circle at 80% 80%, rgba(201,165,92,.10), transparent 50%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
}
.eyebrow {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: var(--gold-light);
    margin-bottom: 24px;
    padding: 8px 16px;
    border: 1px solid rgba(201,165,92,.4);
    border-radius: 999px;
    background: rgba(201,165,92,.07);
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -.01em;
}
.hero h1 .gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-style: italic;
}
.hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 580px;
}
.hero-sub strong { color: var(--white); font-weight: 600; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    max-width: 540px;
}
.stat {
    border-left: 2px solid var(--gold);
    padding: 4px 0 4px 16px;
}
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--gold-light);
    font-weight: 700;
    line-height: 1;
}
.stat-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-light);
    margin-top: 8px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-product {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 540px;
}
.hero-product-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,165,92,.35), transparent 65%);
    filter: blur(40px);
    z-index: 0;
}
.hero-product-img {
    position: relative;
    z-index: 1;
    max-height: 580px;
    width: auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-12px); }
}
.hero-badge {
    position: absolute;
    top: 30px;
    right: 0;
    z-index: 2;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
    color: var(--black);
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: 0 12px 30px rgba(201,165,92,.35);
    transform: rotate(6deg);
}
.hero-badge-top {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 600;
}
.hero-badge-bottom {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-top: 2px;
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .02em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .25s ease;
    line-height: 1;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
    color: var(--black);
    border-color: var(--gold-2);
    box-shadow: 0 10px 24px rgba(201,165,92,.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(201,165,92,.4);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.08);
    border-color: var(--white);
}
.btn-outline {
    background: transparent;
    color: var(--gold-light);
    border-color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}
.btn-large { padding: 18px 36px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-icon { font-size: 12px; }

/* ===================== TRUST BAR ===================== */
.trustbar {
    background: var(--offwhite);
    border-bottom: 1px solid var(--gray-200);
    padding: 22px 0;
}
.trustbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.trust-item {
    font-size: 13px;
    color: var(--text-soft);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.trust-icon {
    color: var(--gold);
    font-size: 10px;
}

/* ===================== SECTIONS ===================== */
.section {
    padding: 100px 0;
}
.section-light { background: var(--white); }
.section-dark {
    background: linear-gradient(180deg, #0d0d0f 0%, #15151a 100%);
    color: var(--white);
}
.section-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 64px;
}
.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: var(--gold-2);
    font-weight: 600;
    margin-bottom: 16px;
}
.section-eyebrow.gold { color: var(--gold-light); }
.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.2;
    font-weight: 700;
    color: inherit;
    margin-bottom: 16px;
    letter-spacing: -.01em;
}
.section-dark .section-head h2 { color: var(--white); }
.section-lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-soft);
}
.section-lead.light { color: var(--text-light); }

/* ===================== CARDS GRID (POR QUE VENDER) ===================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px 30px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-3) 100%);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 22px;
}
.card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
    letter-spacing: -.005em;
}
.card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-soft);
}
.card p strong { color: var(--black); font-weight: 600; }

/* ===================== PRODUTO ===================== */
.produto-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.produto-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}
.produto-image-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,165,92,.28), transparent 65%);
    filter: blur(50px);
}
.produto-image img {
    position: relative;
    max-height: 620px;
    width: auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.55));
}
.produto-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.2;
    font-weight: 700;
    color: var(--white);
    margin: 8px 0 20px;
}
.produto-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--gold-light);
    margin: 36px 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,165,92,.25);
}
.ingredient-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
}
.ingredient-list li {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255,255,255,.08);
}
.ing-name {
    font-weight: 600;
    color: var(--white);
    font-size: 15px;
}
.ing-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 2px;
}

.produto-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.feature {
    text-align: center;
    padding: 18px 12px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius-sm);
}
.feature-title {
    display: block;
    font-family: var(--font-display);
    color: var(--gold-light);
    font-size: 18px;
    font-weight: 700;
}
.feature-desc {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* ===================== MERCADO ===================== */
.market-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 28px;
}
.market-card {
    background: linear-gradient(180deg, var(--offwhite) 0%, #ecebe5 100%);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all .3s ease;
}
.market-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.market-num {
    display: block;
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--black);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--gold-2) 0%, var(--black) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.market-label {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-soft);
}
.market-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 16px;
}

/* ===================== PRICING ===================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.pricing-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: all .3s ease;
}
.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,165,92,.3);
}
.pricing-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--text-light);
    margin-bottom: 18px;
}
.pricing-value {
    display: block;
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.pricing-cents { font-size: 28px; color: var(--text-light); font-weight: 600; }
.pricing-unit {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.pricing-highlight {
    background: linear-gradient(160deg, rgba(201,165,92,.18) 0%, rgba(201,165,92,.04) 100%);
    border: 1px solid rgba(201,165,92,.5);
    box-shadow: 0 18px 40px rgba(201,165,92,.12);
    transform: scale(1.04);
}
.pricing-highlight .pricing-value {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pricing-highlight .pricing-label { color: var(--gold-light); }

/* ===================== PRICING TABLE (ESCALONADO) ===================== */
.pricing-table-container {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 40px;
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.pricing-table thead {
    background: linear-gradient(90deg, rgba(201,165,92,.15) 0%, rgba(201,165,92,.05) 100%);
    border-bottom: 2px solid rgba(201,165,92,.3);
}
.pricing-table th {
    padding: 18px 16px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    color: var(--gold-light);
}
.pricing-table th.highlight-col {
    text-align: center;
    color: var(--gold);
}
.pricing-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .2s ease;
}
.pricing-table tbody tr:hover {
    background: rgba(201,165,92,.08);
}
.pricing-table tbody tr.best-deal {
    background: linear-gradient(90deg, rgba(201,165,92,.18) 0%, rgba(201,165,92,.08) 100%);
    border-bottom: 1px solid rgba(201,165,92,.4);
    border-top: 1px solid rgba(201,165,92,.4);
}
.pricing-table td {
    padding: 16px;
    color: var(--white);
}
.pricing-table td.qty {
    font-weight: 500;
    color: var(--text-light);
}
.pricing-table td.boxes {
    font-weight: 600;
    color: var(--gold-light);
    text-align: center;
    font-size: 14px;
}
.pricing-table td.price {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-light);
}
.pricing-table td.psv {
    color: var(--white);
    font-weight: 500;
}
.pricing-table td.margin {
    font-weight: 600;
    color: var(--gold-light);
}
.pricing-table td.margin-pct {
    text-align: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
}
.pricing-table tbody tr.best-deal td.margin-pct {
    font-size: 20px;
    color: var(--gold-light);
}

/* ===================== PRICING INSIGHTS ===================== */
.pricing-insights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.insight-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(201,165,92,.2);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
    transition: all .3s ease;
}
.insight-card:hover {
    background: rgba(201,165,92,.12);
    border-color: rgba(201,165,92,.4);
    transform: translateY(-2px);
}
.insight-icon {
    display: block;
    font-size: 32px;
    margin-bottom: 12px;
}
.insight-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.insight-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-light);
}

.conditions-table {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    overflow: hidden;
}
.cond-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 28px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.cond-row:last-child { border-bottom: none; }
.cond-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-light);
    font-weight: 500;
}
.cond-value {
    font-size: 15px;
    color: var(--white);
    font-weight: 500;
}
.cond-disclaimer {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    margin-top: 16px;
    font-style: italic;
}

/* ===================== RESPONSIVE PRICING ===================== */
@media (max-width: 1024px) {
    .pricing-table-container {
        overflow-x: auto;
    }
    .pricing-table {
        min-width: 100%;
    }
    .pricing-insights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pricing-table {
        font-size: 13px;
    }
    .pricing-table th,
    .pricing-table td {
        padding: 12px 8px;
    }
    .pricing-table th {
        font-size: 10px;
    }
    .pricing-table td.price {
        font-size: 16px;
    }
    .pricing-table td.margin-pct {
        font-size: 14px;
    }
    .pricing-insights {
        grid-template-columns: 1fr;
    }
}

/* ===================== DEPOIMENTOS / PROVA SOCIAL ===================== */
.section-light {
    background: var(--offwhite);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.testimonial-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    background: var(--gray-200);
    transition: all .3s ease;
    box-shadow: var(--shadow);
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.testimonial-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}
.testimonial-card:hover .testimonial-overlay {
    opacity: 1;
}
.play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.play-btn:hover {
    background: var(--gold-light);
    transform: scale(1.1);
}
.play-btn:active {
    transform: scale(0.95);
}

/* ===================== MODAL ===================== */
.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
.modal.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.85);
}
.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: var(--black);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,.6);
}
#modalVideo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    z-index: 10000;
}
.modal-close:hover {
    background: rgba(255,255,255,.25);
    border-color: rgba(255,255,255,.5);
}
.modal-close:active {
    transform: scale(0.9);
}

/* ===================== SUPORTE PDV ===================== */
.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.support-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all .3s ease;
    position: relative;
}
.support-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.support-num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 14px;
    line-height: 1;
}
.support-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}
.support-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-soft);
}

/* ===================== CTA ===================== */
.cta-section {
    background: linear-gradient(135deg, #0d0d0f 0%, #1a1a20 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 10% 50%, rgba(201,165,92,.16), transparent 50%),
      radial-gradient(circle at 90% 50%, rgba(201,165,92,.10), transparent 50%);
    pointer-events: none;
}
.cta-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
}
.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.6vw, 44px);
    line-height: 1.15;
    font-weight: 700;
    margin: 8px 0 20px;
    color: var(--white);
}
.cta-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 540px;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.cta-placeholder {
    font-size: 13px;
    color: var(--gray-500);
    font-style: italic;
    border-left: 2px solid var(--gold);
    padding-left: 14px;
    max-width: 540px;
}

.cta-card {
    background: var(--white);
    color: var(--text);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}
.cta-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
}
.cta-form { display: flex; flex-direction: column; gap: 16px; }
.cta-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cta-form span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: .05em;
}
.cta-form input,
.cta-form select {
    padding: 12px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    background: var(--offwhite);
    transition: all .2s ease;
}
.cta-form input:focus,
.cta-form select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,165,92,.15);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.cta-form button { margin-top: 8px; }

/* ===================== FOOTER ===================== */
.footer {
    background: var(--black);
    color: var(--text-light);
    padding: 60px 0 0;
    border-top: 3px solid var(--gold);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--gold-light);
    margin-bottom: 18px;
    font-weight: 600;
}
.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}
.footer-col a { color: var(--gold-light); }
.footer-col a:hover { color: var(--white); }
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-logo { width: 48px; height: 48px; object-fit: contain; }
.footer-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.footer-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 280px;
}
.footer-small {
    font-size: 12px;
    line-height: 1.6;
    color: var(--gray-500);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px 0;
    font-size: 12px;
    color: var(--gray-500);
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 1024px) {
    .nav { display: none; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-stats, .hero-sub, .hero-actions { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-product { min-height: 440px; }
    .hero-product-img { max-height: 460px; }
    .produto-grid { grid-template-columns: 1fr; gap: 50px; }
    .produto-image { min-height: 460px; }
    .produto-image img { max-height: 480px; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .market-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-highlight { transform: none; }
    .pricing-insights { grid-template-columns: repeat(2, 1fr); }
    .support-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-inner { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 640px) {
    .topbar { font-size: 12px; }
    .topbar-inner { flex-direction: column; gap: 6px; padding: 10px 16px; text-align: center; }
    .container { padding: 0 18px; }
    .header-inner { padding: 14px 18px; }
    .brand-tag { display: none; }
    .section { padding: 70px 0; }
    .section-head { margin-bottom: 44px; }
    .hero { padding: 60px 0 70px; }
    .hero h1 { font-size: 32px; }
    .hero-sub { font-size: 16px; }
    .hero-stats { grid-template-columns: 1fr; gap: 14px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; }
    .cards-grid { grid-template-columns: 1fr; }
    .market-grid { grid-template-columns: 1fr; }
    .ingredient-list { grid-template-columns: 1fr; }
    .produto-features { grid-template-columns: 1fr; }
    .support-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-insights { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    .cond-row { flex-direction: column; align-items: flex-start; gap: 6px; padding: 16px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .cta-card { padding: 28px; }
    .pricing-value { font-size: 46px; }
    .hero-badge { right: 10px; padding: 10px 16px; }
    .hero-badge-bottom { font-size: 16px; }
    .modal-content { width: 95%; max-width: 100%; }
    .modal-close { width: 40px; height: 40px; font-size: 24px; top: 10px; right: 10px; }
}


/* ===================== CUSTOM NEGOTIATION ===================== */
.custom-negotiation {
    background: linear-gradient(135deg, rgba(201,165,92,.12) 0%, rgba(201,165,92,.06) 100%);
    border: 1px solid rgba(201,165,92,.3);
    border-radius: var(--radius);
    padding: 40px;
    margin-top: 40px;
    text-align: center;
}

.negotiation-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.negotiation-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.negotiation-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.negotiation-buttons .btn {
    min-width: 220px;
}

@media (max-width: 768px) {
    .custom-negotiation {
        padding: 28px;
    }
    
    .negotiation-content h3 {
        font-size: 22px;
    }
    
    .negotiation-content p {
        font-size: 14px;
    }
    
    .negotiation-buttons {
        flex-direction: column;
    }
    
    .negotiation-buttons .btn {
        width: 100%;
    }
}


/* ===================== WHATSAPP FLOATING BUTTON ===================== */
.wa-float-wrapper {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
}

.wa-float-bubble {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Tooltip balão */
.wa-float-tooltip {
    background: #fff;
    border-radius: 14px 14px 4px 14px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
    max-width: 240px;
    animation: waTooltipIn .4s ease both;
    transform-origin: bottom right;
}

.wa-float-tooltip strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
    line-height: 1.3;
}

.wa-float-tooltip span {
    display: block;
    font-size: 12px;
    color: #555;
    line-height: 1.4;
}

/* Botão verde */
.wa-float-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    padding: 14px 22px 14px 16px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    transition: background .2s, transform .2s, box-shadow .2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.wa-float-btn:hover {
    background: #1ebe5c;
    transform: scale(1.05);
    box-shadow: 0 10px 32px rgba(37,211,102,.6);
}

.wa-float-label {
    letter-spacing: .3px;
}

/* Ping pulsante */
.wa-float-ping {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background: #ff3b30;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: waPing 1.6s ease-in-out infinite;
    pointer-events: none;
}

/* Animações */
@keyframes waTooltipIn {
    from { opacity: 0; transform: scale(.85) translateY(8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes waPing {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.35); opacity: .6; }
}

/* Ocultar tooltip no mobile para não poluir */
@media (max-width: 600px) {
    .wa-float-wrapper {
        bottom: 20px;
        right: 16px;
    }

    .wa-float-tooltip {
        display: none;
    }

    .wa-float-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }

    .wa-float-label {
        display: none;
    }

    .wa-float-ping {
        bottom: 2px;
        right: 2px;
    }
}


/* =====================================================================
   MOBILE — menu, hero compacto e tabelas em cartão   (2026-08-19)
   ===================================================================== */

/* impede que o painel do menu (fora da tela) crie rolagem horizontal;
   'clip' não cria contexto de rolagem, então o header sticky continua funcionando */
html { overflow-x: hidden; overflow-x: clip; }

/* ---------- Botão de menu (hambúrguer) ---------- */
.nav-toggle-input {
    position: absolute;
    width: 1px; height: 1px;
    opacity: 0;
    pointer-events: none;
}
.nav-toggle { display: none; }
.nav-scrim  { display: none; }

@media (max-width: 1024px) {
    /* backdrop-filter cria bloco de contenção e prenderia o painel fixo dentro do header */
    .header { backdrop-filter: none; -webkit-backdrop-filter: none; }
    .header-inner { gap: 14px; }

    .nav-toggle {
        position: relative;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 46px; height: 46px;
        padding: 12px;
        border: 1px solid var(--gray-200);
        border-radius: 12px;
        background: var(--white);
        cursor: pointer;
        flex: 0 0 auto;
        -webkit-tap-highlight-color: transparent;
    }
    .nav-toggle span {
        display: block;
        width: 100%; height: 2px;
        background: var(--black);
        border-radius: 2px;
        transition: transform .25s ease, opacity .18s ease;
    }
    .nav-toggle-input:checked ~ .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle-input:checked ~ .nav-toggle span:nth-child(2) { opacity: 0; }
    .nav-toggle-input:checked ~ .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-toggle-input:focus-visible ~ .nav-toggle { outline: 2px solid var(--gold); outline-offset: 3px; }

    /* painel lateral */
    .nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(86vw, 340px);
        z-index: 9998;
        background: var(--white);
        padding: 86px 24px 40px;
        box-shadow: -18px 0 50px rgba(0,0,0,.24);
        transform: translateX(101%);
        transition: transform .3s cubic-bezier(.4,0,.2,1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    .nav-toggle-input:checked ~ .nav { transform: translateX(0); }
    .nav a {
        display: block;
        padding: 16px 2px;
        font-size: 16.5px;
        font-weight: 600;
        color: var(--black);
        border-bottom: 1px solid var(--gray-200);
    }
    .nav .nav-cta {
        margin-top: 24px;
        padding: 16px 20px;
        text-align: center;
        border-bottom: none;
        font-size: 16px;
    }

    .nav-scrim {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 9997;
        background: rgba(12,9,7,.55);
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s ease, visibility .3s ease;
        cursor: pointer;
    }
    .nav-toggle-input:checked ~ .nav-scrim { opacity: 1; visibility: visible; }

    body:has(.nav-toggle-input:checked) { overflow: hidden; }
    body:has(.nav-toggle-input:checked) .wa-float-wrapper { opacity: 0; pointer-events: none; }

    /* estouro horizontal dos brilhos decorativos */
    .produto-image { overflow: hidden; }
    .hero-product  { min-height: 0; }
}

/* ---------- Hero mais enxuto no celular ---------- */
@media (max-width: 640px) {
    .hero { padding: 52px 0 60px; }
    .hero h1 { font-size: 30px; line-height: 1.18; }

    .hero-stats {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-width: 340px;
        margin-bottom: 32px;
        text-align: left;
    }
    .stat {
        display: flex;
        align-items: baseline;
        gap: 12px;
        padding: 2px 0 2px 14px;
    }
    .stat-num   { font-size: 25px; flex: 0 0 auto; min-width: 88px; }
    .stat-label { margin-top: 0; font-size: 11px; letter-spacing: .06em; line-height: 1.35; }

    .hero-product-img { max-height: 330px; }
    .hero-badge { display: none; }
}

/* ---------- Tabela de preços vira cartões ---------- */
@media (max-width: 640px) {
    .pricing-table-container {
        background: transparent;
        border: none;
        overflow: visible;
        margin-bottom: 32px;
    }
    .pricing-table { display: block; width: 100%; font-size: 14px; }
    .pricing-table thead { display: none; }
    .pricing-table tbody { display: block; }

    .pricing-table tbody tr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px 16px;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(201,165,92,.22);
        border-radius: 16px;
        padding: 18px 20px 16px;
        margin-bottom: 12px;
    }
    .pricing-table tbody tr.best-deal {
        border-color: rgba(201,165,92,.55);
        background: linear-gradient(135deg, rgba(201,165,92,.20) 0%, rgba(201,165,92,.07) 100%);
    }
    .pricing-table td {
        display: flex;
        flex-direction: column;
        gap: 3px;
        padding: 0;
        text-align: left;
        border: none;
    }
    .pricing-table td::before {
        content: attr(data-l);
        font-size: 9.5px;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--text-light);
        opacity: .65;
    }
    .pricing-table td.qty {
        grid-column: 1 / -1;
        font-size: 18px;
        font-weight: 700;
        color: var(--white);
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(201,165,92,.22);
    }
    .pricing-table td.qty::before { display: none; }
    .pricing-table td.boxes  { text-align: left; font-size: 15px; }
    .pricing-table td.price  { font-size: 21px; }
    .pricing-table td.margin-pct {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: baseline;
        justify-content: space-between;
        gap: 10px;
        text-align: left;
        padding-top: 12px;
        border-top: 1px solid rgba(201,165,92,.22);
        font-size: 20px;
    }
    .pricing-table td.margin-pct::before { align-self: center; }
    .pricing-table tbody tr.best-deal td.margin-pct { font-size: 22px; }
}
