.elementor-401 .elementor-element.elementor-element-f67c9e7{--display:flex;--padding-top:20px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-399ca4a */* {
    box-sizing: border-box;
}

/* =========================================
   1. VARIABLES & SETUP
   ========================================= */
:root {
    /* Colors - Revory Company */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-red: #AD1917;
    --accent-dark: #39332D;
    --border-color: #2a2a2a;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-h1-desktop: 3.5rem;
    --font-h1-mobile: 2.125rem;
    --font-h2-desktop: 2.5rem;
    --font-h2-mobile: 1.75rem;
    --font-h3-desktop: 1.375rem;
    --font-h3-mobile: 1.125rem;
    --font-base: 1rem;
    --font-small: 0.875rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: var(--font-base);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    overscroll-behavior-x: none;
    touch-action: pan-y;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: clamp(16px, 4vw, 32px);
    padding-right: clamp(16px, 4vw, 32px);
}

.highlight {
    color: var(--accent-red);
    position: relative;
}

/* =========================================
   2. TOPBAR (HEADER)
   ========================================= */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 0;
    min-height: 72px;
    display: flex;
    align-items: center;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 16px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0px !important;
    flex-shrink: 0;
    z-index: 20;
}

.logo svg,
.logo .logo-icon,
.logo .brand-icon,
.logo .logo-img {
    margin: 0 !important;
    padding: 0 !important;
    display: block;
    line-height: 0;
}

.logo-img {
    height: 42px !important;
    width: auto !important;
    max-width: 160px !important;
    display: block;
    object-fit: contain;
    margin: 0;
    filter: brightness(1.05);
}

