:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --dark: #0f172a;
    --accent: #3b82f6;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --transition: all 0.25s ease-in-out;
}

/* --- Reset & Básico --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px;
}

.text-center {
    text-align: center;
}

/* --- Header --- */
header {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f1f5f9;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* --- Botões --- */
.btn-main {
    background: var(--primary);
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 20px;
}

.btn-main:hover {
    background: var(--dark);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.btn-secondary-outline {
    border: 2px solid white;
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 20px;
    margin-bottom: 20px;
}

.btn-secondary-outline:hover {
    background: white;
    color: var(--dark);
}

.btn-nav {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--primary);
    color: white;
}

.btn-text {
    display: inline-block;
    margin-top: 30px;       /* Espaço acima do botão */
    padding: 12px 24px;     /* Pequeno padding interno */
    font-size: 1rem;        /* Fonte discreta, menor que btn-main */
    font-weight: 600;       /* Médio destaque */
    color: var(--primary);  /* Cor azul do tema */
    text-decoration: none;  /* Remove underline */
    background-color: transparent; /* Transparente */
    transition: all 0.25s ease-in-out;
}

/* --- Hero Section --- */
.hero {
    padding: 150px 0;
    background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)),
                      url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 85vh;
    color: var(--white);
}

.hero .container {
    max-width: 900px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.highlight-blue {
    color: var(--primary);
}

.hero-subheadline {
    font-size: 1.6rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 20px;
}

.hero-support {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 45px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* --- Seções --- */
section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 0px;
    margin-bottom: 50px;
    text-align: center;
}

/* --- Grid Cards --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.sol-item,
.nicho-card,
.price-box {
    background: var(--white);
    padding: 45px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.sol-item:hover,
.nicho-card:hover {
    border-color: var(--primary);
    background-color: #fbfdff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.sol-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
    transition: var(--transition);
}

.sol-item:hover i {
    color: var(--dark);
    transform: scale(1.05);
}

/* --- Problem Card --- */
.problem-card {
    background: var(--dark);
    color: white;
    padding: 60px 40px;
    border-radius: 40px;
    transition: var(--transition);
}

.problem-card:hover {
    background: #161e2e;
}
.highlight-leads {
    color: #f97316; /* Laranja vibrante */
    font-size: 1.4rem; /* Aumenta o tamanho da fonte */
    font-weight: 700;  /* Opcional: deixa em negrito */
}

/* --- Step Flow --- */
.steps-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center; /* centraliza horizontalmente */
    text-align: center;  /* centraliza texto de múltiplas linhas */
}

.step span {
    width: 50px;
    height: 50px;
    background: #e2e8f0;
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 800;
    transition: var(--transition);
}

.step:hover span {
    background: var(--primary);
    color: white;
}

/* --- Pricing --- */
.price-box {
    background: var(--blight);
    max-width: 700px;
    margin: 40px auto;
    border: 2px solid transparent;
}

.price-box:hover {
    border-color: var(--primary);
    background: white;
}

/* --- Footer & CTA final --- */
.cta-final {
    padding: 120px 0;
    background: #f1f5f9;
}

footer {
    padding: 50px 0;
    border-top: 1px solid #f1f5f9;
    text-align: center;
    color: var(--text-muted);
}

/* --- Responsivo --- */
@media (max-width: 968px) {
    .grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        margin-top: 60px;
        margin-bottom: 30px;
        font-size: 2rem;
    }

    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subheadline {
        font-size: 1.4rem;
    }

    .hero-support {
        font-size: 1.1rem;
    }

    .hero-cta .btn-main,
    .hero-cta .btn-secondary-outline {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}


/* --- Benefits Section --- */
.benefits {
    padding: 100px 0; /* Mais espaço acima e abaixo */
    background-color: var(--bg-light);
}

.benefits .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px; /* Espaço entre texto e imagem */
    flex-wrap: wrap; /* Responsivo em telas menores */
}

.benefits-text {
    flex: 1 1 500px; /* O texto ocupa ao menos 500px */
}

.benefits-text h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--dark);
}

