/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0C0C0C;
    --bg-dark-alpha: rgba(12, 12, 12, 0.84);
    --bg-body: #F0F0F0;
    --red: #8B0101;
    --red-btn: #D71B1B;
    --red-btn-hover: #e52222;
    --light: #F1F1F1;
    --light-50: rgba(241, 241, 241, 0.5);
    --light-80: rgba(241, 241, 241, 0.8);
    --dark-text: #0C0C0C;
    --dark-text-80: rgba(12, 12, 12, 0.8);
    --whatsapp: #25D366;
    --whatsapp-hover: #20bd5a;
    --font-heading: 'Archivo SemiExpanded', sans-serif;
    --font-body: 'Archivo', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background: var(--bg-body);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-red { color: var(--red); }

/* ===== SECTION HEADERS ===== */
.section-tag {
    display: inline-block;
    color: var(--red);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    line-height: 52px;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.section-header p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.2px;
    color: var(--dark-text-80);
}

/* Light variant for dark backgrounds */
.section-header.light h2 { color: var(--light); }
.section-header.light p { color: var(--light-50); }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-dark-alpha);
    transition: background 0.3s, box-shadow 0.3s;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-desktop {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-desktop a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--light);
    transition: color 0.3s;
}

.nav-desktop a:hover, .nav-desktop a:focus-visible { color: var(--red); }
.nav-desktop a:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; border-radius: 4px; }

.btn-header {
    background: var(--red-btn);
    color: var(--light);
    padding: 16px 32px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    transition: background 0.3s;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.btn-header:hover { background: var(--red-btn-hover); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--light);
    border-radius: 2px;
    transition: 0.3s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 20px 24px;
    background: var(--bg-dark);
    gap: 16px;
}

.nav-mobile a {
    font-size: 14px;
    font-weight: 600;
    color: var(--light);
    padding: 8px 0;
}

.nav-mobile.active { display: flex; }

/* ===== HERO ===== */
.hero {
    position: relative;
    background: var(--bg-dark);
    padding: 130px 0 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://autoshoprastreamento.com.br/wp-content/uploads/2025/12/BG_Hero.svg') center/cover no-repeat;
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-content { flex: 1; }

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: var(--light);
}

.text-red-hero {
    color: var(--red);
}

.text-red-hero em {
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--light);
    margin-bottom: 32px;
    letter-spacing: -0.2px;
}

.hero-subtitle strong {
    font-weight: 700;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--light);
    padding-left: 12px;
    border-left: 3px solid var(--red-btn);
}

.hf-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red-btn);
    color: var(--light);
    padding: 16px 32px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--red-btn-hover);
    transform: translateY(-1px);
}

.btn-primary-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red-btn);
    color: var(--light);
    padding: 16px 32px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary-dark:hover { background: var(--red-btn-hover); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border: 1px solid var(--light);
    color: var(--light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--light);
    color: var(--bg-dark);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border: 1px solid var(--dark-text);
    color: var(--dark-text);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    background: var(--dark-text);
    color: var(--light);
}

.hero-image {
    flex: 0 0 520px;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
    background: #fff;
    padding: 100px 0;
    color: var(--dark-text);
}

.dif-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}

.dif-image {
    flex: 0 0 380px;
    position: relative;
}

.dif-image img {
    border-radius: 16px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.dif-image::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 12px;
    width: calc(100% - 24px);
    height: 60%;
    background: var(--red-btn);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.15;
}

.dif-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dif-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(12,12,12,0.06);
    transition: transform 0.3s;
}

.dif-item:first-child { padding-top: 0; }
.dif-item:last-child { border-bottom: none; padding-bottom: 0; }

.dif-item:hover {
    transform: translateX(6px);
}

.dif-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--red-btn);
    line-height: 1;
    flex-shrink: 0;
    width: 44px;
    opacity: 0.7;
}

.dif-content h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.dif-content p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--dark-text-80);
    line-height: 1.5;
}

.diferenciais-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

/* ===== STATS ===== */
.stats-section {
    position: relative;
    background: var(--bg-dark);
    padding: 100px 0;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://autoshoprastreamento.com.br/wp-content/uploads/2025/12/BG_BS.svg') center/cover no-repeat;
    pointer-events: none;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-header {
    text-align: center;
    margin-bottom: 50px;
}

.stats-header h2 {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: var(--light-80);
}

.stats-header p {
    color: var(--light-50);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.stat-card {
    background: rgba(241, 241, 241, 0.05);
    padding: 32px 16px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(241, 241, 241, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(215, 27, 27, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-btn);
    margin-bottom: 4px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--light);
}

.stat-label {
    font-size: 13px;
    color: var(--light-80);
    display: block;
}

/* ===== MARQUEE ===== */
.marquee-section {
    background: var(--red-btn);
    padding: 10px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    align-items: center;
}

.marquee-content span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    color: var(--light);
}

.marquee-sep {
    font-weight: 800 !important;
    font-size: 14px !important;
}

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

/* ===== COMO FUNCIONA ===== */
.como-funciona {
    background: var(--bg-body);
    padding: 100px 0;
    color: var(--dark-text);
}

.cf-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.cf-text { flex: 1; }

.cf-text h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    line-height: 52px;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.cf-desc {
    font-family: var(--font-body);
    color: var(--dark-text-80);
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.2px;
}

.cf-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cf-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.cf-step img {
    flex-shrink: 0;
    margin-top: 2px;
}

.cf-step h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark-text);
}

.cf-step p {
    font-size: 14px;
    color: var(--dark-text-80);
    line-height: 22px;
}

.cf-image {
    flex: 0 0 340px;
}

.cf-image img {
    width: 100%;
    border-radius: 16px;
}

/* ===== PLANOS ===== */
.planos {
    background: var(--bg-body);
    padding: 100px 0;
}

.planos .section-header h2 {
    color: var(--dark-text);
}

.planos .section-header p {
    color: var(--dark-text-80);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 50px;
}

