/* ========================================
   AUREX – Tapetes Automotivos Premium
   Clone CSS – Dark Luxury Theme
======================================== */

:root {
    --bg-primary: #0d0d10;
    --bg-secondary: #111318;
    --bg-card: #111318;
    --border-color: rgba(255,255,255,0.06);
    --border-light: rgba(255,255,255,0.08);
    --gold: #b89b66;
    --gold-accent: #c9a96e;
    --gold-light: #d4af7a;
    --white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: rgba(255,255,255,0.55);
    --text-muted: rgba(255,255,255,0.30);
    --text-faint: rgba(255,255,255,0.20);
    --green: #4ade80;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   HEADER
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(13, 13, 16, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.logo {
    text-decoration: none;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo img {
    height: 32px;
    width: auto;
    display: block;
}

.header-spacer { width: 30px; }

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ========================================
   MOBILE MENU
======================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 2000;
    transition: left 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active { left: 0; }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.mobile-menu-header .logo { flex: none; justify-content: flex-start; }
.mobile-menu-header .logo img { height: 26px; }

.menu-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu-links { list-style: none; }

.mobile-menu-links li a {
    display: block;
    padding: 14px 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.2s;
}

.mobile-menu-links li a:hover { color: var(--gold); }

.menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active { opacity: 1; visibility: visible; }

/* ========================================
   HERO
======================================== */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 24px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.38) 60%, rgba(13,13,16,0.6) 100%);
    z-index: 1;
}

.hero-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 112px;
    background: linear-gradient(to top, #0d0d10, transparent);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 480px;
    animation: fadeInUp 1.3s ease-out;
}

.hero-subtitle {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(201,169,110,0.9);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 10vw, 4rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 360px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 36px;
}

.stars { display: flex; gap: 1px; }

.star { color: var(--gold-accent); font-size: 16px; }

.stars-small { display: flex; gap: 1px; }
.stars-small .star { font-size: 14px; }

.rating-text {
    font-size: 12px;
    color: rgba(255,255,255,0.60);
}

.rating-text strong { color: rgba(255,255,255,0.85); }

.btn-outline {
    display: inline-block;
    padding: 16px 40px;
    border: 1px solid var(--gold);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    text-align: center;
    background: linear-gradient(135deg, rgba(184,155,102,0.15), rgba(184,155,102,0.05));
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

/* ========================================
   BENEFÍCIOS
======================================== */
.beneficios {
    border-bottom: 1px solid var(--border-color);
    background: rgba(17,19,24,0.6);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.beneficio-item { text-align: center; }

.beneficio-icon { margin-bottom: 12px; }

.beneficio-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

.beneficio-text {
    font-size: 11px;
    color: rgba(255,255,255,0.50);
    line-height: 1.5;
}

/* ========================================
   CONFIGURADOR
======================================== */
.configurador {
    padding: 40px 16px;
    background: var(--bg-primary);
}

.section-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.section-description {
    font-size: 13px;
    color: rgba(255,255,255,0.40);
    margin-bottom: 24px;
    line-height: 1.6;
}

.config-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
}

.config-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.70);
    margin-bottom: 16px;
}

.config-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(184,155,102,0.1);
    border: 1px solid rgba(184,155,102,0.2);
}

.config-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.config-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.select-wrapper { position: relative; }
.select-wrapper.full-width { width: 100%; }

.select-wrapper select {
    width: 100%;
    padding: 12px 14px;
    background: #0c0e13;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 12px;
    font-family: var(--font-body);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}

.select-wrapper select:focus { border-color: rgba(184,155,102,0.3); }

.select-wrapper select:disabled { opacity: 0.4; cursor: not-allowed; }

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(255,255,255,0.3);
    pointer-events: none;
}

.btn-search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: rgba(255,255,255,0.35);
    font-size: 11px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-search:hover {
    border-color: rgba(184,155,102,0.3);
    color: rgba(255,255,255,0.6);
}

/* Config loading & available */
.config-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.config-loading span {
    font-size: 11px;
    color: rgba(255,255,255,0.50);
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.config-available {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(184,155,102,0.04);
    border: 1px solid rgba(184,155,102,0.2);
    border-radius: 6px;
}

.available-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(184,155,102,0.15);
    flex-shrink: 0;
}

.available-model {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.3;
}

