/* ========================================
   RESET E VARIÁVEIS
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --preto: #000000;
    --branco: #FFFFFF;
    --amarelo: #F8D548;
    --cinza-claro: #F5F5F5;
    --cinza-medio: #666666;
    --cinza-escuro: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--cinza-escuro);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER
======================================== */
.header {
    background: var(--preto);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--branco);
    letter-spacing: -0.5px;
}

.btn-header {
    background: var(--amarelo);
    color: var(--preto);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(248, 213, 72, 0.4);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    background: linear-gradient(135deg, var(--preto) 0%, var(--cinza-escuro) 100%);
    padding: 140px 0 80px;
    margin-top: 80px;
    color: var(--branco);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(248, 213, 72, 0.2);
    color: var(--amarelo);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.highlight {
    color: var(--amarelo);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.hero-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(248, 213, 72, 0.15);
    padding: 16px 20px;
    border-radius: 12px;
    border-left: 4px solid var(--amarelo);
    margin-bottom: 32px;
    font-weight: 600;
}

.hero-highlight svg {
    color: var(--amarelo);
    flex-shrink: 0;
}

.btn-cta {
    background: var(--amarelo);
    color: var(--preto);
    border: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(248, 213, 72, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(248, 213, 72, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-placeholder {
    width: 100%;
    max-width: 400px;
}

.mockup-placeholder img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.mockup-fallback {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    font-size: 48px;
}

/* ========================================
   BENEFÍCIOS
======================================== */
.beneficios {
    padding: 100px 0;
    background: var(--branco);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--preto);
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--cinza-medio);
    margin-bottom: 60px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.beneficio-card {
    background: var(--branco);
    padding: 40px 30px;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

.beneficio-card:hover {
    border-color: var(--amarelo);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.beneficio-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.beneficio-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--preto);
}

.beneficio-card p {
    color: var(--cinza-medio);
    font-size: 16px;
    line-height: 1.6;
}

/* ========================================
   COMO FUNCIONA
======================================== */
.como-funciona {
    padding: 100px 0;
    background: var(--cinza-claro);
}

.passos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.passo {
    position: relative;
    padding: 30px;
    background: var(--branco);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.passo-numero {
    width: 60px;
    height: 60px;
    background: var(--amarelo);
    color: var(--preto);
    font-size: 28px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.passo h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--preto);
}

.passo p {
    color: var(--cinza-medio);
    font-size: 15px;
}

/* ========================================
   DEPOIMENTOS
======================================== */
.depoimentos {
    padding: 100px 0;
    background: var(--branco);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.depoimento-card {
    background: var(--cinza-claro);
    padding: 40px 30px;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.depoimento-card.featured {
    background: var(--preto);
    color: var(--branco);
}

.aspas {
    font-size: 60px;
    line-height: 1;
    color: var(--amarelo);
    margin-bottom: 20px;
}

.depoimento-texto {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.depoimento-card.featured .depoimento-texto {
    color: rgba(255, 255, 255, 0.9);
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 16px;
}

.autor-avatar {
    width: 50px;
    height: 50px;
    background: var(--amarelo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.depoimento-card.featured .autor-avatar {
    background: rgba(248, 213, 72, 0.2);
}

.depoimento-autor strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.depoimento-autor span {
    display: block;
    font-size: 14px;
    color: var(--cinza-medio);
}

.depoimento-card.featured .depoimento-autor span {
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   PLANOS
======================================== */
.planos {
    padding: 100px 0;
    background: var(--cinza-claro);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.plano-card {
    background: var(--branco);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    position: relative;
}

.plano-card.destaque {
    border-color: var(--amarelo);
    box-shadow: 0 10px 40px rgba(248, 213, 72, 0.2);
    transform: scale(1.02);
}

.plano-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--amarelo);
    color: var(--preto);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.plano-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.plano-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--preto);
}

.plano-card ul {
    list-style: none;
}

.plano-card li {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.plano-card li:last-child {
    border-bottom: none;
}

.transparencia-box {
    background: var(--preto);
    color: var(--branco);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.transparencia-box h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.transparencia-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   FORMULÁRIO
======================================== */
.formulario {
    padding: 100px 0;
    background: var(--branco);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--cinza-claro);
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--preto);
}

.form-header p {
    font-size: 16px;
    color: var(--cinza-medio);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--preto);
}

.form-group input,
.form-group select {
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    background: var(--branco);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--amarelo);
    box-shadow: 0 0 0 3px rgba(248, 213, 72, 0.1);
}

.btn-submit {
    background: var(--preto);
    color: var(--branco);
    border: none;
    padding: 20px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--branco);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--cinza-medio);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 60px 40px;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 24px;
}

.success-message h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--preto);
}

.success-message p {
    font-size: 18px;
    color: var(--cinza-medio);
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-secondary {
    background: transparent;
    color: var(--preto);
    border: 2px solid var(--preto);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--preto);
    color: var(--branco);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   FAQ
======================================== */
.faq {
    padding: 100px 0;
    background: var(--branco);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cinza-claro);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 30px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: var(--preto);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.03);
}

.faq-question svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 30px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--cinza-medio);
}

/* ========================================
   CTA FINAL
======================================== */
.cta-final {
    padding: 100px 0;
    background: var(--preto);
    color: var(--branco);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.btn-cta-white {
    background: var(--branco);
    color: var(--preto);
    border: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--preto);
    color: var(--branco);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
    text-decoration: none;
    display: block;
}

.footer-section a:hover {
    color: var(--amarelo);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ========================================
   RESPONSIVIDADE
======================================== */
@media (max-width: 1024px) {
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .passos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .beneficios-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .passos-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: 40px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .planos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .btn-header {
        font-size: 12px;
        padding: 10px 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
}