.plano-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid rgba(12, 12, 12, 0.08);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    color: var(--dark-text);
}

.plano-card:hover { transform: translateY(-4px); }

.plano-card.destaque {
    border: 2px solid var(--red-btn);
    position: relative;
    background: #fff;
    transform: scale(1.04);
    box-shadow: 0 12px 40px rgba(215, 27, 27, 0.12);
    z-index: 2;
}
.plano-card.destaque:hover { transform: scale(1.06); }

.plano-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red-btn);
    color: var(--light);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

.plano-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    margin-top: 8px;
    color: var(--dark-text);
    min-height: 50px;
}

.plano-tipo {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
    min-height: 18px;
}

.plano-preco {
    margin-bottom: 20px;
    min-height: 70px;
}

.preco-label {
    display: block;
    font-size: 16px;
    color: var(--dark-text-80);
    margin-bottom: 4px;
}

.preco-valor {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-text);
    display: block;
}

.preco-obs {
    font-size: 12px;
    color: var(--dark-text-80);
    display: block;
    margin-top: 4px;
}

.btn-plano {
    display: block;
    text-align: center;
    background: var(--red-btn);
    color: var(--light);
    padding: 14px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    transition: background 0.3s;
}

.btn-plano:hover { background: var(--red-btn-hover); }

.plano-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.plano-features li {
    font-size: 13px;
    color: var(--dark-text-80);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.plano-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
}

.planos-cta {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(12, 12, 12, 0.08);
}

.planos-cta p {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-text);
}

.planos-cta span {
    color: var(--dark-text-80);
    font-size: 16px;
}

/* ===== APPS ===== */
.apps-section {
    position: relative;
    background: var(--bg-dark);
    padding: 100px 0;
    overflow: hidden;
}

.apps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://autoshoprastreamento.com.br/wp-content/uploads/2025/12/BG_BS.svg') center/cover no-repeat;
    pointer-events: none;
}

.apps-section .container {
    position: relative;
    z-index: 1;
}

.apps-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.apps-text { flex: 1; }

.apps-text h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    line-height: 52px;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--light);
}

.apps-text > p {
    color: var(--light);
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.2px;
}

.apps-desc {
    color: var(--light) !important;
    margin-bottom: 32px !important;
    font-size: 14px;
    line-height: 22px;
}

.apps-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 32px;
}
.app-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(241,241,241,0.06);
    border: 1px solid rgba(241,241,241,0.08);
    border-radius: 10px;
    padding: 12px 14px;
    transition: background 0.3s, transform 0.2s;
}
.app-feat:hover { background: rgba(241,241,241,0.1); transform: translateY(-2px); }
.app-feat svg { flex-shrink: 0; }
.app-feat span { font-size: 13px; color: var(--light-80); font-weight: 500; line-height: 1.4; }

.apps-image { flex: 0 0 450px; }
.apps-image img { width: 100%; }

/* ===== RECUPERAÇÕES ===== */
.recuperacoes {
    background: var(--bg-body);
    padding: 100px 0;
}

.recuperacoes .section-header h2 {
    color: var(--dark-text);
}

.recuperacoes .section-header p {
    color: var(--dark-text-80);
}

.recup-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.recup-stat { text-align: center; }

.recup-value {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.recup-stat span {
    font-size: 14px;
    color: var(--dark-text-80);
}

.recup-video { text-align: center; }

.recup-video > p {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
}

.recup-image {
    width: 100%;
    max-width: 774px;
    margin: 0 auto;
    border-radius: 16px;
}

.recup-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 774px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.recup-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
    background: var(--bg-body);
    padding: 100px 0;
}

.depoimentos .section-header h2 {
    color: var(--dark-text);
}

.depoimentos .section-header p {
    color: var(--dark-text-80);
}

.depoimentos-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    scrollbar-width: none;
}
.depoimentos-grid::-webkit-scrollbar { display: none; }

.depoimentos-grid img {
    min-width: 280px;
    max-width: 320px;
    border-radius: 12px;
    scroll-snap-align: start;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    flex-shrink: 0;
}

.depoimentos-grid img:hover { transform: scale(1.05); }

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    padding: 0;
    position: relative;
    color: var(--light);
    border-bottom: 4px solid var(--red-btn);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 30% 0%, rgba(139,1,1,0.08), transparent 60%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

/* Footer CTA */
.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 60px 0;
}
.footer-cta-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--light);
    margin-bottom: 8px;
}
.footer-cta-text p {
    color: var(--light-80);
    font-size: 16px;
}
.footer-cta-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.btn-footer-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--whatsapp);
    color: #fff;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: background 0.3s, transform 0.2s;
}
.btn-footer-whatsapp:hover { background: var(--whatsapp-hover); transform: translateY(-2px); }
.btn-footer-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(241,241,241,0.08);
    border: 1px solid rgba(241,241,241,0.12);
    color: var(--light);
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.3s, transform 0.2s;
}
.btn-footer-phone:hover { background: rgba(241,241,241,0.14); transform: translateY(-2px); }

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding: 56px 0;
}
.footer-logo { height: 56px; width: auto; margin-bottom: 16px; }
.footer-desc {
    font-size: 14px;
    color: var(--light-80);
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(241,241,241,0.06);
    border: 1px solid rgba(241,241,241,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-80);
    transition: background 0.3s, color 0.3s, transform 0.2s;
}
.footer-social a:hover { background: var(--red-btn); color: #fff; transform: translateY(-2px); }

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--light);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--light-80);
    padding: 6px 0;
    transition: color 0.2s, padding-left 0.2s;
}
.footer-col a:hover { color: var(--red-btn); padding-left: 4px; }

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    color: var(--light-80);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--red-btn); }
.footer-contact-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.footer-contact-item span {
    font-size: 14px;
    line-height: 1.5;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(241, 241, 241, 0.08);
    margin: 0;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--light-50);
}
.footer-bottom a {
    color: var(--light-50);
    transition: color 0.3s;
}
.footer-bottom a:hover { color: var(--red-btn); }

