.elementor-84 .elementor-element.elementor-element-97d3038{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-54f6f3f *//* =========================================
   1. VARIABLES & SETUP
   ========================================= */
:root {
    /* Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-blue: #061F7C;
    --accent-red: #DA291C;
    --border-color: #2a2a2a;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-family: 'Inter', 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;
}

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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.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: 10px;
    flex-shrink: 0;
    z-index: 20;
}

.logo-img {
    height: 42px !important;
    width: auto !important;
    max-width: 180px !important;
    display: block;
    object-fit: contain;
    margin: 0;
}

.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);
}

.btn-nav {
    background: var(--accent-blue);
    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(6, 31, 124, 0.5);
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
    padding-top: calc(96px + var(--spacing-xl));
    /* Fixed header offset */
    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(6, 31, 124, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(218, 41, 28, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 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 */
.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;
}

.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-blue);
    box-shadow: 0 0 0 3px rgba(6, 31, 124, 0.15);
}

.form-group input::placeholder {
    color: #555;
}

.btn-submit {
    background: var(--accent-blue);
    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(6, 31, 124, 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;
}

/* =========================================
   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;
}

/* Stabilizing Elementor overrides for Metodo */
#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-blue), var(--accent-red));
    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-blue);
}

.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(218, 41, 28, 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
   ========================================= */
.cases {
    padding: var(--spacing-xl) 0;
    background: var(--bg-primary);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.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;
}

/* =========================================
   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-blue);
}

.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 MIM SECTION
   ========================================= */
.sobre {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-secondary);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.sobre-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.sobre-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* =========================================
   11. CLIENTES (GRID)
   ========================================= */
.clientes {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-primary);
}

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.cliente-item {
    height: 80px;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    opacity: 0.5;
}

/* =========================================
   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-blue);
}

.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-blue);
}

.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: 32px !important;
        max-width: 150px !important;
    }

    .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,
    .cases-grid,
    .depoimentos-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;
    }

    /* Garantir título do método estático no mobile */
    .metodo .section-title {
        position: static !important;
        margin-top: 0 !important;
    }
}

@media (max-width: 768px) {
    #metodo {
        scroll-margin-top: 130px;
        padding-top: 28px;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .metodo-grid,
    .beneficios-grid,
    .cases-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
        /* Stack everything on mobile */
    }

    .metodo-step {
        padding: var(--spacing-md);
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero {
        padding: calc(80px + var(--spacing-md)) 0 var(--spacing-md);
        /* Smaller padding on mobile */
    }

    .hero-stats {
        grid-template-columns: 1fr;
        /* Stack stats */
    }

    .stat {
        text-align: center;
        padding: var(--spacing-sm);
        background: var(--bg-card);
        border-radius: 8px;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .form-card {
        padding: var(--spacing-sm);
    }

    .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;
    }
}/* End custom CSS */