.available-sub {
    font-size: 10px;
    color: rgba(255,255,255,0.40);
}

.price-card {
    background: rgba(17,19,24,0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-top: 24px;
}

.price-label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 6px;
}

.price-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.80);
    margin-bottom: 8px;
}

.price-note {
    font-size: 12px;
    color: rgba(255,255,255,0.30);
    margin-bottom: 12px;
}

.price-tags {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.tag {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: rgba(255,255,255,0.20);
}

/* ========================================
   KIT SELECTION
======================================== */
.kit-header {
    margin-top: 32px;
    margin-bottom: 20px;
}

.kit-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.kit-card {
    display: block;
    width: 100%;
    text-align: left;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
    font-family: var(--font-body);
    color: var(--text-primary);
}

.kit-card:hover { border-color: rgba(255,255,255,0.12); }

.kit-card.selected {
    border-color: var(--gold);
    background: rgba(184,155,102,0.04);
    box-shadow: 0 0 40px rgba(184,155,102,0.12);
}

.kit-card-inner {
    display: flex;
}

.kit-image {
    position: relative;
    width: 115px;
    flex-shrink: 0;
    overflow: hidden;
}

.kit-image img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
    transition: transform 0.5s;
}

.kit-card:hover .kit-image img { transform: scale(1.05); }

.kit-image-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--bg-card));
}

.kit-card.selected .kit-image-fade {
    background: linear-gradient(to right, transparent 60%, rgba(17,19,24,0.95));
}

.kit-radio {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    transition: all 0.2s;
}

.kit-radio.checked {
    border-color: var(--gold);
    background: var(--gold);
}

.kit-radio.checked::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 3px;
    width: 8px;
    height: 5px;
    border-left: 2px solid var(--bg-primary);
    border-bottom: 2px solid var(--bg-primary);
    transform: rotate(-45deg);
}

.kit-info {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}

.kit-name-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.kit-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}

.kit-card.selected .kit-name { color: var(--gold); }

.kit-bestseller {
    flex-shrink: 0;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--bg-primary);
    padding: 3px 8px;
    border-radius: 2px;
}

.kit-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.kit-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}

.kit-features li svg { flex-shrink: 0; }

.kit-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.kit-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.kit-original {
    font-size: 10px;
    color: rgba(255,255,255,0.25);
    text-decoration: line-through;
}

.kit-discount {
    font-size: 10px;
    font-weight: 600;
    color: rgba(184,155,102,0.8);
}

/* ========================================
   TOTAL CARD
======================================== */
.total-card {
    margin-top: 24px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
}

.total-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.total-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.30);
}

.total-off {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--gold);
    background: rgba(184,155,102,0.1);
    border: 1px solid rgba(184,155,102,0.15);
    padding: 2px 8px;
    border-radius: 2px;
}

.total-prices {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.total-value {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.total-original {
    font-size: 14px;
    color: rgba(255,255,255,0.20);
    text-decoration: line-through;
}

.total-frete {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(74,222,128,0.8);
    background: rgba(74,222,128,0.06);
    border: 1px solid rgba(74,222,128,0.15);
    padding: 3px 8px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.btn-comprar {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(to right, var(--gold), var(--gold-accent), var(--gold-light));
    border: none;
    border-radius: 2px;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-comprar:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-comprar:active { transform: scale(0.98); }

.total-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
}

.total-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: rgba(255,255,255,0.25);
}

/* ========================================
   STICKY BUY STATE
======================================== */
.sticky-buy-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 448px;
    margin: 0 auto;
}

.sticky-price-col {
    display: flex;
    flex-direction: column;
    min-width: 30%;
}

.sticky-price-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.40);
    font-weight: 500;
    margin-bottom: 2px;
}

.sticky-price-val {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.btn-comprar-sticky {
    flex: 1;
    padding: 14px;
    background: linear-gradient(to right, var(--gold), var(--gold-accent), var(--gold-light));
    border: none;
    border-radius: 2px;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 0 20px rgba(184,155,102,0.3);
    animation: glow-pulse 2.4s ease-in-out infinite;
}

.btn-comprar-sticky:active { transform: scale(0.98); }

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 12px rgba(184,155,102,0.15); }
    50% { box-shadow: 0 0 28px rgba(184,155,102,0.50); }
}