@media (max-width: 960px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-cta { flex-direction: column; text-align: center; }
    .footer-cta-buttons { justify-content: center; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-col { text-align: center; }
    .footer-col a, .footer-col h4 { text-align: center; }
    .footer-social { justify-content: center; }
    .footer-contact-item { justify-content: center; }
    .footer-cta-buttons { flex-direction: column; width: 100%; }
    .btn-footer-whatsapp, .btn-footer-phone { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s;
}

.whatsapp-float:hover { transform: scale(1.1); }

/* ===== POPUP TRABALHE CONOSCO ===== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 12, 12, 0.6);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

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

.popup-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    max-width: 480px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.popup-overlay.active .popup-box {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s;
}

.popup-close:hover {
    background: rgba(12, 12, 12, 0.06);
}

.popup-box h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.popup-box .popup-subtitle {
    font-size: 14px;
    color: var(--dark-text-80);
    margin-bottom: 24px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
    font-family: var(--font-body);
    font-size: 14px;
    padding: 12px 16px;
    border: 1px solid rgba(12, 12, 12, 0.15);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
    color: var(--dark-text);
    background: #fff;
}

.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
    border-color: var(--red-btn);
}

.popup-form textarea {
    resize: vertical;
    min-height: 80px;
}

.popup-form .btn-popup-submit {
    background: var(--red-btn);
    color: var(--light);
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.popup-form .btn-popup-submit:hover {
    background: var(--red-btn-hover);
}

/* Form validation */
.form-group { position: relative; }
.popup-form .form-group input,
.popup-form .form-group select,
.popup-form .form-group textarea {
    font-family: var(--font-body);
    font-size: 14px;
    padding: 12px 16px;
    border: 1px solid rgba(12, 12, 12, 0.15);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: var(--dark-text);
    background: #fff;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}
.popup-form .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230C0C0C' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
.popup-form .form-group input:focus,
.popup-form .form-group select:focus,
.popup-form .form-group textarea:focus {
    border-color: var(--red-btn);
    box-shadow: 0 0 0 3px rgba(215, 27, 27, 0.1);
}
.popup-form .form-group textarea { resize: vertical; min-height: 80px; }
.form-error {
    display: none;
    font-size: 12px;
    color: var(--red-btn);
    margin-top: 4px;
    font-weight: 500;
}
.form-group.error input, .form-group.error select {
    border-color: var(--red-btn);
    box-shadow: 0 0 0 3px rgba(215, 27, 27, 0.1);
}
.form-group.error .form-error { display: block; }

body.menu-open { overflow: hidden; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
    }
    .hero-image { flex: none; max-width: 500px; }
    .hero-content h1 { font-size: 34px; }
    .dif-layout { gap: 40px; }
    .dif-image { flex: 0 0 300px; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-header h2 { font-size: 48px; }
    .cf-content { flex-direction: column; }
    .cf-image { flex: none; max-width: 340px; }
    .apps-content { flex-direction: column; }
    .apps-image { flex: none; max-width: 400px; }
    .apps-features { grid-template-columns: 1fr; }
    .planos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .header-container .btn-header { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 110px 0 60px; }
    .hero-content h1 { font-size: 30px; line-height: 38px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline { width: 100%; justify-content: center; }
    .section-header h2 { font-size: 30px; line-height: 40px; }
    .dif-layout { flex-direction: column; gap: 32px; }
    .dif-image { flex: none; max-width: 100%; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-header h2 { font-size: 36px; }
    .planos-grid { grid-template-columns: 1fr; }
    .plano-card.destaque { transform: none; }
    .plano-card.destaque:hover { transform: none; box-shadow: 0 8px 24px rgba(215,27,27,0.12); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .diferenciais-buttons { flex-direction: column; align-items: center; }
    .cf-text h2 { font-size: 30px; line-height: 40px; }
    .cf-step h4 { font-size: 18px; }
    .apps-text h2 { font-size: 30px; line-height: 40px; }
    .recup-stats { flex-direction: column; align-items: center; gap: 30px; }
    .diferenciais, .como-funciona, .planos, .apps-section, .recuperacoes, .depoimentos, .stats-section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 26px; line-height: 34px; }
    .depoimentos-grid img { min-width: 240px; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* ===== FADE ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HEADER LIGHT VARIANT ===== */
.header-light { background: rgba(240,240,240,0.84) !important; backdrop-filter: blur(20px); }
.header-light .nav-desktop a { color: var(--dark-text); }
.header-light .nav-desktop a:hover { color: var(--red); }
.header-light .hamburger span { background: var(--dark-text); }

/* ===== HISTÓRIA PAGE ===== */
.hist-hero { background: #F1F1F1; padding: 160px 0 104px; border-bottom: 1px solid rgba(12,12,12,0.1); }
.hist-hero-inner { display: flex; align-items: center; gap: 40px; }
.hist-hero-text { flex: 1; }
.hist-hero-text h1 { font-family: var(--font-heading); font-size: 40px; font-weight: 400; line-height: 1.3; letter-spacing: -0.5px; color: var(--dark-text); margin-bottom: 16px; }
.hist-hero-text > p { font-size: 16px; color: var(--dark-text-80); line-height: 24px; margin-bottom: 32px; }
.hist-hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hist-hero-img { flex: 0 0 500px; }
.hist-hero-img img { width: 100%; border-radius: 12px; }

.sobre-section { background: var(--bg-body); padding: 104px 0; }
.sobre-inner { display: flex; align-items: center; gap: 60px; }
.sobre-img { flex: 0 0 500px; }
.sobre-img img { width: 100%; border-radius: 12px; }
.sobre-text { flex: 1; }
.sobre-text .section-tag { font-size: 11px; font-weight: 700; }
.sobre-text h2 { font-family: var(--font-heading); font-size: 40px; font-weight: 400; line-height: 52px; letter-spacing: -0.5px; color: var(--dark-text); margin-bottom: 16px; }
.sobre-text p { font-size: 16px; color: var(--dark-text-80); line-height: 24px; }

.hist-stats { position: relative; padding: 80px 0; background: radial-gradient(at top center, #1F1F1F 0%, #0C0C0C 60%); }
.hist-stats .container { position: relative; z-index: 1; }

.principios { background: var(--bg-body); padding: 104px 0; }
.principios-inner { display: flex; gap: 80px; align-items: flex-end; flex-wrap: wrap; }
.principios-text { flex: 1; min-width: 300px; }
.principios-text .section-tag { font-size: 11px; font-weight: 700; }
.principios-text h2 { font-family: var(--font-heading); font-size: 40px; font-weight: 400; line-height: 52px; letter-spacing: -0.5px; color: var(--dark-text); margin-bottom: 16px; }
.principios-text > p { font-size: 16px; color: var(--dark-text-80); line-height: 24px; margin-bottom: 32px; }
.principios-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; flex: 1; min-width: 300px; }
.principio-card { text-align: center; padding: 32px 16px; }
.principio-card img { width: 48px; height: 48px; margin: 0 auto 16px; }
.principio-card h4 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--dark-text); }

.hist-depo { background: var(--bg-body); padding: 100px 0; }

/* Sobre nums */
.sobre-nums {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}
.sobre-num {
    display: flex;
    flex-direction: column;
}
.sobre-num strong {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--red);
}
.sobre-num span {
    font-size: 13px;
    color: var(--dark-text-80);
    margin-top: 2px;
}

/* Timeline */
.hist-timeline {
    background: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.hist-timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(139,1,1,0.1), transparent 60%);
    pointer-events: none;
}
.hist-timeline .container { position: relative; z-index: 1; }
.hist-timeline .section-header h2 { color: var(--light); }
.hist-timeline .section-header p { color: var(--light-80); }
.timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(241,241,241,0.04);
    border: 1px solid rgba(241,241,241,0.08);
    border-radius: 16px;
    padding: 28px 24px;
    transition: background 0.3s, transform 0.3s;
}
.timeline-item:hover { background: rgba(241,241,241,0.08); transform: translateY(-3px); }
.timeline-year {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--red-btn);
    flex-shrink: 0;
    line-height: 1;
    min-width: 60px;
}
.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 6px;
}
.timeline-content p {
    font-size: 14px;
    color: var(--light-80);
    line-height: 1.6;
}

/* Principios Grid novo */
.principios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.principio-card-new {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid rgba(12,12,12,0.06);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.principio-card-new:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.principio-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: rgba(139,1,1,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.principio-card-new h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
}
.principio-card-new p {
    font-size: 13px;
    color: var(--dark-text-80);
    line-height: 1.6;
}

/* CTA Historia */
.hist-cta {
    background: var(--bg-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.hist-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 70% 50%, rgba(215,27,27,0.15), transparent 60%);
    pointer-events: none;
}
.hist-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.hist-cta-inner h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--light);
    margin-bottom: 12px;
}
.hist-cta-inner p {
    font-size: 16px;
    color: var(--light-80);
    line-height: 1.6;
    margin-bottom: 32px;
}
.hist-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline-light {
    border: 1px solid rgba(241,241,241,0.3);
    color: var(--light);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.3s, border-color 0.3s;
}
.btn-outline-light:hover { background: rgba(241,241,241,0.08); border-color: rgba(241,241,241,0.5); }

@media (max-width: 768px) {
    .timeline { grid-template-columns: 1fr; }
    .principios-grid { grid-template-columns: 1fr 1fr; }
    .sobre-nums { flex-direction: column; gap: 16px; }
    .hist-cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
    .principios-grid { grid-template-columns: 1fr; }
}

/* ===== PLANOS PAGE ===== */
.planos-page-hero { background: var(--light); padding: 140px 0 80px; text-align: center; }
.planos-page-hero h1 { font-family: var(--font-heading); font-size: 48px; font-weight: 400; line-height: 1.12; letter-spacing: -0.5px; color: var(--dark-text); margin-bottom: 16px; }
.planos-page-hero p { font-family: var(--font-body); font-size: 16px; color: var(--dark-text-80); line-height: 24px; max-width: 600px; margin: 0 auto; }

.planos-page-section { background: var(--light); padding: 0 0 100px; }
.planos-page-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 50px; }

