/* ===== RESET E VARIÁVEIS ===== */
:root {
    /* CORES */
    --laranja: #FF6B35;
    --laranja-brilho: #FF8A5C;
    --laranja-ultra: #FF4D1A;
    --laranja-glow: rgba(255, 107, 53, 0.5);
    
    --preto-profundo: #030303;
    --preto-carbon: #0C0C0C;
    --preto-grafite: #151515;
    
    --branco-puro: #FFFFFF;
    --branco-off: #F0F0F0;
    --cinza-chumbo: #A0A0A0;
    
    /* GRADIENTES */
    --grad-laranja: linear-gradient(135deg, #FF6B35, #FF4D00, #FF8A5C);
    --grad-escuro: linear-gradient(145deg, #0A0A0A, #151515);
    
    /* SOMBRAS */
    --sombra-media: 0 15px 30px rgba(0, 0, 0, 0.4);
    --sombra-laranja: 0 15px 40px rgba(255, 107, 53, 0.3);
    
    /* BORDAS */
    --raio-sm: 12px;
    --raio-md: 16px;
    --raio-lg: 24px;
    --raio-xl: 32px;
    --raio-circular: 9999px;
    
    /* ESPAÇAMENTOS */
    --espaco-xs: 4px;
    --espaco-sm: 8px;
    --espaco-md: 16px;
    --espaco-lg: 24px;
    --espaco-xl: 32px;
    --espaco-xxl: 48px;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--preto-profundo);
    color: var(--branco-puro);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 30%),
                radial-gradient(circle at 90% 70%, rgba(255, 107, 53, 0.03) 0%, transparent 30%);
    pointer-events: none;
    z-index: -1;
}

/* ===== CONTAINER - Mobile First ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--grad-laranja);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== SEÇÕES ===== */
section {
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--raio-circular);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--laranja);
    margin-bottom: 16px;
}

.section-title {
    font-size: 28px;
    margin-bottom: 12px;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 42px;
    }
}

.section-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BOTÕES - CORRIGIDO ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: var(--raio-circular);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: normal;
    width: auto;
    min-width: 120px;
    max-width: 100%;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--grad-laranja);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 75, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 75, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 107, 53, 0.5);
    color: white;
}

.btn-outline:hover {
    border-color: var(--laranja);
    background: rgba(255, 107, 53, 0.1);
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
    min-width: 100px;
}

.btn-large {
    padding: 14px 24px;
    font-size: 15px;
    min-width: 160px;
}

.btn-xlarge {
    padding: 16px 28px;
    font-size: 16px;
    min-width: 200px;
}

.btn-full {
    width: 100%;
    min-width: 100%;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

/* ===== NAVBAR - CORRIGIDA ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(3, 3, 3, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.logo-highlight {
    color: var(--laranja);
}

/* Menu Desktop */
.nav-menu-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .nav-menu-desktop {
        display: block;
    }
}

.nav-list {
    display: flex;
    gap: 24px;
    list-style: none;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--laranja);
}

/* Hamburger - CORRIGIDO */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    width: 40px;
    height: 40px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

/* Menu Mobile - CORRIGIDO */
.nav-menu-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--preto-grafite);
    backdrop-filter: blur(20px);
    padding: 80px 24px 30px;
    transition: right 0.3s ease;
    z-index: 999;
    border-left: 1px solid rgba(255, 107, 53, 0.3);
}

.nav-menu-mobile.active {
    right: 0;
}

.nav-list-mobile {
    list-style: none;
}

.nav-list-mobile li {
    margin-bottom: 20px;
}

.nav-link-mobile {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link-mobile:hover {
    color: var(--laranja);
    padding-left: 10px;
    border-bottom-color: var(--laranja);
}

/* ===== HERO - CORRIGIDO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 40px;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
}

.hero-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--raio-circular);
    padding: 6px 16px;
    margin-bottom: 20px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--laranja);
    border-radius: 50%;
    animation: pulse-badge 1.5s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-title {
    font-size: 32px;
    margin-bottom: 16px;
    line-height: 1.2;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
}

.hero-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
}

@media (min-width: 1024px) {
    .hero-text {
        margin-left: 0;
        padding: 0;
    }
}

.hero-buttons {
    margin-bottom: 30px;
    padding: 0 16px;
}

/* Mockup Phone */
.hero-visual {
    display: flex;
    justify-content: center;
    padding: 0 16px;
}

.mockup-phone {
    width: 240px;
    aspect-ratio: 280 / 560;
    background: linear-gradient(145deg, #1E1E1E, #0A0A0A);
    border-radius: 36px;
    padding: 12px;
    position: relative;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

@media (min-width: 768px) {
    .mockup-phone {
        width: 280px;
    }
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 22px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0A0A0A;
    border-radius: 28px;
    overflow: hidden;
    padding: 32px 8px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 10px;
}

.notification-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #FF6B35, #FF4D00);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    flex-shrink: 0;
}

.notification-title {
    font-weight: 600;
    font-size: 11px;
    display: block;
}

.notification-desc {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== CARDS GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px 0;
    padding: 0 16px;
}

@media (min-width: 640px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0;
    }
}

.card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--raio-md);
    padding: 20px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.1);
}