.logo-text {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 900;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo-text .highlight {
    color: var(--accent-red);
}

/* Navigation */
.nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link.active {
    color: var(--accent-red);
}

.btn-nav {
    background: var(--accent-red);
    color: var(--text-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(173, 25, 23, 0.5);
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
    padding-top: clamp(100px, 15vh, 180px);
    padding-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(173, 25, 23, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(57, 51, 45, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(var(--font-h1-mobile), 5vw, var(--font-h1-desktop));
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(0.9375rem, 2.5vw, var(--font-base));
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

/* Hero Stats — 3 colunas no desktop */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.stat-number {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #FFFFFF;
    opacity: 1;
}

.stat-label {
    font-size: var(--font-small);
    color: var(--text-secondary);
    line-height: 1.5;
}

/* =========================================
   4. FORM COMPONENT
   ========================================= */
.hero-form-wrapper {
    position: relative;
}

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.form-title {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
    line-height: 1.2;
}

.form-subtitle {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.9rem;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-family);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(173, 25, 23, 0.15);
}

.form-group input::placeholder {
    color: #555;
}

.btn-submit {
    background: var(--accent-red);
    color: var(--text-primary);
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 1.05rem);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: var(--spacing-sm);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(173, 25, 23, 0.5);
}

/* =========================================
   5. GENERAL SECTIONS
   ========================================= */
.section-title {
    font-size: clamp(var(--font-h2-mobile), 4.5vw, var(--font-h2-desktop));
    font-weight: 900;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--font-base);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   5.5. SERVIÇOS SECTION
   ========================================= */
.servicos {
    padding: var(--spacing-xl) 0;
    background: var(--bg-primary);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.servico-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.servico-card:hover::before {
    transform: scaleX(1);
}

.servico-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
    box-shadow: 0 15px 40px rgba(173, 25, 23, 0.2);
}

.servico-title {
    font-size: clamp(var(--font-h3-mobile), 2.5vw, var(--font-h3-desktop));
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.servico-description {
    color: var(--text-secondary);
    font-size: var(--font-base);
    line-height: 1.6;
}

/* =========================================
   6. MÉTODO SECTION
   ========================================= */
.metodo {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
    position: relative !important;
    z-index: 1 !important;
}

#metodo {
    scroll-margin-top: 110px;
    padding-top: 24px;
}

#metodo,
.metodo {
    background-attachment: initial !important;
    transform: none !important;
    overflow: visible !important;
    position: relative !important;
}

#metodo .section-title {
    opacity: 1 !important;
    transform: none !important;
    position: static !important;
    color: var(--text-primary);
    overflow: visible !important;
}

.metodo .section-title .highlight {
    color: var(--accent-red);
}

.metodo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    position: relative !important;
}

.metodo-step {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--spacing-lg) var(--spacing-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metodo-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.metodo-step:hover::before {
    transform: scaleX(1);
}

.metodo-step:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
}

.step-number {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    color: #FFFFFF;
    opacity: 1;
    margin-bottom: var(--spacing-sm);
}

.step-title {
    font-size: clamp(var(--font-h3-mobile), 2.8vw, var(--font-h3-desktop));
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.step-description {
    color: var(--text-secondary);
    font-size: var(--font-base);
    line-height: 1.6;
}

/* =========================================
   7. BENEFÍCIOS SECTION
   ========================================= */
.beneficios {
    padding: var(--spacing-xl) 0;
    background: var(--bg-primary);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.beneficio-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
    box-shadow: 0 15px 40px rgba(173, 25, 23, 0.3);
}

.beneficio-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.beneficio-title {
    font-size: clamp(var(--font-h3-mobile), 2.5vw, var(--font-h3-desktop));
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.beneficio-description {
    color: var(--text-secondary);
    font-size: var(--font-base);
    line-height: 1.6;
}

/* =========================================
   8. CASES SECTION (CARROSSEL)
   ========================================= */
.cases {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

/* Wrapper do carrossel */
.cases-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 48px;
    /* espaço para botões */
}

/* Track com flex horizontal */
.cases-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

/* Cards com largura fixa */
.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
    min-width: 340px;
    flex: 0 0 calc(33.333% - 16px);
}

.case-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
}

.case-tag {
    display: inline-block;
    background: var(--accent-red);
    color: var(--text-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.case-title {
    font-size: clamp(var(--font-h3-mobile), 3vw, var(--font-h3-desktop));
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.case-description {
    color: var(--text-secondary);
    font-size: var(--font-base);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.case-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

.case-metric {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.metric-value {
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #FFFFFF;
    opacity: 1;
}

.metric-label {
    font-size: var(--font-small);
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Botões prev/next do carrossel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.carousel-btn:hover:not(:disabled) {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 4px 12px rgba(173, 25, 23, 0.4);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* =========================================
   8.5. TRÁFEGO PAGO & SEO SECTION
   ========================================= */
.trafego-seo {
    padding: var(--spacing-xl) 0;
    background: var(--bg-primary);
}

.trafego-seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.trafego-seo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
    text-align: center;
}

.trafego-seo-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
    box-shadow: 0 15px 40px rgba(173, 25, 23, 0.2);
}

.trafego-seo-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.trafego-seo-card h3 {
    font-size: clamp(var(--font-h3-mobile), 2.5vw, var(--font-h3-desktop));
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.trafego-seo-card p {
    color: var(--text-secondary);
    font-size: var(--font-base);
    line-height: 1.6;
}

/* =========================================
   9. DEPOIMENTOS SECTION
   ========================================= */
.depoimentos {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.depoimento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
}

.depoimento-stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.depoimento-text {
    color: var(--text-secondary);
    font-size: var(--font-base);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.depoimento-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

.depoimento-author strong {
    color: var(--text-primary);
    font-weight: 700;
}

.depoimento-author span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* =========================================
   10. SOBRE NÓS SECTION
   ========================================= */
.sobre {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-primary);
}

.sobre-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.sobre-logo img {
    max-width: 220px;
    height: auto;
    display: inline-block;
    filter: brightness(1.05);
}

.sobre .section-title {
    margin-bottom: var(--spacing-md);
}

.sobre-texto {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sobre-texto p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.sobre-texto p:last-child {
    margin-bottom: 0;
}

/* =========================================
   11. CTA FINAL SECTION
   ========================================= */
.cta-final {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--accent-dark) 0%, #1a1512 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(173, 25, 23, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final .container {
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: var(--accent-red);
    color: var(--text-primary);
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(173, 25, 23, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(173, 25, 23, 0.6);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-red);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(173, 25, 23, 0.4);
}

/* =========================================
   12. FOOTER
   ========================================= */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-title {
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: #ffffff !important;
}

.footer-text {
    color: #ffffff;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-red);
}

.footer-links li {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-md);
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-legal p {
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.footer-legal-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--accent-red);
}

.footer-legal-links span {
    color: var(--border-color);
}

/* =========================================
   13. WHATSAPP FLOATING BUTTON
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

/* =========================================
   14. RESPONSIVE QUERIES
   ========================================= */
@media (max-width: 968px) {
    .topbar {
        min-height: 64px;
    }

    .nav {
        display: none;
    }

    .logo-img {
        height: 28px !important;
        max-width: 120px !important;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
    }

    .hero-text {
        text-align: center;
    }

    .form-card {
        padding: var(--spacing-md);
    }

    .metodo-grid,
    .beneficios-grid,
    .depoimentos-grid,
    .servicos-grid,
    .trafego-seo-grid {
        gap: var(--spacing-sm);
    }

    .metodo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
    }

    .metodo .section-title {
        position: static !important;
        margin-top: 0 !important;
    }

    /* Carrossel: 2 cards visíveis no tablet */
    .case-card {
        flex: 0 0 calc(50% - 12px);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    #metodo {
        scroll-margin-top: 130px;
        padding-top: 28px;
    }

    .sobre-logo img {
        max-width: 160px;
    }

    .sobre-texto {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .metodo-grid,
    .beneficios-grid,
    .depoimentos-grid,
    .servicos-grid,
    .trafego-seo-grid {
        grid-template-columns: 1fr;
    }

    .metodo-step {
        padding: var(--spacing-md);
    }

    .container {
        padding: 0 var(--spacing-sm);
        overflow-x: hidden;
        max-width: 100%;
    }

    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .hero {
        padding: calc(80px + var(--spacing-md)) 0 var(--spacing-md);
    }

    /* Hero stats: empilhar no mobile */
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .stat {
        text-align: center;
        padding: var(--spacing-sm);
        background: var(--bg-card);
        border-radius: 8px;
        min-width: 0;
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .form-card {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .form-group input,
    .form-group select {
        width: 100%;
        font-size: 16px;
        /* Prevent zoom on iOS */
    }

    .btn-submit {
        font-size: 1rem;
        padding: 0.9rem;
    }

    .case-results {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 320px;
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }

    .sobre-logo img {
        max-width: 140px;
    }

    /* Carrossel mobile: scroll horizontal, sem botões */
    .cases-carousel-wrapper {
        padding: 0;
        overflow: visible;
    }

    .cases-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .case-card {
        flex: 0 0 85%;
        min-width: 260px;
        scroll-snap-align: start;
    }

    .carousel-btn {
        display: none;
    }
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .hero-text {
        text-align: center;
    }
}

/* Evitar overflow horizontal */
.hero,
.metodo,
.beneficios,
.cases,
.depoimentos,
.sobre,
.footer,
.topbar,
.servicos,
.trafego-seo,
.cta-final {
    overflow-x: clip;
}

/* Header contact button */
.btn-header-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    background: var(--accent-red);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
}

.btn-header-contact:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

@media (max-width: 968px) {
    .btn-header-contact {
        padding: 9px 10px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .topbar-content {
        gap: 10px;
    }
}

@media (max-width: 420px) {
    .btn-header-contact {
        font-size: 0.8rem;
        padding: 8px 9px;
    }
}

/* Mobile menu */
.no-scroll {
    overflow: hidden;
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: rgba(17, 17, 17, 0.6);
    color: var(--text-primary);
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-menu-icon {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    display: block;
    border-radius: 999px;
}

.mobile-menu-icon::before,
.mobile-menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 999px;
}

.mobile-menu-icon::before {
    top: -7px;
}

.mobile-menu-icon::after {
    top: 7px;
}

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
}

.mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(86vw, 360px);
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav__title {
    font-weight: 800;
    letter-spacing: -0.01em;
}

.mobile-nav__close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: rgba(26, 26, 26, 0.8);
    color: var(--text-primary);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

.mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav__link {
    text-decoration: none;
    color: var(--text-primary);
    padding: 12px 12px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: rgba(26, 26, 26, 0.55);
}

.mobile-nav__link:hover {
    border-color: var(--border-color);
}

.mobile-nav__cta {
    margin-top: 6px;
    text-decoration: none;
    text-align: center;
    background: var(--accent-red);
    color: var(--text-primary);
    padding: 12px 12px;
    border-radius: 10px;
    font-weight: 800;
}

/* CTA visibilidade responsiva */
.btn-header-contact {
    display: none;
}

@media (max-width: 968px) {
    .btn-header-contact {
        display: inline-flex;
    }

    .btn-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}/* End custom CSS */