.plano-card-light { background: #fff; border-radius: 16px; padding: 32px 20px; border: 1px solid rgba(12, 12, 12, 0.08); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.plano-card-light:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.plano-card-light.destaque { border: 2px solid var(--red-btn); position: relative; background: rgba(215, 27, 27, 0.04); }
.plano-card-light .plano-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--red-btn); color: var(--light); padding: 6px 20px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: 1px; white-space: nowrap; }
.plano-card-light h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 600; margin-bottom: 6px; margin-top: 8px; color: var(--dark-text); }
.plano-card-light .plano-tipo { font-family: var(--font-body); font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 1px; margin-bottom: 16px; display: block; }
.plano-card-light .plano-preco { margin-bottom: 20px; }
.plano-card-light .preco-label { display: block; font-size: 13px; color: var(--dark-text-80); margin-bottom: 4px; }
.plano-card-light .preco-valor { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--dark-text); display: block; }
.plano-card-light .preco-obs { font-size: 12px; color: var(--dark-text-80); display: block; margin-top: 4px; }
.plano-card-light .preco-cotacao { font-family: var(--font-heading); font-size: 18px; font-weight: 600; color: var(--red); font-style: italic; display: block; }
.plano-card-light .btn-plano { display: block; text-align: center; background: var(--red-btn); color: var(--light); padding: 14px; border-radius: 8px; font-family: var(--font-body); font-size: 14px; font-weight: 700; margin-bottom: 24px; transition: background 0.3s; }
.plano-card-light .btn-plano:hover { background: var(--red-btn-hover); }
.plano-card-light .plano-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plano-card-light .plano-features li { font-size: 13px; color: var(--dark-text-80); padding-left: 18px; position: relative; line-height: 1.5; }
.plano-card-light .plano-features li::before { content: ''; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; background: var(--red); border-radius: 50%; }