.card-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
    color: var(--laranja);
}

.card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    line-height: 1.5;
}

.card-stats {
    font-size: 13px;
    color: var(--laranja);
    font-weight: 600;
}

.stat-highlight {
    font-size: 18px;
    margin-right: 4px;
}

/* ===== TIMELINE ===== */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
}

@media (min-width: 768px) {
    .timeline-item {
        flex-direction: row;
        gap: 24px;
    }
}

.timeline-number {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #FF6B35, #FF4D00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(255, 75, 0, 0.3);
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--raio-md);
    padding: 20px;
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.timeline-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.timeline-features li {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 8px;
    border-radius: 20px;
}

.timeline-features i {
    color: var(--laranja);
    font-size: 10px;
}

/* ===== CASES GRID ===== */
.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px 0;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cases-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0;
    }
}

.case-card {
    background: linear-gradient(145deg, #151515, #0A0A0A);
    border-radius: var(--raio-md);
    padding: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.case-category {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    padding: 4px 10px;
    border-radius: var(--raio-circular);
    font-size: 10px;
    font-weight: 600;
    color: var(--laranja);
    margin-bottom: 12px;
}

.case-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.case-result {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}

.result-number {
    font-size: 26px;
    font-weight: 700;
    color: var(--laranja);
}

.result-label {
    font-size: 13px;
    color: white;
}

.case-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.case-progress {
    margin-bottom: 12px;
}

.progress-bar {
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--laranja), #FF8A5C);
}

.case-quote {
    background: rgba(255, 107, 53, 0.05);
    border-left: 3px solid var(--laranja);
    padding: 10px;
    border-radius: 6px;
}

.case-quote i {
    color: var(--laranja);
    opacity: 0.5;
    margin-bottom: 4px;
    font-size: 12px;
}

.case-quote p {
    font-style: italic;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
}

.case-quote span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== MÉTRICAS ===== */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 0;
    }
}

.metric-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--raio-sm);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.metric-card i {
    font-size: 22px;
    color: var(--laranja);
    flex-shrink: 0;
}

.metric-card strong {
    display: block;
    font-size: 16px;
    color: white;
}

.metric-card span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== DEPOIMENTOS ===== */
.depoimentos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px 0;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .depoimentos-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 0;
    }
}

.depo-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--raio-md);
    padding: 20px;
}

.quote-icon {
    color: rgba(255, 107, 53, 0.2);
    font-size: 22px;
    margin-bottom: 10px;
}

.depo-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.depo-rating i {
    color: #FFD700;
    font-size: 13px;
}

.depo-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.5;
}

.depo-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.author-initials {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FF6B35, #FF4D00);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.depo-author strong {
    display: block;
    font-size: 13px;
}

.depo-author span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.depo-results {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.result-badge {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 30px;
    padding: 3px 8px;
    font-size: 9px;
    color: var(--laranja);
}

/* ===== TRUST BAR ===== */
.trust-bar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 24px;
}

@media (min-width: 768px) {
    .trust-bar {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
        padding: 20px 24px;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    justify-content: center;
}

.trust-item i {
    color: var(--laranja);
    font-size: 14px;
    flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq-accordion {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--raio-sm);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    gap: 12px;
}

.faq-question i {
    color: var(--laranja);
    transition: transform 0.3s ease;
    font-size: 14px;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 16px 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ===== CTA FINAL ===== */
.cta-final {
    background: linear-gradient(180deg, var(--preto-carbon), #050505);
    padding: 48px 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--raio-circular);
    padding: 6px 16px;
    margin-bottom: 20px;
    color: var(--laranja);
    font-weight: 600;
    font-size: 12px;
}

.cta-title {
    font-size: 28px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 42px;
    }
}

.cta-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    flex-wrap: wrap;
}

.cta-guarantee i {
    color: var(--laranja);
}

/* ===== FOOTER ===== */
.footer {
    background: #030303;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 30px;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 30px;
        padding: 0;
    }
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 16px 0;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--laranja);
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-links a:hover {
    background: var(--laranja);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 15px;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--laranja);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 20px 16px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-madeby i {
    color: var(--laranja);
    animation: heart-beat 1.5s ease-in-out infinite;
}

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ===== COUNTER MAIN ===== */
.counter-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 16px;
    padding: 24px;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 32px;
}

