@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
:root {
    --background: #f7f7f7;
    --foreground: #1f242e;
    --card: #ffffff;
    --card-foreground: #1f242e;
    --primary: #063848;
    --primary-foreground: #ffffff;
    --secondary: #1f1f1f;
    --secondary-foreground: #ffffff;
    --muted: #eef0f2;
    --muted-foreground: #5c636f;
    --destructive: #ef4343;
    --destructive-foreground: #ffffff;
    --border: #e1e4e8;
    --radius: 0.75rem;
    --topbar: #063848;
    --topbar-foreground: #ffffff;
    --price-old: #81889b;
    --price-current: #063848;
    --badge-discount: #063848;
    --star: #f6be13;
    --urgency: #df2020;
    --gift: #198653;
    --section-bg: #f7f7f7;
}

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

body {
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    color: var(--foreground);
    background: var(--background);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 64px;
    /* espaço para a barra fixa */
}

.container {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Topbar */

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--topbar);
    color: var(--topbar-foreground);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
}

/* Header */

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px 16px;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 36px;
    z-index: 40;
}

.logo {
    height: 36px;
    width: auto;
}

@media (max-width: 480px) {
    .logo {
        height: 46px;
    }
    .header {
        padding: 14px 16px;
    }
}

.header-menu-btn {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
    padding: 4px;
}

.header-menu-btn svg {
    width: 24px;
    height: 24px;
}

.header-right {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-right a,
.header-right button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
    padding: 0;
    display: flex;
}

.header-right svg {
    width: 22px;
    height: 22px;
}

/* Drawer / menu lateral */

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 88%;
    max-width: 360px;
    background: var(--card);
    z-index: 61;
    transform: translateX(-100%);
    transition: transform .25s;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.drawer.open {
    transform: translateX(0);
}

.drawer-head {
    position: relative;
    padding: 28px 24px 20px;
    background: linear-gradient(to bottom right, var(--topbar), color-mix(in srgb, var(--topbar) 90%, transparent));
    color: #fff;
    text-align: center;
}

.drawer-logo {
    height: 40px;
    width: auto;
    margin: 0 auto 4px;
    display: block;
}

.drawer-head p {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    margin-top: 4px;
}

.drawer-close {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-close svg {
    width: 18px;
    height: 18px;
}

.drawer-close:hover {
    background: rgba(255, 255, 255, .2);
}

.drawer-nav {
    flex: 1;
    overflow-y: auto;
}

.drawer-list {
    list-style: none;
    padding: 12px;
}

.drawer-list-main {
    padding-bottom: 6px;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    color: var(--foreground);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.drawer-link:hover {
    background: color-mix(in srgb, var(--muted) 60%, transparent);
}

.drawer-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--muted);
    color: var(--topbar);
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-icon svg {
    width: 16px;
    height: 16px;
}

.drawer-link-text {
    flex: 1;
}

.drawer-chevron {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: color-mix(in srgb, var(--muted-foreground) 60%, transparent);
}

.drawer-section-title {
    padding: 12px 24px 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--muted-foreground);
}

.drawer-sublink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    color: color-mix(in srgb, var(--foreground) 80%, transparent);
    text-decoration: none;
    font-size: 14px;
}

.drawer-sublink:hover {
    background: color-mix(in srgb, var(--muted) 60%, transparent);
    color: var(--foreground);
}

.drawer-list-last {
    padding-bottom: 16px;
}

/* ============ GALERIA ============ */

.gallery {
    background: var(--card);
}

.gallery-main {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--muted);
    max-width: 560px;
    margin: 0 auto;
}

.gallery-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity .3s;
    z-index: 0;
}

.gallery-img.active {
    opacity: 1;
    z-index: 1;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .85);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
    color: var(--foreground);
}

.gallery-arrow-left {
    left: 8px;
}

.gallery-arrow-right {
    right: 8px;
}

.gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(31, 36, 46, .25);
    cursor: pointer;
}

.dot.active {
    background: var(--topbar);
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    padding: 12px;
    overflow-x: auto;
    max-width: 560px;
    margin: 0 auto;
}