.planos-cta-light { text-align: center; padding: 40px; background: #fff; border-radius: 16px; border: 1px solid rgba(12, 12, 12, 0.08); }
.planos-cta-light p { font-family: var(--font-heading); font-size: 24px; font-weight: 600; margin-bottom: 8px; color: var(--dark-text); }
.planos-cta-light span { color: var(--dark-text-80); font-size: 16px; }

/* ===== APP PAGE ===== */
.app-hero { position: relative; background: var(--bg-dark); padding: 160px 0 80px; overflow: hidden; }
.app-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('https://autoshoprastreamento.com.br/wp-content/uploads/2025/12/BG_Hero.svg') center/cover no-repeat; pointer-events: none; }
.app-hero .container { position: relative; z-index: 1; }
.app-hero-inner { display: flex; align-items: center; gap: 60px; }
.app-hero-text { flex: 1; }
.app-hero-text h1 { font-family: var(--font-heading); font-size: 40px; font-weight: 400; line-height: 1.3; letter-spacing: -0.5px; color: var(--light); margin-bottom: 16px; }
.app-hero-text > p { font-size: 16px; color: var(--light); line-height: 24px; }
.app-hero-img { flex: 0 0 450px; }
.app-hero-img img { width: 100%; }

.app-download { background: var(--bg-body); padding: 100px 0; }
.app-download .section-header h2 { color: var(--dark-text); }
.app-download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 800px; margin: 0 auto; }
.app-card { background: #fff; border-radius: 16px; padding: 40px 32px; text-align: center; border: 1px solid rgba(12,12,12,0.08); }
.app-card h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: var(--dark-text); margin-bottom: 20px; }
.app-card-buttons { display: flex; flex-direction: column; gap: 12px; }
.app-card-buttons a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 24px; border-radius: 8px; font-size: 14px; font-weight: 700; background: var(--red-btn); color: var(--light); transition: background 0.3s; }
.app-card-buttons a:hover { background: var(--red-btn-hover); }

.app-features { background: var(--bg-body); padding: 0 0 100px; }
.app-features .section-header h2 { color: var(--dark-text); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-tile { background: #fff; border-radius: 16px; padding: 32px 20px; text-align: center; border: 1px solid rgba(12,12,12,0.08); }
.feature-tile img { width: 48px; height: 48px; margin: 0 auto 16px; }
.feature-tile h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--dark-text); }