/* ========================================
   ANTES / DEPOIS
======================================== */
.antes-depois {
    padding: 32px 16px 40px;
    text-align: center;
}

.section-title-center {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 8px;
}

.section-subtitle-center {
    font-size: 12px;
    color: rgba(255,255,255,0.50);
    text-align: center;
    margin-bottom: 24px;
}

.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    cursor: ew-resize;
    background: var(--bg-card);
}

.comparison-image {
    position: absolute;
    inset: 0;
}

.comparison-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-before {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}

.comparison-after { z-index: 0; }

.comparison-label {
    position: absolute;
    bottom: 12px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 5;
}

.label-antes { left: 12px; background: rgba(180, 100, 30, 0.8); color: white; }
.label-depois { right: 12px; background: rgba(30, 140, 80, 0.8); color: white; }

.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
}

.handle-line { flex: 1; width: 2px; background: white; opacity: 0.8; }

.handle-circle {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

/* ========================================
   TABELA COMPARATIVA
======================================== */
.tabela-comparativa {
    padding: 40px 16px;
}

.comparison-table {
    max-width: 500px;
    margin: 24px auto 0;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: rgba(17,19,24,0.8);
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 80px 80px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
}

.table-header span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.table-col-feature { color: rgba(255,255,255,0.40); }
.table-col-aurex { text-align: center; color: var(--gold-accent); font-weight: 600; }
.table-col-comum { text-align: center; color: rgba(255,255,255,0.35); }

.table-row {
    display: grid;
    grid-template-columns: 1fr 80px 80px;
    padding: 12px 20px;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.table-row.alt { background: rgba(255,255,255,0.02); }
.table-row.last { border-bottom: none; }

.table-row .table-col-feature { font-size: 14px; color: rgba(255,255,255,0.60); }
.table-row .table-col-aurex,
.table-row .table-col-comum { display: flex; justify-content: center; }

/* ========================================
   SATISFAÇÃO + CARROSSEL
======================================== */
.satisfacao {
    padding: 32px 0;
    background: rgba(255,255,255,0.02);
}

.satisfacao .section-title-center,
.satisfacao .section-subtitle-center {
    padding: 0 16px;
}

.client-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 32px;
}

.carousel-fade-left,
.carousel-fade-right {
    position: absolute;
    inset-block: 0;
    width: 64px;
    z-index: 10;
    pointer-events: none;
}

.carousel-fade-left {
    left: 0;
    background: linear-gradient(to right, rgba(13,13,16,0.6), transparent);
}

.carousel-fade-right {
    right: 0;
    background: linear-gradient(to left, rgba(13,13,16,0.6), transparent);
}

.carousel-track {
    display: flex;
    gap: 8px;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    flex-shrink: 0;
    height: 140px;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-item img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

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

/* ========================================
   DEPOIMENTOS
======================================== */
.depoimentos {
    padding: 40px 16px;
}

.depoimentos-header {
    text-align: center;
    margin-bottom: 24px;
}

.depoimentos-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(184,155,102,0.2);
    background: rgba(184,155,102,0.05);
    border-radius: 999px;
    padding: 8px 20px;
    margin-bottom: 16px;
}

.rating-inline {
    font-size: 14px;
    color: rgba(255,255,255,0.80);
}

.rating-inline strong { color: var(--white); }

.depoimento-card {
    background: rgba(17,19,24,0.8);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}

.depoimento-image {
    position: relative;
    width: 100%;
    height: 176px;
    overflow: hidden;
    cursor: zoom-in;
}

.depoimento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s;
}

.depoimento-image:hover img { transform: scale(1.05); }

.depoimento-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, transparent 40%, #111318 100%);
    pointer-events: none;
}

.depoimento-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    z-index: 5;
}

.badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.badge-foto {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.1);
}

.badge-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.badge-produto {
    background: rgba(184,134,11,0.9);
    backdrop-filter: blur(4px);
    color: white;
}

.zoom-icon {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.depoimento-content {
    padding: 16px;
}

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

.star-score {
    font-size: 10px;
    font-weight: 700;
    color: #b8860b;
    margin-left: 4px;
}

.depoimento-text {
    font-size: 14px;
    color: rgba(255,255,255,0.80);
    line-height: 1.6;
    margin-bottom: 12px;
}

.divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin-bottom: 12px;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: #333;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.author-name-line {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
}