.gallery-thumbs .thumb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border);
    padding: 0;
    cursor: pointer;
    background: var(--card);
}

.gallery-thumbs .thumb.active {
    border-color: var(--topbar);
}

.gallery-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page {
    max-width: 560px;
    margin: 0 auto;
    background: var(--card);
}

.page .section {
    max-width: none;
}

/* ============ INFO DO PRODUTO ============ */

.product-info {
    max-width: 560px;
    margin: 0 auto;
    padding: 20px 16px;
    background: var(--card);
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 12px;
}

.rating .stars {
    display: flex;
    align-items: center;
    gap: 1px;
    color: var(--star);
}

.rating .stars svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.rating-score {
    font-weight: 600;
    color: var(--foreground);
}

.rating-count {
    color: var(--muted-foreground);
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--foreground);
}

.price-box {
    background: var(--muted);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 16px;
}

.price-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.price-old {
    text-decoration: line-through;
    font-size: 14px;
    color: var(--price-old);
}

.price-discount-tag {
    background: var(--badge-discount);
    color: var(--primary-foreground);
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
}

.price-new {
    font-size: 30px;
    font-weight: 800;
    color: var(--price-current);
}

.price-pix {
    font-size: 14px;
    color: var(--foreground);
    font-weight: 500;
    margin-top: 4px;
}

/* Voltagem */

.option-group {
    margin-bottom: 16px;
}

.option-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.option-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--foreground);
}

.option-value {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.voltage-card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid var(--primary);
    background: color-mix(in srgb, var(--primary) 5%, white);
    border-radius: var(--radius);
    padding: 12px 16px;
    cursor: pointer;
    text-align: left;
}

.voltage-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.voltage-radio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
}

.voltage-text {
    flex: 1;
}

.voltage-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.3;
}

.voltage-subtitle {
    display: block;
    font-size: 12px;
    color: var(--muted-foreground);
}

.voltage-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 4px 8px;
    border-radius: 999px;
}

/* Benefícios */

.benefits {
    background: color-mix(in srgb, var(--muted) 50%, white);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 16px;
}

.benefits-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--primary);
    margin-bottom: 10px;
}

.benefits ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--foreground);
}

.check-circle {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary) 15%, white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 1px;
}

/* Brinde */

.gift-box {
    display: flex;
    gap: 12px;
    align-items: center;
    border: 2px dashed color-mix(in srgb, var(--gift) 40%, white);
    background: color-mix(in srgb, var(--gift) 10%, white);
    border-radius: var(--radius);
    padding: 12px;
    margin-bottom: 16px;
}

.gift-img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.gift-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--gift);
    margin-bottom: 2px;
}

.gift-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--foreground);
}

.gift-subtitle {
    font-size: 12px;
    color: var(--muted-foreground);
}

/* CTA */

.cta-button {
    display: block;
    width: 100%;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border: none;
    border-radius: var(--radius);
    padding: 16px;
    cursor: pointer;
    margin-bottom: 16px;
}

.cta-button:hover {
    opacity: .9;
}

.cta-narrow {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.trust-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: 12px;
    color: var(--muted-foreground);
    margin-bottom: 16px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 16px;
    text-align: center;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.trust-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

.payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.payment-methods img {
    height: 22px;
}

/* ============ SECTIONS GENÉRICAS ============ */

.section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    background: var(--section-bg);
    text-align: center;
}

.section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--foreground);
    text-align: center;
}

.section-subtitle {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 20px;
    text-align: center;
}

/* Imagens da descrição (galeria vertical) */

.desc-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 16px;
    background: var(--background);
}

.desc-images article {
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    background: var(--card);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
}

.desc-images img {
    width: 100%;
    display: block;
    background: color-mix(in srgb, var(--muted) 50%, white);
}

/* Ícones de destaque + tecnologia premium */

.highlight-section {
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.highlight-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
    font-size: 12px;
    font-weight: 700;
    color: var(--foreground);
}

.highlight-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    background: color-mix(in srgb, var(--primary) 10%, white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.tech-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
}