.app-cta { background: var(--bg-body); padding: 0 0 80px; }
.app-cta-inner { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.app-videos { background: var(--bg-body); padding: 0 0 100px; }
.app-videos .section-header h2 { color: var(--dark-text); }
.app-videos .section-header p { color: var(--dark-text-80); }
.videos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.video-tile { text-align: center; }
.video-tile .video-wrap { position: relative; padding-bottom: 177%; border-radius: 12px; overflow: hidden; background: #000; margin-bottom: 12px; }
.video-tile iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-tile h5 { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--dark-text-80); line-height: 1.4; }

/* ===== RECUPERAÇÕES PAGE ===== */
.recup-page { background: var(--bg-body); padding: 140px 0 100px; }
.recup-page .section-tag { display: flex; align-items: center; justify-content: center; gap: 8px; }
.recup-page .section-tag::before { content: ''; width: 10px; height: 10px; background: var(--red); border-radius: 2px; display: inline-block; }
.recup-page .section-header { margin-bottom: 40px; }
.recup-page .section-header h1 { font-family: var(--font-heading); font-size: 40px; font-weight: 400; line-height: 52px; letter-spacing: -0.5px; color: var(--dark-text); margin-bottom: 16px; }
.recup-page .section-header h1 .text-red { color: var(--red); }
.recup-page .section-header p { font-size: 16px; color: var(--dark-text-80); line-height: 24px; }
.recup-page-stats { display: flex; justify-content: center; gap: 80px; margin-bottom: 60px; flex-wrap: wrap; }
.recup-page-stat { text-align: center; }
.recup-page-stat .val { font-family: var(--font-heading); font-size: 40px; font-weight: 700; color: var(--dark-text); margin-bottom: 4px; }
.recup-page-stat .label { font-size: 14px; font-weight: 700; color: var(--dark-text); }
.recup-videos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.recup-video-card { border-radius: 12px; overflow: hidden; background: #000; }
.recup-video-card .video-wrap { position: relative; padding-bottom: 56.25%; }
.recup-video-card iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ===== DEPOIMENTOS PAGE ===== */
.depo-page { background: #F1F1F1; padding: 160px 0 104px; background-image: url('https://autoshoprastreamento.com.br/wp-content/uploads/2025/12/BG_Hero_Black.svg'); background-position: top center; background-size: cover; background-repeat: no-repeat; }
.depo-page .section-tag { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 2px; }
.depo-page .section-tag::before { content: ''; width: 10px; height: 10px; background: var(--red); border-radius: 2px; display: inline-block; }
.depo-page .section-header { margin-bottom: 40px; }
.depo-page .section-header h1 { font-family: var(--font-heading); font-size: 40px; font-weight: 400; line-height: 1.3; letter-spacing: -0.5px; color: var(--dark-text); margin-bottom: 16px; }
.depo-page .section-header p { color: var(--dark-text-80); }
.depo-grid-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.depo-grid-full img { width: 100%; border-radius: 12px; transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s; cursor: pointer; }
.depo-grid-full img:hover { transform: scale(1.05); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }

/* ===== POLÍTICA PAGE ===== */
.policy-page { background: var(--bg-body); padding: 140px 0 80px; }
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h1 { font-family: var(--font-heading); font-size: 40px; font-weight: 400; line-height: 1.3; letter-spacing: -0.5px; color: var(--dark-text); margin-bottom: 8px; }
.policy-date { font-size: 14px; color: var(--dark-text-80); margin-bottom: 40px; }
.policy-content h2 { font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: var(--dark-text); margin: 40px 0 16px; line-height: 1.4; }
.policy-content h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--dark-text); margin: 24px 0 8px; }
.policy-content p { font-size: 16px; color: var(--dark-text-80); line-height: 1.7; margin-bottom: 16px; }
.policy-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.policy-content ul li { font-size: 16px; color: var(--dark-text-80); line-height: 1.7; margin-bottom: 8px; }
.policy-content strong { color: var(--dark-text); font-weight: 700; }

/* ===== PAGE-SPECIFIC RESPONSIVE ===== */
@media (max-width: 1200px) {
    .planos-page-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .hist-hero-inner, .sobre-inner { flex-direction: column; }
    .hist-hero-img, .sobre-img { flex: none; max-width: 500px; }
    .principios-inner { flex-direction: column; }
    .app-hero-inner { flex-direction: column; }
    .app-hero-img { flex: none; max-width: 400px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .videos-grid { grid-template-columns: repeat(2, 1fr); }
    .depo-grid-full { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

@media (max-width: 768px) {
    .hist-hero { padding: 130px 0 56px; }
    .hist-hero-text h1 { font-size: 32px; }
    .hist-hero-buttons { flex-direction: column; }
    .sobre-text h2, .principios-text h2 { font-size: 30px; line-height: 40px; }
    .principios-cards { grid-template-columns: 1fr; }
    .planos-page-grid { grid-template-columns: 1fr; }
    .planos-page-hero h1 { font-size: 30px; }
    .app-hero { padding: 130px 0 60px; }
    .app-hero-text h1 { font-size: 30px; }
    .app-download-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: 1fr; }
    .recup-page h1 { font-size: 30px !important; line-height: 40px !important; }
    .recup-page-stats { flex-direction: column; align-items: center; gap: 30px; }
    .recup-page-stat .val { font-size: 32px; }
    .recup-videos { grid-template-columns: 1fr; }
    .depo-page { padding: 130px 0 56px; }
    .depo-page .section-header h1 { font-size: 32px; }
    .depo-grid-full { grid-template-columns: 1fr; }
    .policy-content h1 { font-size: 30px; }
    .policy-content h2 { font-size: 20px; }
}

/* ===== FLUID TYPOGRAPHY ===== */
.hero-content h1 { font-size: clamp(26px, 4vw, 40px); }
.section-header h2 { font-size: clamp(28px, 4vw, 40px); }
.stats-header h2 { font-size: clamp(36px, 6vw, 64px); }
.cf-text h2 { font-size: clamp(28px, 4vw, 40px); }
.apps-text h2 { font-size: clamp(28px, 4vw, 40px); }

/* ===== GLASSMORPHISM HEADER ===== */
.header { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.header.scrolled { background: rgba(12,12,12,0.95) !important; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 1px 20px rgba(0,0,0,0.3); }
.header-light.scrolled { background: rgba(240,240,240,0.95) !important; box-shadow: 0 1px 20px rgba(0,0,0,0.06); }

/* ===== MICRO-INTERACTIONS ===== */
.btn-primary, .btn-primary-dark, .btn-header, .btn-plano, .btn-popup-submit, .app-card-buttons a {
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover, .btn-primary-dark:hover, .btn-header:hover, .btn-plano:hover, .btn-popup-submit:hover, .app-card-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 27, 27, 0.3);
}
.btn-primary:active, .btn-primary-dark:active, .btn-header:active, .btn-plano:active {
    transform: translateY(0);
    box-shadow: none;
}
.btn-primary:focus-visible, .btn-primary-dark:focus-visible, .btn-header:focus-visible, .btn-plano:focus-visible, .btn-outline:focus-visible, .btn-outline-dark:focus-visible, .btn-popup-submit:focus-visible, .btn-footer-whatsapp:focus-visible, .btn-footer-phone:focus-visible {
    outline: 2px solid var(--red-btn);
    outline-offset: 3px;
}

/* dif-item hover transition defined in main block */

.plano-card, .plano-card-light { transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s; }
.plano-card:hover, .plano-card-light:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }

.feature-tile { transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.feature-tile:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); border-color: var(--red-btn); }

.stat-card { transition: transform 0.3s, background 0.3s; }
.stat-card:hover { transform: scale(1.04); background: rgba(241, 241, 241, 0.1); }

.cf-step { transition: transform 0.3s, box-shadow 0.3s; }
.cf-step:hover { transform: translateX(8px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

.principio-card { transition: transform 0.3s; border-radius: 16px; }
.principio-card:hover { transform: translateY(-4px); background: rgba(12,12,12,0.03); }

/* Diferenciais grid already defined - no bento override needed */

/* ===== GSAP ANIMATION STATES ===== */
.gsap-reveal { opacity: 0; transform: translateY(40px); }
.gsap-reveal-left { opacity: 0; transform: translateX(-40px); }
.gsap-reveal-right { opacity: 0; transform: translateX(40px); }
.gsap-reveal-scale { opacity: 0; transform: scale(0.9); }
.gsap-stagger { opacity: 0; transform: translateY(30px); }

/* ===== SIMULADOR DE PRECO ===== */
.simulador-section {
    background: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.simulador-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(139,1,1,0.15), transparent 70%);
    pointer-events: none;
}
.simulador-section .container { position: relative; z-index: 1; }
.simulador-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.simulador-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    line-height: 1.3;
    color: var(--light);
    margin-bottom: 16px;
}
.simulador-text p { color: var(--light-80); font-size: 16px; line-height: 24px; }
.simulador-form {
    background: rgba(241,241,241,0.06);
    border: 1px solid rgba(241,241,241,0.1);
    border-radius: 20px;
    padding: 40px 32px;
    backdrop-filter: blur(10px);
}
.simulador-form h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 24px;
}
.sim-field { margin-bottom: 20px; }
.sim-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--light-80);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.sim-field select, .sim-field input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(241,241,241,0.15);
    border-radius: 10px;
    background: rgba(241,241,241,0.05);
    color: var(--light);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
}
.sim-field select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23F1F1F1' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.sim-field select:focus, .sim-field input:focus { border-color: var(--red-btn); }
.sim-field option { background: #1a1a1a; color: var(--light); }
.sim-result {
    margin-top: 24px;
    padding: 24px;
    background: rgba(215,27,27,0.1);
    border: 1px solid rgba(215,27,27,0.2);
    border-radius: 12px;
    text-align: center;
    display: none;
}
.sim-result.active { display: block; }
.sim-result .sim-price-label { font-size: 13px; color: var(--light-80); margin-bottom: 4px; }
.sim-result .sim-price {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--light);
}
.sim-result .sim-price-obs { font-size: 12px; color: var(--light-50); margin-top: 8px; }
.btn-simular {
    width: 100%;
    padding: 16px;
    background: var(--red-btn);
    color: var(--light);
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-simular:hover { background: var(--red-btn-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(215,27,27,0.3); }
.btn-simular:active { transform: translateY(0); }
.btn-simular.shake, .shake { animation: shake 0.4s ease; }

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    50% { transform: translateX(6px); }
    75% { transform: translateX(-4px); }
}
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .simulador-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== FAQ WIDGET ===== */
.faq-section { background: var(--bg-body); padding: 100px 0; }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(12,12,12,0.08);
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
}
.faq-question h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-text);
    flex: 1;
}
.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(12,12,12,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); background: var(--red-btn); }
.faq-item.active .faq-toggle svg line { stroke: #fff; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s;
    padding: 0 24px;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 15px; color: var(--dark-text-80); line-height: 1.7; }