.benefits-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Lista sem bullets */
.benefits-text ul.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.benefits-text ul.benefit-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.benefits-text ul.benefit-list li i {
    margin-right: 12px;
    color: var(--primary);
}

/* Botão com mais respiro */
.benefits-text .btn-secondary {
    margin-top: 20px;
    padding: 16px 36px;
    font-size: 1.1rem;
}


/* Imagem alinhada à direita */
.benefits-image {
    flex: 1 1 400px;
    text-align: right;
}

.benefits-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Responsivo: empilha em telas pequenas */
@media (max-width: 968px) {
    .benefits .container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .benefits-image {
        text-align: center;
    }

    .benefits-text h2 {
        font-size: 2rem;
    }

    .benefits-text ul.benefit-list li {
        font-size: 1rem;
    }
}


/* --- Trust / Testimonials --- */
.trust {
    background-color: var(--bg-light);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonials .card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: var(--transition);
}

/* Barra superior para separação visual */
.testimonials .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    border-radius: 20px 20px 0 0;
}
.testimonials .card:hover {
    border-color: var(--primary);
    background-color: #fbfdff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.testimonials p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-main);
}

.testimonials cite {
    font-style: normal;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}


.pricing-section {
    background-color: var(--white);
    padding: 80px 0;
}

/* Ajustes no Card Principal */
.price-box.featured {
    background: var(--white);
    max-width: 900px; /* Mais largo para o layout horizontal */
    margin: 0 auto;
    border: 1px solid #e2e8f0;
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
}

.price-header {
    text-align: center;
    margin-bottom: 40px;
}

.price-header h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 10px;
}

/* Layout de Duas Colunas */
.price-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Features ganham mais espaço */
    gap: 40px;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 40px;
}

/* Coluna de Features */
.price-features {
    list-style: none;
    padding: 0;
}

.price-features li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: var(--text-main);
}

.price-features li i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Coluna de Preços */
.price-details {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    position: relative;
}

.price-main .label, .price-recurring .label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.price-main .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.price-main .amount small, .price-recurring .amount-sub small {
    font-size: 0.8rem;
    display: block;
    font-weight: 500;
    color: var(--text-muted);
}

.price-divider {
    height: 1px;
    background: #cbd5e1;
    margin: 20px 0;
}

.amount-sub {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main));
}

.optional-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--white);
    border: 1px solid #cbd5e1;
    padding: 2px 8px;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
}

/* Rodapé do Card */
.price-footer-action {
    text-align: center;
    margin-top: 40px;
}

.price-footer-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Responsividade */
@media (max-width: 850px) {
    .price-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .price-box.featured {
        padding: 30px;
    }
}

/* Seleciona o parágrafo específico dentro da coluna de features */
.price-column-features p {
    font-size: 1.05rem;       /* Mesma fonte definida no .price-features li */
    color: var(--text-main);  /* Mesma cor */
    margin-bottom: 18px;      /* Mesmo espaçamento entre os tópicos */
    line-height: 1.6;         /* Garante a mesma altura de linha */
    
    /* Alinhamento: 15px (margin do ícone) + 1.2rem (tamanho do ícone) */
    /* Isso faz o texto do P alinhar perfeitamente com o texto dos tópicos */
    padding-left: calc(15px + 1.2rem); 
}

/* Ajuste opcional: se quiser que o primeiro tópico não fique colado no P, 
   verifique se a margem do P é suficiente ou ajuste aqui */
.price-features {
    margin-top: 0;
}


.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--primary);
}

/* O "Botão" da pergunta */
summary {
    padding: 20px 25px;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    list-style: none; /* Remove a seta padrão */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

/* Adicionando um ícone de "+" manual */
summary::after {
    content: '+';
    color: var(--primary);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

/* Estilo quando aberto */
details[open] {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

details[open] summary {
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 10px;
}

details[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

/* Conteúdo da resposta */
.faq-content {
    padding: 0 25px 20px 25px;
    color: var(--text-main);
    line-height: 1.6;
}

.faq-content p {
    margin-bottom: 15px;
}

.faq-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-content li {
    margin-bottom: 8px;
}