* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', sans-serif;/* -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
    background: #ffffff;
    color: #2d3748;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Ícones SVG */
.icon {
    width: 48px;
    height: 48px;
    display: inline-block;
}

.icon-small {
    width: 24px;
    height: 24px;
    display: inline-block;
}

/* Navegação */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0;
    background: #ffffff;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
    padding: 16px 24px;
}

.logo {
    /*font-size: 24px;
            font-weight: 700;
            color: #b205d6;
            text-decoration: none;
            letter-spacing: -0.5px;*/
    height: 48px;
    width: 48px;
}

.logo_footer>img{
    max-width: 248px;
}

.time-warning{
    margin-bottom: 13px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #b205d6;
}

.nav-cta {
    background: #b205d6;
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: #9a04b8;
    color: white !important;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 120px 24px 80px;
    background: #ffffff;
    text-align: center;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(178, 5, 214, 0.1);
    color: #b205d6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(178, 5, 214, 0.2);
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero .highlight {
    color: #b205d6;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.5;
}

.hero-cta {
    display: inline-block;
    background: #b205d6;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(178, 5, 214, 0.2);
}

.hero-cta:hover {
    background: #9a04b8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(178, 5, 214, 0.3);
}

.hero-note {
    margin-top: 16px;
    font-size: 14px;
    color: #718096;
}

.hero-pricing {
    margin-top: 24px;
    font-size: 18px;
    color: #1a202c;
    font-weight: 600;
}

.hero-price  {
    font-size: 24px;
}

.price{
    color: #b205d6;
    font-size: 24px;
}

/* Depoimentos */
.testimonials {
    padding: 80px 24px;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #b205d6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
    font-style: italic;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: #1a202c;
}

/* FAQ Section */
.faq {
    padding: 80px 24px;
    background: white;
}

.faq-grid {
    display: grid;
    gap: 20px;
    margin-top: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: #f8fafc;
    padding: 20px 24px;
    font-weight: 600;
    color: #1a202c;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-answer {
    padding: 20px 24px;
    color: #4a5568;
    line-height: 1.6;
    border-top: 1px solid #e2e8f0;
}

/* Como Funciona */
.how-it-works {
    padding: 80px 24px;
    background: #f8fafc;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: #4a5568;
    font-weight: 400;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 64px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #b205d6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
    position: relative;
}

.step:not(:last-child) .step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 100px;
    height: 2px;
    background: #e2e8f0;
    transform: translateY(-50%);
    z-index: -1;
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.step p {
    color: #4a5568;
    line-height: 1.6;
}

/* Serviços */
.services {
    padding: 80px 24px;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.2s ease;
    text-align: center;
}

.service-card:hover {
    border-color: #b205d6;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(178, 5, 214, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    fill: #b205d6;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    color: #4a5568;
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    background: #b205d6;
    border-radius: 50%;
    transform: scale(0.5);
}

/* Planos de Pagamento */
.payment-plans {
    padding: 80px 24px;
    background: #f8fafc;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.2s ease;
}

.plan-card:hover {
    border-color: #b205d6;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.plan-card.featured {
    border-color: #b205d6;
    position: relative;
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #b205d6;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.plan-description {
    color: #4a5568;
    margin-bottom: 24px;
}

.plan-price {
    font-size: 36px;
    font-weight: 700;
    color: #b205d6;
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    color: #4a5568;
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

/* .plan-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    background: #10b981;
    border-radius: 50%;
    transform: scale(0.5);
} */

/* Por que escolher */
.why-choose {
    padding: 80px 24px;
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.benefit-card {
    text-align: center;
    padding: 24px;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(178, 5, 214, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    fill: #b205d6;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 24px;
    background: #1a202c;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: #cbd5e0;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background: #b205d6;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #9a04b8;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #2d3748;
    color: #cbd5e0;
    padding: 48px 24px 24px;
}

.footer-content {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-brand h3 {
    color: #b205d6;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-brand p {
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-section h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #b205d6;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
    font-size: 14px;
}

/* Estilos da Nova Seção de Formulário */
.contact-form-section {
    padding: 80px 24px;
    background: #f8fafc;
    /* Mesmo fundo de outras seções */
}

.lead-form-container {
    max-width: 700px;
    margin: 48px auto 0;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}
/* Inicio Form*/
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: #2d3748;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder {
    color: #a0aec0;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #b205d6;
    box-shadow: 0 0 0 3px rgba(178, 5, 214, 0.15);
}

.form-submit-btn {
    display: block;
    width: 100%;
    background: #b205d6;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(178, 5, 214, 0.2);
}

.form-submit-btn:hover {
    background: #9a04b8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(178, 5, 214, 0.3);
}

.sendPaper {
    margin-left: 5px;
    vertical-align: middle;
}

/* style.css (código geral) */

/* Estilo do botão hamburger */
.hamburger-menu {
    display: none;
    /* Escondido por padrão em telas grandes */
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
    /* Garante que fique acima de outros elementos */
}

.hamburger-icon {
    color: #2d3748;
    /* Cor escura para o ícone */
}

.footer_margin{
    padding-left: 15px;
    margin-top: 15px;
}

/* Leads Management */

.lead-management-minimal {
    padding: 80px 24px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.lead-management-minimal .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -0.5px;
}

.lead-management-minimal .section-subtitle {
    font-size: 18px;
    color: #4a5568;
    font-weight: 400;
    text-align: center;
    margin-bottom: 64px;
}

.minimal-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.problem-statement {
    margin-bottom: 48px;
}

.problem-statement p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 16px;
}

.highlight-text {
    color: #b205d6;
    font-size: 20px;
}

.solution-simple {
    margin-bottom: 48px;
    padding: 32px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.solution-simple h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 24px;
}

.steps-minimal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-weight: 500;
    color: #2d3748;
}

.steps-minimal span:nth-child(odd) {
    background: #f8fafc;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.steps-minimal span:nth-child(even) {
    color: #b205d6;
    font-size: 18px;
}

.result-text {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.cta-minimal {
    padding-top: 32px;
}

.urgency-simple {
    font-size: 18px;
    color: #1a202c;
    margin-bottom: 24px;
}

.minimal-cta {
    display: inline-block;
    background: #b205d6;
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
}

.minimal-cta:hover {
    background: #9a04b8;
    transform: translateY(-1px);
}

/* Responsividade */
@media (max-width: 768px) {
    .lead-management-minimal .section-title {
        font-size: 28px;
    }
    
    .steps-minimal {
        flex-direction: column;
        gap: 8px;
    }
    
    .steps-minimal span:nth-child(even) {
        transform: rotate(90deg);
    }
    
    .problem-statement p,
    .result-text {
        font-size: 16px;
    }
    
    .highlight-text {
        font-size: 18px;
    }
}


/* Leads Management */



/* Responsividade */
@media (max-width: 768px) {
    /* style.css (dentro da media query) */

    @media (max-width: 768px) {
        /* Mostra o botão hamburger em telas menores */
        .hamburger-menu {
            display: block;
        }

        /* VERSÃO NOVA - Com transição */

        /* Estilo do menu mobile (quando fechado) */
        .nav-links {
            /* Mantenha o flexbox para o layout interno funcionar */
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 73px;
            left: 0;
            width: 100%;
            background-color: #ffffff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 16px 0;

            /* --- MÁGICA DA TRANSIÇÃO (ESTADO INICIAL) --- */
            opacity: 0;
            /* Começa totalmente transparente */
            transform: translateY(-10px);
            /* Começa 10px para cima */
            visibility: hidden;
            /* Totalmente escondido e não clicável */
            transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0.3s;
            /* Define a animação */
        }

        /* Classe 'active' que será adicionada via JS para mostrar o menu */
        .nav-links.active {
            /* --- MÁGICA DA TRANSIÇÃO (ESTADO FINAL) --- */
            opacity: 1;
            /* Fica totalmente visível */
            transform: translateY(0);
            /* Volta para sua posição original */
            visibility: visible;
            /* Torna-se visível e clicável */
        }

        .nav-links li {
            text-align: center;
            width: 100%;
        }

        .nav-links a {
            padding: 16px;
            display: block;
            width: 100%;
        }

        /* Ajusta o botão CTA para o menu mobile */
        .nav-links .nav-cta {
            margin: 16px 24px 0;
        }

        /* ... O resto das suas regras para 768px continuam aqui ... */
        .hero h1 {
            font-size: 36px;
        }

        .hero-subtitle {
            font-size: 18px;
        }

        .steps {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .step:not(:last-child) .step-number::after {
            display: none;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .plans-grid {
            grid-template-columns: 1fr;
        }

        .benefits-grid {
            grid-template-columns: 1fr;
        }

        .footer-content {
            grid-template-columns: 1fr;
            gap: 32px;
            text-align: center;
        }
    }
}

/* ============================================= */
/* Estilos para Páginas Internas (Multi-page)    */
/* ============================================= */

.page-section {
    padding: 120px 24px 80px; /* Adiciona padding no topo para compensar o menu fixo */
    background: #ffffff;
}

.page-content {
    max-width: 800px;
    margin: 48px auto 0;
    text-align: left;
    color: #4a5568;
}

.page-content h1,
.page-content h2,
.page-content h3 {
    color: #1a202c;
    margin-top: 2.5em;
    margin-bottom: 1em;
    font-weight: 700;
}

.page-content h1 {
    font-size: 36px;
}

.page-content h2 {
    font-size: 24px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5em;
}

.page-content h3 {
    font-size: 20px;
}

.page-content p {
    margin-bottom: 1em;
    line-height: 1.7;
}

.page-content ul {
    list-style-position: inside;
    margin-left: 20px;
    margin-bottom: 1em;
}

.page-content ul li {
    margin-bottom: 0.5em;
    line-height: 1.7;
}

.page-content a {
    color: #b205d6;
    text-decoration: none;
    font-weight: 500;
}

.page-content a:hover {
    text-decoration: underline;
}