/* ===== ALTERNANCIA DARK/LIGHT ===== */
.como-funciona { background: #fff; }
.apps-section { background: var(--bg-dark); }
.simulador-section { background: var(--bg-dark); }
.faq-section { background: #fff; }
.depoimentos { background: var(--bg-body); }

/* ===== CTA FIXO TOPO ===== */
.cta-bar {
    position: fixed;
    bottom: -60px;
    left: 0;
    right: 0;
    background: var(--red-btn);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    z-index: 999;
    font-size: 14px;
    font-weight: 600;
    transition: bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cta-bar.visible { bottom: 0; }
.cta-bar a {
    background: #fff;
    color: var(--red-btn);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.2s;
}
.cta-bar a:hover { background: var(--bg-body); transform: scale(1.03); }

/* ===== BOTTOM NAV MOBILE ===== */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(241,241,241,0.08);
    z-index: 1000;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
}
.bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
}
.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--light-80);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 4px 8px;
    transition: color 0.2s;
}
.bottom-nav-item svg { width: 22px; height: 22px; }
.bottom-nav-item:hover, .bottom-nav-item:active { color: var(--red-btn); }
.bottom-nav-item.bn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
    border-radius: 10px;
    padding: 8px 16px;
}
.bottom-nav-item.bn-whatsapp:hover { color: #fff; background: var(--whatsapp-hover); }

@media (max-width: 768px) {
    .bottom-nav { display: block; }
    .cta-bar { display: none; }
    .whatsapp-float { bottom: 80px; }
    body { padding-bottom: 70px; }
}

/* ===== RECUP IMAGES HOVER ===== */
.recup-video-wrapper { overflow: hidden; border-radius: 16px; }
.recup-stat { transition: transform 0.3s, background 0.3s; }
.recup-stat:hover { transform: translateY(-4px); }

/* ===== YOUTUBE FACADE ===== */
.yt-facade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #000;
    cursor: pointer;
}
.yt-facade::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(215, 27, 27, 0.9);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpolygon points='10 8 16 12 10 16'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.yt-facade:hover::after { transform: translate(-50%, -50%) scale(1.1); background-color: var(--red-btn-hover); }
.yt-facade.loaded::after { display: none; }

/* ===== ACTIVE NAV INDICATOR ===== */
.nav-desktop a.nav-active {
    color: var(--red-btn) !important;
    position: relative;
}
.nav-desktop a.nav-active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red-btn);
    border-radius: 1px;
}
.nav-mobile a.nav-active { color: var(--red-btn) !important; }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
    transform: scale(0.95);
    transition: transform 0.3s;
}
.lightbox-overlay.active .lightbox-img { transform: scale(1); }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-dark);
    color: var(--light);
    border: 1px solid rgba(241,241,241,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s, background 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--red-btn); border-color: var(--red-btn); }
@media (max-width: 768px) {
    .back-to-top { bottom: 90px; right: 16px; width: 40px; height: 40px; }
}

/* ===== WHATSAPP FLOAT TOOLTIP + PULSE ===== */
.whatsapp-float {
    animation: waPulse 2s ease-in-out infinite;
}
.whatsapp-float .wa-tooltip {
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: var(--dark-text);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.whatsapp-float .wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--light);
    padding: 20px 24px;
    z-index: 2500;
    transition: bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
    border-top: 1px solid rgba(241,241,241,0.08);
}
.cookie-banner.visible { bottom: 0; }
.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cookie-content p {
    font-size: 14px;
    color: var(--light-80);
    line-height: 1.5;
    flex: 1;
}
.cookie-content p a {
    color: var(--red-btn);
    text-decoration: underline;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-accept {
    background: var(--red-btn);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}
.cookie-accept:hover { background: var(--red-btn-hover); }
.cookie-decline {
    background: transparent;
    color: var(--light-80);
    border: 1px solid rgba(241,241,241,0.15);
    padding: 10px 24px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.cookie-decline:hover { background: rgba(241,241,241,0.06); }
@media (max-width: 768px) {
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-buttons { justify-content: center; }
}

/* ===== HERO IMPACT NUMBERS ===== */
.hero-impact {
    background: var(--bg-dark);
    border-top: 1px solid rgba(241,241,241,0.06);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.hero-impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red-btn), transparent);
}
.hero-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.impact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}
.impact-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(241,241,241,0.1);
}
.impact-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--red-btn);
    line-height: 1;
    letter-spacing: -1px;
}
.impact-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--light-50);
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 768px) {
    .hero-impact-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .impact-item:not(:last-child)::after { display: none; }
    .impact-number { font-size: 32px; }
    .impact-label { font-size: 11px; }
}
@media (max-width: 480px) {
    .hero-impact { padding: 28px 0; }
    .hero-impact-grid { gap: 20px; }
    .impact-number { font-size: 28px; }
}