.tech-card h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: left;
    color: var(--foreground);
}

.tech-card p {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
    text-align: left;
}

/* Botão de compra isolado */

.standalone-cta {
    padding: 0 16px 24px;
}

.standalone-cta .cta-button {
    margin-bottom: 0;
}

/* Accordion "Detalhes do Produto" — cards com ícone, igual ao original */

.details-block {
    margin-top: 24px;
}

.acc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.acc-item {
    background: var(--card);
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
    padding: 0 16px;
    text-align: left;
    border-bottom: none;
}

.acc-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: var(--foreground);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    list-style: none;
}

.acc-item summary::-webkit-details-marker {
    display: none;
}

.acc-icon {
    color: var(--primary);
    flex-shrink: 0;
    display: flex;
}

.acc-icon svg {
    width: 18px;
    height: 18px;
}

.acc-title {
    flex: 1;
}

.acc-chevron {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--muted-foreground);
    transition: transform .2s;
}

.acc-item[open] .acc-chevron {
    transform: rotate(180deg);
}

.acc-item p {
    padding-bottom: 14px;
    margin-top: -4px;
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.6;
    padding-left: 28px;
}

/* Especificações */

.specs-list {
    background: var(--card);
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
    overflow: hidden;
}

.specs-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
    text-align: left;
}

.specs-row:last-child {
    border-bottom: none;
}

.specs-icon {
    color: var(--primary);
    flex-shrink: 0;
    display: flex;
}

.specs-icon svg {
    width: 15px;
    height: 15px;
}

.specs-label {
    flex: 1;
    font-weight: 400;
    color: var(--muted-foreground);
    font-size: 13px;
}

.specs-value {
    color: var(--foreground);
    font-weight: 700;
    font-size: 13px;
    text-align: right;
}

/* Instalação (lista vertical, igual ao original) */

.install-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    background: color-mix(in srgb, var(--muted) 50%, white);
    border-radius: var(--radius);
    padding: 16px;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background: color-mix(in srgb, var(--primary) 15%, white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.step-text h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--foreground);
    text-align: left;
}

.step-text p {
    font-size: 14px;
    color: var(--muted-foreground);
    text-align: left;
    line-height: 1.5;
}

.install-note {
    background: color-mix(in srgb, var(--primary) 5%, white);
    border: 1px solid color-mix(in srgb, var(--primary) 20%, white);
    border-radius: var(--radius);
    padding: 14px;
    text-align: center;
    font-size: 14px;
    color: var(--foreground);
}

/* Comparativo (compacto, igual ao original) */

.compare-table {
    background: var(--card);
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
    overflow: hidden;
}

.compare-row {
    display: grid;
    grid-template-columns: 1fr 64px 56px;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-bottom: 1px solid color-mix(in srgb, var(--border) 50%, transparent);
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-feature {
    text-align: left;
    font-size: 12px;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.3;
}

.compare-ours,
.compare-others {
    display: flex;
    justify-content: center;
    width: 64px;
}

.compare-others {
    width: 56px;
}

.compare-head {
    background: var(--muted);
    padding: 8px 14px;
}

.compare-head .compare-feature,
.compare-head .compare-ours,
.compare-head .compare-others {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.compare-head .compare-ours {
    color: var(--primary);
}

.compare-head .compare-others {
    color: var(--muted-foreground);
}

.circle-yes,
.circle-no {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.circle-yes {
    background: color-mix(in srgb, var(--primary) 15%, white);
    color: var(--primary);
}

.circle-no {
    background: color-mix(in srgb, var(--destructive) 10%, white);
    color: var(--destructive);
}

.circle-yes svg,
.circle-no svg {
    width: 11px;
    height: 11px;
}

/* Countdown */

.countdown-card {
    background: var(--card);
    border: 1px solid color-mix(in srgb, var(--urgency) 20%, white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
}

.countdown-flag {
    font-weight: 700;
    color: var(--urgency);
    margin-bottom: 8px;
    font-size: 16px;
}

#countdownBig {
    font-weight: 800;
}

.urgency-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 16px;
}

.trust-icons-compact {
    gap: 0;
    margin-bottom: 0;
}

.trust-icons-compact .trust-item svg {
    width: 18px;
    height: 18px;
}

/* Usos (compacto, igual ao original) */

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

.use-item {
    background: var(--card);
    border-radius: 1rem;
    padding: 14px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--foreground);
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
}

.use-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Social proof + marquee + depoimentos (bloco único, igual ao original) */

.social-flag {
    font-size: 14px;
    font-weight: 700;
    color: var(--urgency);
    margin-bottom: 4px;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 8px;
    font-size: 14px;
}

.rating-summary .stars {
    color: var(--star);
    letter-spacing: 1px;
}

.rating-summary .rating-score {
    font-weight: 600;
    color: var(--foreground);
    margin-left: 4px;
}

.rating-summary .rating-count {
    color: var(--muted-foreground);
}

.marquee-wrap {
    overflow: hidden;
    margin: 20px 0;
}

.marquee-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: marquee 22s linear infinite;
}