@media (min-width: 768px) {
    .counter-main {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
        padding: 28px;
        margin: 40px 0;
    }
}

.counter-item {
    text-align: center;
    max-width: 250px;
    margin: 0 auto;
}

.counter-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B35, #FF8A5C);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
    line-height: 1.3;
    word-break: break-word;
}

@media (min-width: 768px) {
    .counter-number {
        font-size: 22px;
    }
}

.counter-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    display: block;
}

/* ===== MARKET STATS ===== */
.market-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px 0;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .market-stats {
        grid-template-columns: repeat(3, 1fr);
        padding: 0;
    }
}

.market-stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--raio-md);
    padding: 24px 16px;
    text-align: center;
}

.market-stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    color: var(--laranja);
}

.market-stat-number {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B35, #FF8A5C);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.market-stat-label {
    font-size: 11px;
    color: white;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.market-stat-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* ===== STATS GLOBAL ===== */
.stats-global {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 16px;
    padding: 20px 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    border-radius: 24px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

@media (min-width: 768px) {
    .stats-global {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 24px;
        margin: 30px 0;
    }
}

.stat-global-item {
    text-align: center;
}

.stat-global-number {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B35, #FF8A5C);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .stat-global-number {
        font-size: 32px;
    }
}

.stat-global-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}

.stat-global-desc {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== APPROACH SECTION ===== */
.approach-section {
    padding: 40px 0;
}

.approach-title {
    font-size: 26px;
    margin-bottom: 16px;
    text-align: center;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .approach-title {
        font-size: 36px;
    }
}

.approach-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 24px;
    text-align: center;
    padding: 0 20px;
    line-height: 1.5;
}

.approach-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .approach-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0;
    }
}

.approach-feature {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--raio-md);
    padding: 24px 20px;
    text-align: center;
}

.approach-feature i {
    font-size: 28px;
    color: var(--laranja);
    margin-bottom: 16px;
}

.approach-feature h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.approach-feature p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ===== SECTION CTA ===== */
.section-cta {
    text-align: center;
    margin-top: 30px;
    padding: 0 20px;
}

.section-cta p {
    font-size: 15px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--preto-profundo);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.preloader-content {
    text-align: center;
    width: 240px;
    padding: 0 20px;
}

.preloader-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.preloader-logo span {
    color: var(--laranja);
}

.preloader-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #FF6B35, #FF8A5C);
    transition: width 2s ease;
}

/* ===== MODAL - CORRIGIDO ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 9999;
}

.modal-overlay.active {
    display: block;
}

.quiz-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    background: var(--preto-grafite);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 28px;
    padding: 28px 20px;
    z-index: 10000;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.quiz-container.active {
    display: block;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    color: var(--laranja);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.modal-close:hover {
    background: var(--laranja);
    color: white;
    transform: rotate(90deg);
}

/* ===== FORMULÁRIO - CORRIGIDO ===== */
.form-criativo {
    background: linear-gradient(145deg, #151515, #0a0a0a);
    border-radius: 28px;
    padding: 28px 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
}

.form-title {
    font-size: 26px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .form-title {
        font-size: 32px;
    }
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    max-width: 350px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.form-label i {
    color: var(--laranja);
    font-size: 14px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--laranja);
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23FF6B35' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%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;
    background-size: 14px;
}

.form-range-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 16px;
}

.form-range-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
    gap: 8px;
}

.form-range-highlight {
    background: linear-gradient(135deg, #FF6B35, #FF8A5C);
    padding: 6px 16px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.form-range {
    width: 100%;
    height: 5px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--laranja);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px var(--laranja);
    transition: all 0.3s ease;
}

.form-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.form-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.form-checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 8px;
}

@media (max-width: 375px) {
    .form-checkbox-group {
        grid-template-columns: 1fr;
    }
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-checkbox:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--laranja);
}

.form-checkbox input {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.form-checkbox input:checked + .checkbox-custom {
    background: var(--laranja);
    border-color: var(--laranja);
}

.form-checkbox input:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
}

.checkbox-label {
    font-size: 12px;
    color: white;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FF6B35, #FF4D00);
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(255, 75, 0, 0.3);
    margin-top: 20px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(255, 75, 0, 0.4);
}

.form-submit i {
    transition: transform 0.3s ease;
}

.form-submit:hover i {
    transform: translateX(5px);
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    flex-wrap: wrap;
    text-align: center;
}

.form-security i {
    color: var(--laranja);
}