.verified {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #b8860b;
    background: rgba(184,134,11,0.1);
    border: 1px solid rgba(184,134,11,0.2);
    border-radius: 3px;
    padding: 2px 6px;
}

.author-details {
    font-size: 11px;
    color: rgba(255,255,255,0.40);
}

/* ========================================
   ESTATÍSTICAS
======================================== */
.estatisticas {
    padding: 32px 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-color);
    border-radius: 4px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 28px 16px;
    background: var(--bg-primary);
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 0.04em;
}

.stat-label {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.40);
    line-height: 1.4;
}

/* ========================================
   DETALHES
======================================== */
.detalhes {
    padding: 40px 16px;
}

.section-title-left {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 32px;
}

.detalhe-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.detalhe-image {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: rgba(17,19,24,0.8);
}

.detalhe-image img {
    width: 100%;
    max-height: 240px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.detalhe-content h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.detalhe-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.50);
    line-height: 1.6;
}

/* ========================================
   FAQ / ACCORDION
======================================== */
.faq {
    padding: 0 16px 96px;
}

.faq-accordion {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: rgba(17,19,24,0.8);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
    display: block;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    transition: background 0.2s;
}

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

.faq-question::after {
    content: '+';
    float: right;
    font-size: 18px;
    color: rgba(255,255,255,0.3);
    transition: transform 0.2s;
}

details[open] .faq-question::after {
    content: '−';
}

.faq-question:hover { background: rgba(255,255,255,0.02); }

.faq-answer {
    padding: 0 20px 20px;
}

.faq-answer p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin-bottom: 8px;
}

.faq-answer p:last-child { margin-bottom: 0; }

.specs-table {
    display: flex;
    flex-direction: column;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 14px;
}

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

.spec-row span:first-child { color: rgba(255,255,255,0.50); }
.spec-row span:last-child { color: var(--text-primary); }

/* ========================================
   STICKY CTA
======================================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: rgba(13,13,16,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -10px 40px -5px rgba(0,0,0,0.8);
}

.btn-cta {
    display: block;
    width: 100%;
    max-width: 448px;
    margin: 0 auto;
    padding: 14px;
    background: rgba(184,155,102,0.05);
    border: 1px solid rgba(184,155,102,0.4);
    border-radius: 2px;
    color: rgba(184,155,102,0.9);
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-family: var(--font-body);
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}

.btn-cta:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.cta-spacer { height: 72px; }

/* ========================================
   LIGHTBOX
======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(4px);
    padding: 16px;
}

.lightbox.active { display: flex; }

.lightbox-content {
    position: relative;
    max-width: 640px;
    width: 100%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 16px;
}

.lightbox-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px; height: 32px;
    background: #1e2733;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s;
}

.lightbox-close:hover {
    background: #2a3441;
    color: white;
}

.lightbox-hint {
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.30);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 12px;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

.beneficio-item,
.depoimento-card,
.detalhe-card,
.stat-item {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.beneficio-item.visible,
.depoimento-card.visible,
.detalhe-card.visible,
.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   DESKTOP / TABLET
======================================== */
@media (min-width: 768px) {
    .header { padding: 20px 40px; }
    .logo { font-size: 22px; }
    .hero { padding: 0 60px; min-height: 90vh; }
    .hero-title { font-size: 4.5rem; }
    .beneficios-grid { grid-template-columns: repeat(4, 1fr); max-width: 800px; }
    .configurador { padding: 60px 40px; max-width: 600px; margin: 0 auto; }
    .antes-depois { padding: 60px 40px; }
    .comparison-slider { max-width: 600px; }
    .tabela-comparativa { padding: 60px 40px; }
    .comparison-table { max-width: 600px; }
    .satisfacao, .depoimentos, .estatisticas, .detalhes { padding-left: 40px; padding-right: 40px; }
    .depoimentos { max-width: 640px; margin: 0 auto; }
    .detalhes { max-width: 640px; margin: 0 auto; }
    .faq { padding-left: 40px; padding-right: 40px; }
    .faq-accordion { max-width: 640px; margin: 0 auto; }
    .stat-number { font-size: 36px; }
}

@media (min-width: 1024px) {
    .hero { padding: 0 100px; align-items: center; }
    .hero-title { font-size: 5.5rem; }
    .section-title { font-size: 28px; }
}