.marquee-track img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius);
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonial {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
}

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    background: color-mix(in srgb, var(--primary) 10%, white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    font-size: 14px;
    color: var(--foreground);
}

.verified-check {
    color: var(--primary);
    display: flex;
    flex-shrink: 0;
}

.verified-check svg {
    width: 16px;
    height: 16px;
}

.verified-text {
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
}

.testimonial-city {
    font-size: 12px;
    color: var(--muted-foreground);
}

.testimonial-stars {
    color: var(--star);
    margin-bottom: 6px;
    letter-spacing: 1px;
    font-size: 12px;
}

.testimonial p {
    font-size: 14px;
    color: var(--foreground);
    line-height: 1.5;
}

.see-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.see-more-btn {
    background: var(--muted);
    color: var(--foreground);
    border: none;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius);
    cursor: pointer;
}

/* Faixa de confiança final + CTA */

.trust-strip {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.trust-strip-card {
    flex: 1;
    background: var(--card);
    border-radius: var(--radius);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--foreground);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
}

.trust-strip-card svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.strip-star {
    width: 22px;
    height: 22px;
    color: var(--star);
}

/* FAQ (cards com chevron, igual ao original) */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    text-align: left;
}

.faq-item {
    background: var(--card);
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
    padding: 0 16px;
    border-bottom: none;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: var(--foreground);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    flex: 1;
}

.faq-item .acc-chevron {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--muted-foreground);
    transition: transform .2s;
}

.faq-item[open] .acc-chevron {
    transform: rotate(180deg);
}

.faq-item p {
    padding-bottom: 14px;
    margin-top: -4px;
    color: var(--muted-foreground);
    font-size: 13px;
    line-height: 1.6;
}

/* ============ FOOTER ============ */

.footer {
    background: var(--topbar);
    color: rgba(255, 255, 255, .85);
    padding: 40px 0 28px;
    text-align: left;
}

.footer-block {
    margin-bottom: 28px;
}

.footer-block h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #fff;
    margin-bottom: 12px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}

.footer-contact a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
}

.track-button {
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
}

.footer-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.footer-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
}

.footer-block ul a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
}

.footer-block ul a:hover {
    text-decoration: underline;
}

.legal-text {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    text-align: center;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 24px;
}

.footer-payment {
    text-align: center;
    margin-bottom: 24px;
}

.footer-payment-label {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.footer .payment-methods img {
    height: 22px;
    width: auto;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 24px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin: 0 auto 12px;
    display: block;
}

.footer-company {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 4px;
}

.footer-address {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.5;
    margin-bottom: 12px;
}

.footer-copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
}

/* ============ BARRA FIXA INFERIOR ============ */

.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--card);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .08);
}

.sticky-old {
    font-size: 12px;
    color: var(--muted-foreground);
    text-decoration: line-through;
    display: block;
}

.sticky-new {
    font-size: 18px;
    font-weight: 800;
    color: var(--price-current);
}

.sticky-cta {
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}