/* ===== UTILITÁRIOS ===== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FF6B35, #FF4D00);
    border-radius: 10px;
}

/* ===== RESPONSIVO EXTRA ===== */
@media (max-width: 375px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn-large {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 140px;
    }
    
    .btn-xlarge {
        padding: 14px 24px;
        font-size: 15px;
        min-width: 180px;
    }
    
    .form-title {
        font-size: 22px;
    }
    
    .counter-number {
        font-size: 16px;
    }
    
    .market-stat-number {
        font-size: 24px;
    }
    
    .stat-global-number {
        font-size: 20px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
        min-width: 100px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 22px;
    }
}

/* Garantir que o site role normalmente */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative !important;
}

/* Loading screen não deve atrapalhar */
.loading-screen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    z-index: 999999 !important;
    pointer-events: none; /* Importante: não bloqueia cliques quando escondido */
}

.loading-screen.hide {
    display: none !important;
}

/* Garantir que o site role normalmente */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative !important;
}

/* Loading screen não deve atrapalhar */
.loading-screen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    z-index: 999999 !important;
    pointer-events: none; /* Importante: não bloqueia cliques quando escondido */
}

.loading-screen.hide {
    display: none !important;
}
/* ===== ANIMAÇÕES DO MOCKUP ===== */
.mockup-phone {
    animation: floatPhone 4s ease-in-out infinite;
    transform-origin: center;
}

@keyframes floatPhone {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Brilho pulsante */
.mockup-glow {
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        filter: blur(20px);
    }
    50% {
        opacity: 0.7;
        filter: blur(30px);
    }
}

/* Notificações animadas */
.notification-item {
    animation: slideInNotification 0.5s ease forwards;
    opacity: 0;
    transform: translateX(30px);
}

.notification-item:nth-child(1) { animation-delay: 0.2s; }
.notification-item:nth-child(2) { animation-delay: 0.4s; }
.notification-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideInNotification {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hover effect no mockup */
.mockup-phone:hover {
    animation-play-state: paused;
    transform: scale(1.02);
    transition: transform 0.3s ease;
    box-shadow: 0 30px 60px rgba(255,107,53,0.3);
}

/* Efeito de luz que passa */
.mockup-phone::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.1),
        transparent
    );
    animation: shine 6s infinite;
    pointer-events: none;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* Animações individuais dos ícones */
.notification-icon {
    animation: iconPulse 2s ease-in-out infinite;
}