/* ===== VISUAL STEPS (Passo a Passo) ===== */
.steps-visual {
    padding: 80px 0;
    background: var(--bg-body);
}
.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
}
.step-card {
    flex: 1;
    max-width: 260px;
    text-align: center;
    position: relative;
    padding: 0 16px;
}
.step-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    color: rgba(139, 1, 1, 0.08);
    line-height: 1;
    margin-bottom: -10px;
    position: relative;
    z-index: 0;
}
.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.step-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
}
.step-card > p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--dark-text-80);
    line-height: 1.5;
}
.step-connector {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--red-btn));
    margin-top: 72px;
    position: relative;
}
.step-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--red-btn);
    border-top: 2px solid var(--red-btn);
    transform: rotate(45deg);
}
@media (max-width: 900px) {
    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .step-card { max-width: 100%; }
    .step-connector {
        width: 2px;
        height: 40px;
        margin-top: 0;
    }
    .step-connector::after {
        right: -3px;
        top: auto;
        bottom: -4px;
        transform: rotate(135deg);
    }
}

/* ===== TRUST / BADGES SECTION ===== */
.trust-section {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid rgba(12,12,12,0.06);
    border-bottom: 1px solid rgba(12,12,12,0.06);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: 12px;
    background: var(--bg-body);
    border: 1px solid rgba(12,12,12,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.trust-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-text h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 4px;
}
.trust-text p {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--dark-text-80);
    line-height: 1.4;
}
@media (max-width: 1024px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
    .trust-grid { grid-template-columns: 1fr; gap: 16px; }
    .trust-item { padding: 16px; }
}

/* ===== RECOVERY TICKER ===== */
.recovery-ticker {
    background: var(--bg-dark);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}
.recovery-ticker::before,
.recovery-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.recovery-ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 100%);
}
.recovery-ticker::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-dark) 0%, transparent 100%);
}
.ticker-track {
    display: flex;
    gap: 48px;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}
.ticker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--whatsapp);
    animation: tickerPulse 2s ease-in-out infinite;
}
.ticker-item span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--light-80);
    letter-spacing: 0.3px;
}
.ticker-item strong {
    color: var(--light);
    font-weight: 700;
}
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes tickerPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ===== COMPARISON TABLE ===== */
.compare-section {
    padding: 80px 0 40px;
    background: var(--bg-body);
}
.compare-section .section-header {
    margin-bottom: 40px;
}
.compare-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    border: 1px solid rgba(12,12,12,0.08);
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.compare-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    font-family: var(--font-body);
}
.compare-table thead th {
    background: var(--bg-dark);
    color: var(--light);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    padding: 18px 16px;
    text-align: center;
    white-space: nowrap;
    border-bottom: 2px solid var(--red-btn);
}
.compare-table thead th:first-child {
    text-align: left;
    min-width: 220px;
    background: var(--bg-dark);
}
.compare-table thead th.highlight {
    background: var(--red-btn);
    color: #fff;
    position: relative;
}
.compare-table thead th.highlight::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translate(-50%, -100%);
    background: var(--red-btn);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 6px 6px 0 0;
    letter-spacing: 1px;
}
.compare-table tbody tr {
    border-bottom: 1px solid rgba(12,12,12,0.06);
    transition: background 0.2s;
}
.compare-table tbody tr:hover { background: rgba(139, 1, 1, 0.02); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody td {
    padding: 14px 16px;
    text-align: center;
    font-size: 14px;
    color: var(--dark-text);
    vertical-align: middle;
}
.compare-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    color: var(--dark-text-80);
}
.compare-table tbody td.highlight-col {
    background: rgba(215, 27, 27, 0.03);
}
.compare-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.1);
}
.compare-check svg { color: var(--whatsapp); }
.compare-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}
.compare-x svg { color: rgba(12,12,12,0.2); }
.compare-table tfoot td {
    padding: 20px 16px;
    text-align: center;
    border-top: 2px solid rgba(12,12,12,0.06);
}
.compare-table tfoot td:first-child { border-top: none; }
.compare-btn {
    display: inline-block;
    background: var(--red-btn);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s, transform 0.2s;
}
.compare-btn:hover { background: var(--red-btn-hover); transform: translateY(-1px); }
.compare-scroll-hint {
    display: none;
    text-align: center;
    padding: 12px;
    font-size: 12px;
    color: var(--dark-text-80);
    opacity: 0.7;
}
@media (max-width: 900px) {
    .compare-scroll-hint { display: block; }
}

/* ===== SR ONLY (screen reader) ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== SKIP TO CONTENT ===== */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--red-btn);
    color: #fff;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    z-index: 9999;
    transition: top 0.3s;
}
.skip-to-content:focus {
    top: 0;
    outline: 2px solid var(--red-btn);
    outline-offset: 2px;
}

/* ===== NAV MOBILE ACTIVE ===== */
.nav-mobile a.nav-active {
    color: var(--red-btn) !important;
    border-left: 3px solid var(--red-btn);
    padding-left: 12px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .ticker-track { animation: none !important; }
    .marquee-content { animation: none !important; }
}

/* ===== FOOTER DEV CREDIT ===== */
.footer-dev {
    font-size: 12px;
    color: rgba(241,241,241,0.35);
    font-family: var(--font-body);
}
.footer-dev strong {
    color: rgba(241,241,241,0.5);
    font-weight: 600;
}