.notification-item:nth-child(1) .notification-icon {
    animation-delay: 0s;
    background: linear-gradient(135deg, #FF6B35, #FF4D00);
}

.notification-item:nth-child(2) .notification-icon {
    animation-delay: 0.3s;
    background: linear-gradient(135deg, #FF8A5C, #FF6B35);
}

.notification-item:nth-child(3) .notification-icon {
    animation-delay: 0.6s;
    background: linear-gradient(135deg, #FF4D00, #FF8A5C);
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255,107,53,0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(255,107,53,0.6);
    }
}

/* Títulos com efeito de brilho */
.notification-title {
    position: relative;
    display: inline-block;
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255,107,53,0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(255,107,53,0.6);
    }
}

/* Efeito de digitação nas descrições */
.notification-desc {
    animation: typing 3s steps(20) infinite;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #FF6B35;
    width: 0;
}

.notification-item:nth-child(1) .notification-desc {
    animation: typing 3s steps(20) infinite;
    animation-delay: 0.5s;
}

.notification-item:nth-child(2) .notification-desc {
    animation: typing 3s steps(16) infinite;
    animation-delay: 1s;
}

.notification-item:nth-child(3) .notification-desc {
    animation: typing 3s steps(18) infinite;
    animation-delay: 1.5s;
}

@keyframes typing {
    0% { width: 0; }
    50% { width: 100%; border-color: #FF6B35; }
    70% { width: 100%; border-color: transparent; }
    100% { width: 0; border-color: transparent; }
}

/* Efeito 3D no mockup */
@media (min-width: 1024px) {
    .mockup-phone {
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
        animation: floatPhone3D 5s ease-in-out infinite;
    }
    
    @keyframes floatPhone3D {
        0%, 100% {
            transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(0);
        }
        50% {
            transform: perspective(1000px) rotateY(-5deg) rotateX(8deg) translateY(-20px);
        }
    }
}

/* Partículas ao redor do celular */
.hero-visual {
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: particles 10s linear infinite;
    pointer-events: none;
}

@keyframes particles {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== CORREÇÕES DO FORMULÁRIO LONGO PARA MOBILE ===== */
@media (max-width: 768px) {
    /* Container principal do formulário */
    .form-criativo {
        padding: 24px 16px !important;
        margin: 0 12px !important;
        width: auto !important;
        border-radius: 28px !important;
    }
    
    /* Header do formulário */
    .form-header {
        margin-bottom: 24px !important;
    }
    
    .form-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
        padding: 0 4px !important;
    }
    
    .form-subtitle {
        font-size: 14px !important;
        padding: 0 8px !important;
    }
    
    /* Grid do formulário */
    .form-grid {
        gap: 16px !important;
        margin: 0 !important;
    }
    
    /* Grupos de campos */
    .form-group {
        margin-bottom: 0 !important;
        padding: 0 !important;
    }
    
    .form-group.full-width {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Labels */
    .form-label {
        font-size: 13px !important;
        margin-bottom: 6px !important;
        margin-left: 4px !important;
    }
    
    /* Inputs e selects */
    .form-input,
    .form-select {
        padding: 14px 16px !important;
        font-size: 15px !important;
        border-radius: 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Range slider container */
    .form-range-container {
        padding: 16px !important;
        margin: 4px 0 !important;
    }
    
    .form-range-value {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        margin-bottom: 16px !important;
    }
    
    .form-range-highlight {
        padding: 6px 16px !important;
        font-size: 14px !important;
        align-self: flex-start !important;
    }
    
    .form-range-labels {
        margin-top: 12px !important;
        padding: 0 4px !important;
    }
    
    .form-range-labels span {
        font-size: 10px !important;
    }
    
    /* Checkbox group */
    .form-checkbox-group {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-top: 8px !important;
    }
    
    .form-checkbox {
        padding: 12px 14px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .checkbox-label {
        font-size: 13px !important;
    }
    
    /* Botão submit */
    .form-submit {
        padding: 16px 20px !important;
        font-size: 16px !important;
        margin-top: 24px !important;
        border-radius: 30px !important;
        width: 100% !important;
    }
    
    /* Segurança */
    .form-security {
        flex-wrap: wrap !important;
        gap: 8px !important;
        margin-top: 16px !important;
        font-size: 11px !important;
        padding: 0 8px !important;
        text-align: center !important;
    }
}

/* Ajustes específicos para iPhone SE e telas muito pequenas */
@media (max-width: 375px) {
    .form-criativo {
        padding: 20px 12px !important;
        margin: 0 8px !important;
        border-radius: 24px !important;
    }
    
    .form-title {
        font-size: 22px !important;
    }
    
    .form-subtitle {
        font-size: 13px !important;
    }
    
    .form-input,
    .form-select {
        padding: 12px 14px !important;
        font-size: 14px !important;
    }
    
    .form-range-container {
        padding: 14px !important;
    }
    
    .form-checkbox {
        padding: 10px 12px !important;
    }
    
    .checkbox-label {
        font-size: 12px !important;
    }
    
    .form-submit {
        padding: 14px 18px !important;
        font-size: 15px !important;
    }
}

/* Garantir que nada ultrapasse a tela */
.form-group,
.form-input,
.form-select,
.form-checkbox,
.form-range-container {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Ajuste para o container principal */
.container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100% !important;
    overflow-x: hidden !important;
}

/* Ajuste para a seção de contato */
#contato {
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: hidden !important;
}

/* ===== CORREÇÃO COMPLETA DO FORMULÁRIO LONGO ===== */
/* Aplica a TODOS os elementos do formulário */

/* Container principal da seção */
#contato {
    overflow-x: hidden !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
}

/* Wrapper do formulário */
.form-criativo {
    width: calc(100% - 32px) !important; /* 16px de cada lado */
    max-width: 500px !important;
    margin: 0 auto !important;
    padding: 32px 20px !important;
    box-sizing: border-box !important;
    border-radius: 32px !important;
}

@media (max-width: 768px) {
    .form-criativo {
        width: calc(100% - 24px) !important; /* 12px de cada lado */
        padding: 24px 16px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 375px) {
    .form-criativo {
        width: calc(100% - 16px) !important; /* 8px de cada lado */
        padding: 20px 12px !important;
    }
}

/* Header do formulário */
.form-header {
    text-align: center !important;
    margin-bottom: 28px !important;
    width: 100% !important;
}

.form-title {
    font-size: 28px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
    word-wrap: break-word !important;
    padding: 0 !important;
}

@media (max-width: 375px) {
    .form-title {
        font-size: 24px !important;
    }
}

.form-subtitle {
    font-size: 15px !important;
    line-height: 1.5 !important;
    padding: 0 !important;
    max-width: 100% !important;
}

/* Grid do formulário - CORREÇÃO CRÍTICA */
.form-grid {
    display: grid !important;
    grid-template-columns: 1fr !important; /* Uma coluna no mobile */
    gap: 20px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* Para telas maiores */
@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }
}

/* Todos os grupos de campo */
.form-group {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* Campos de largura total */
.form-group.full-width {
    grid-column: 1 / -1 !important;
    width: 100% !important;
}

/* Labels */
.form-label {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding-left: 4px !important;
}

@media (max-width: 375px) {
    .form-label {
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }
}

/* Inputs e selects - CORREÇÃO CRÍTICA */
.form-input,
.form-select {
    width: 100% !important;
    padding: 16px 18px !important;
    font-size: 15px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(255, 107, 53, 0.2) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

@media (max-width: 375px) {
    .form-input,
    .form-select {
        padding: 14px 16px !important;
        font-size: 14px !important;
        border-radius: 16px !important;
    }
}

/* Select com seta personalizada */
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FF6B35' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 16px !important;
    padding-right: 45px !important;
}

/* Range slider container */
.form-range-container {
    width: 100% !important;
    padding: 20px 18px !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 107, 53, 0.2) !important;
    box-sizing: border-box !important;
}

@media (max-width: 375px) {
    .form-range-container {
        padding: 16px 14px !important;
    }
}

/* Valor do range */
.form-range-value {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 16px !important;
    font-size: 14px !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

@media (max-width: 480px) {
    .form-range-value {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}

.form-range-highlight {
    background: linear-gradient(135deg, #FF6B35, #FF8A5C) !important;
    padding: 8px 20px !important;
    border-radius: 30px !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    white-space: nowrap !important;
}

/* Input range */
.form-range {
    width: 100% !important;
    height: 6px !important;
    -webkit-appearance: none !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 3px !important;
    outline: none !important;
    margin: 10px 0 !important;
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    width: 22px !important;
    height: 22px !important;
    background: #FF6B35 !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    box-shadow: 0 0 10px #FF6B35 !important;
}

/* Labels do range */
.form-range-labels {
    display: flex !important;
    justify-content: space-between !important;
    margin-top: 12px !important;
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    width: 100% !important;
    padding: 0 4px !important;
    box-sizing: border-box !important;
}

/* Checkbox group - CORREÇÃO CRÍTICA */
.form-checkbox-group {
    display: grid !important;
    grid-template-columns: 1fr !important; /* Uma coluna no mobile */
    gap: 12px !important;
    margin-top: 8px !important;
    width: 100% !important;
}

@media (min-width: 480px) {
    .form-checkbox-group {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

/* Cada checkbox */
.form-checkbox {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    cursor: pointer !important;
    padding: 14px 16px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 107, 53, 0.2) !important;
    border-radius: 16px !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

@media (max-width: 375px) {
    .form-checkbox {
        padding: 12px 14px !important;
    }
}

.form-checkbox:hover {
    background: rgba(255, 107, 53, 0.1) !important;
    border-color: #FF6B35 !important;
}

/* Checkbox custom */
.checkbox-custom {
    width: 20px !important;
    height: 20px !important;
    border: 2px solid rgba(255, 107, 53, 0.3) !important;
    border-radius: 6px !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
}

.form-checkbox input:checked + .checkbox-custom {
    background: #FF6B35 !important;
    border-color: #FF6B35 !important;
}

.form-checkbox input:checked + .checkbox-custom::after {
    content: '\f00c' !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: white !important;
    font-size: 12px !important;
}

/* Label do checkbox */
.checkbox-label {
    font-size: 14px !important;
    color: white !important;
    line-height: 1.4 !important;
    flex: 1 !important;
}

@media (max-width: 375px) {
    .checkbox-label {
        font-size: 13px !important;
    }
}

/* Botão submit */
.form-submit {
    width: 100% !important;
    padding: 18px 24px !important;
    background: linear-gradient(135deg, #FF6B35, #FF4D00) !important;
    border: none !important;
    border-radius: 40px !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 17px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    box-sizing: border-box !important;
}

@media (max-width: 375px) {
    .form-submit {
        padding: 16px 20px !important;
        font-size: 16px !important;
        margin-top: 24px !important;
    }
}

/* Segurança */
.form-security {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-top: 20px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 12px !important;
    flex-wrap: wrap !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.form-security i {
    color: #FF6B35 !important;
}

@media (max-width: 375px) {
    .form-security {
        font-size: 11px !important;
        gap: 8px !important;
    }
}

/* Garantir que nada vaze */
.form-group,
.form-input,
.form-select,
.form-checkbox,
.form-range-container,
.form-submit {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Ajuste para o select no mobile */
@media (max-width: 768px) {
    select.form-select {
        font-size: 16px !important; /* Evita zoom automático no iOS */
    }
}

/* Espaçamento extra no final */
#contato {
    padding-bottom: 40px !important;
}

/* ===== CORREÇÕES ESPECÍFICAS PARA ANDROID/SAMSUNG ===== */
/* Samsung S23 e similares - resolução aproximada 360px - 400px */

/* Detecção específica para Android */
@media screen and (min-width: 360px) and (max-width: 400px) {
    
    /* Ajustes gerais do container */
    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
        width: 100% !important;
    }
    
    /* ===== FORMULÁRIO ===== */
    .form-criativo {
        padding: 20px 14px !important;
        margin: 0 8px !important;
        width: calc(100% - 16px) !important;
        border-radius: 24px !important;
    }
    
    .form-title {
        font-size: 22px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }
    
    .form-subtitle {
        font-size: 13px !important;
        line-height: 1.4 !important;
        padding: 0 5px !important;
    }
    
    /* Inputs e selects */
    .form-input,
    .form-select {
        padding: 14px 14px !important;
        font-size: 15px !important;
        border-radius: 16px !important;
        height: 52px !important; /* Altura consistente */
    }
    
    /* Select no Android - corrigir seta */
    .form-select {
        background-position: right 12px center !important;
        padding-right: 40px !important;
        font-size: 15px !important;
    }
    
    /* Labels */
    .form-label {
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }
    
    .form-label i {
        font-size: 14px !important;
    }
    
    /* Range slider */
    .form-range-container {
        padding: 16px 12px !important;
    }
    
    .form-range-value {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    
    .form-range-highlight {
        padding: 6px 16px !important;
        font-size: 14px !important;
    }
    
    .form-range-labels span {
        font-size: 10px !important;
    }
    
    /* Checkbox group - FORÇAR 1 COLUNA */
    .form-checkbox-group {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    
    .form-checkbox {
        padding: 12px 14px !important;
        min-height: 52px !important; /* Altura mínima para toque */
    }
    
    .checkbox-label {
        font-size: 14px !important;
        line-height: 1.3 !important;
    }
    
    .checkbox-custom {
        width: 22px !important;
        height: 22px !important;
        flex-shrink: 0 !important;
    }
    
    /* Botão submit */
    .form-submit {
        padding: 16px 20px !important;
        font-size: 16px !important;
        height: 56px !important; /* Altura ideal para toque */
        margin-top: 24px !important;
    }
    
    .form-submit i {
        font-size: 18px !important;
    }
    
    /* Segurança */
    .form-security {
        font-size: 11px !important;
        gap: 6px !important;
        margin-top: 16px !important;
        flex-wrap: wrap !important;
    }
    
    /* ===== HERO SECTION ===== */
    .hero-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    
    .hero-text {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }
    
    /* Botões */
    .btn-large {
        padding: 14px 20px !important;
        font-size: 15px !important;
        min-width: 160px !important;
    }
    
    .btn-xlarge {
        padding: 16px 24px !important;
        font-size: 16px !important;
        min-width: 200px !important;
        width: 100% !important;
        max-width: 280px !important;
    }
    
    /* ===== CARDS ===== */
    .card {
        padding: 20px 16px !important;
    }
    
    .card h3 {
        font-size: 18px !important;
    }
    
    .card p {
        font-size: 14px !important;
    }
    
    .card-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 22px !important;
    }
    
    /* ===== TIMELINE ===== */
    .timeline-item {
        gap: 12px !important;
    }
    
    .timeline-number {
        width: 44px !important;
        height: 44px !important;
        font-size: 18px !important;
    }
    
    .timeline-content {
        padding: 18px !important;
    }
    
    .timeline-content h3 {
        font-size: 18px !important;
    }
    
    .timeline-content p {
        font-size: 14px !important;
    }
    
    .timeline-features li {
        font-size: 12px !important;
        padding: 4px 8px !important;
    }
    
    /* ===== CASES ===== */
    .case-card {
        padding: 20px 16px !important;
    }
    
    .case-card h3 {
        font-size: 18px !important;
    }
    
    .result-number {
        font-size: 26px !important;
    }
    
    .case-quote p {
        font-size: 13px !important;
    }
    
    /* ===== MÉTRICAS ===== */
    .metric-card {
        padding: 12px !important;
    }
    
    .metric-card i {
        font-size: 22px !important;
    }
    
    .metric-card strong {
        font-size: 16px !important;
    }
    
    .metric-card span {
        font-size: 10px !important;
    }
    
    /* ===== DEPOIMENTOS ===== */
    .depo-card {
        padding: 20px 16px !important;
    }
    
    .depo-text {
        font-size: 14px !important;
    }
    
    .author-initials {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
    
    /* ===== TRUST BAR ===== */
    .trust-bar {
        padding: 16px !important;
        gap: 12px !important;
    }
    
    .trust-item {
        font-size: 13px !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* ===== FAQ ===== */
    .faq-question {
        padding: 16px !important;
        font-size: 15px !important;
    }
    
    .faq-answer p {
        font-size: 14px !important;
        padding: 0 16px 16px !important;
    }
    
    /* ===== CTA FINAL ===== */
    .cta-title {
        font-size: 26px !important;
    }
    
    .cta-text {
        font-size: 15px !important;
    }
    
    .cta-badge {
        padding: 6px 16px !important;
        font-size: 12px !important;
    }
    
    /* ===== FOOTER ===== */
    .footer-grid {
        gap: 24px !important;
    }
    
    .footer-links h4 {
        font-size: 16px !important;
    }
    
    .footer-links a {
        font-size: 13px !important;
        padding: 5px 0 !important;
    }
    
    .social-links a {
        width: 38px !important;
        height: 38px !important;
        font-size: 18px !important;
    }
    
    .footer-bottom {
        font-size: 11px !important;
        gap: 8px !important;
    }
}

/* ===== CORREÇÕES PARA TELAS MÉDIAS (Samsung A series, etc) ===== */
@media screen and (min-width: 401px) and (max-width: 450px) {
    
    .form-criativo {
        padding: 24px 16px !important;
        margin: 0 10px !important;
    }
    
    .form-checkbox-group {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .form-checkbox {
        padding: 12px 12px !important;
    }
    
    .checkbox-label {
        font-size: 13px !important;
    }
    
    .form-range-value {
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }
}

/* ===== AJUSTES DE TOQUE PARA ANDROID ===== */
/* Aumentar área de clique em elementos interativos */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .form-checkbox,
    .nav-link-mobile,
    .footer-links a,
    .social-links a {
        min-height: 44px !important; /* Altura mínima recomendada pela Google */
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }
    
    .faq-question {
        min-height: 56px !important;
    }
    
    /* Espaçamento entre elementos clicáveis */
    .nav-list-mobile li {
        margin-bottom: 16px !important;
    }
    
    .footer-links li {
        margin-bottom: 12px !important;
    }
}

<script>
(function() {
    // Detectar Android
    var isAndroid = /Android/i.test(navigator.userAgent);
    var isChrome = /Chrome/i.test(navigator.userAgent);
    var isSamsung = /Samsung/i.test(navigator.userAgent) || /SM-/i.test(navigator.userAgent);
    
    if (isAndroid || isSamsung) {
        document.documentElement.classList.add('android-device');
        
        // Correções específicas
        var style = document.createElement('style');
        style.innerHTML = `
            .android-device .form-input,
            .android-device .form-select {
                font-size: 16px !important;
                line-height: 1.4 !important;
            }
            
            .android-device .form-checkbox {
                min-height: 56px !important;
            }
            
            .android-device .btn {
                min-height: 48px !important;
                padding-top: 12px !important;
                padding-bottom: 12px !important;
            }
            
            .android-device .form-criativo {
                padding: 20px 12px !important;
            }
        `;
        document.head.appendChild(style);
        
        // Log para debug
        console.log('📱 Modo Android ativado');
    }
})();
</script>

/* ===== CORREÇÃO DA LARGURA DO FORMULÁRIO ===== */
@media screen and (max-width: 480px) {
    /* Reduzir a largura do container do formulário */
    .form-criativo {
        width: calc(100% - 32px) !important; /* 16px de cada lado */
        max-width: 400px !important; /* Largura máxima reduzida */
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 24px 16px !important;
    }
    
    /* Para telas muito pequenas */
    @media screen and (max-width: 380px) {
        .form-criativo {
            width: calc(100% - 24px) !important; /* 12px de cada lado */
            padding: 20px 12px !important;
        }
    }
}

/* ===== CORREÇÃO ESPECÍFICA SAMSUNG S23 ===== */
@media screen and (min-width: 360px) and (max-width: 390px) {
    
    /* Container principal do formulário - REDUZIDO */
    .form-criativo {
        width: calc(100% - 40px) !important; /* 20px de cada lado */
        max-width: 320px !important; /* Largura fixa reduzida */
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 20px 12px !important;
        border-radius: 24px !important;
    }
    
    /* Forçar o container pai a centralizar */
    .container {
        display: flex !important;
        justify-content: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Opção alternativa caso o container seja outro */
    #contato .container {
        display: flex !important;
        justify-content: center !important;
    }
    
    /* Ajuste fino do conteúdo interno */
    .form-grid {
        gap: 12px !important;
    }
    
    .form-title {
        font-size: 22px !important;
    }
}