/* Importação da fonte Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

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

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
    align-items: center;
}

/* -----------------------------
   Hero Section
   ----------------------------- */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('assets/bg.png') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 150px 20px;
}

.hero-logo {
    position: absolute;
    top: 140px;
    left: 70px;
    width: 350px;
    height: auto;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

.hero-content .tagline {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(to right, #8fc834, #f2ff00);
    color: #002C49;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-cta:hover {
    background: linear-gradient(to left, #8fc834, #f2ff00);
}

/* -----------------------------
   Seções e Títulos
   ----------------------------- */
section {
    padding: 80px 0;
    text-align: center;
}

section h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

/* -----------------------------
   Why Felipe Nilo Section
   ----------------------------- */
.why-fn-section

{
    background-color: #f9f9f9;
}
.models-section

{
    background-color: #12579432;
}

.cta-section,

.felipe-section {
    background-color: #f9f9f9;
}

.support-section {
    background-color: #12579432;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}



.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

/* -----------------------------
   Estilo Comum dos Cards
   (Aplicado a .benefit-card e .model-card)
   ----------------------------- */
.benefit-card  {
    padding: 40px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #12579432;
}

.model-card {
    padding: 40px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #f9f9f9;
}

.benefit-card:hover,
.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-card {
    border: 2px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.model-card {
    border: 2px solid #f9f9f9;
}

.benefit-card h3 {
    color: #002C49;
}

/* -----------------------------
   Suporte Section
   ----------------------------- */
.support-item {
    text-align: center;
}

.support-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

/* -----------------------------
   Models Section
   ----------------------------- */
.models-section .models-grid {
    text-align: left;
}

.model-card h3 {
    text-align: center;
    color: #06587d;
    font-size: 1.8rem;
}

.investment-value {
    text-align: center;
    margin: 20px 0;
}

.investment-value .label {
    font-size: 1.1rem;
    color: #777;
}

.investment-value .value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.details-list {
    list-style: none;
    margin-bottom: 30px;
}

.details-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.btn-model-cta {
    display: block;
    text-align: center;
    background-color: #002C49;
    color: #fff;
    padding: 15px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-model-cta:hover {
    background-color: #0463a2;
}

/* -----------------------------
   CTA Section
   ----------------------------- */
.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
}

#leadForm {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(to right, #8fc834, #f2ff00);
    color: #002C49;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: linear-gradient(to left, #8fc834, #f2ff00);
}

/* -----------------------------
   Felipe Nilo Section
   ----------------------------- */
.felipe-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.felipe-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #125794;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.felipe-text h2 {
    color: #125794;
    font-size: 2.2em;
    margin-top: 0;
    margin-bottom: 20px;
}

.felipe-text p {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 15px;
}

/* -----------------------------
   Footer
   ----------------------------- */
.footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #333;
    color: #fff;
    font-size: 0.9rem;
}

/* -----------------------------
   Responsividade
   ----------------------------- */

/* Estilos para Mobile */
@media (max-width: 767px) {
    section {
        padding: 40px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-logo {
        width: 100px;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .tagline {
        font-size: 1rem;
    }

    .benefits-grid,
    .support-grid,
    .models-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card,
    .model-card {
        padding: 25px;
    }

    .felipe-content {
        flex-direction: column;
        text-align: center;
    }

    .felipe-img {
        width: 200px;
        height: 200px;
    }
}

/* Estilos para Desktop */
@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero-logo {
        width: 350px;
        top: 140px;
        left: 70px;
        transform: none;
    }

    .benefits-grid,
    .models-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .support-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
    }

    .felipe-content {
        flex-direction: row;
        text-align: left;
    }

    .felipe-img {
        width: 250px;
        height: 250px;
    }
}

.model-description {
    text-align: center;
    margin-bottom: 10px;
}

/* ==================================== */
/* ESTILOS DA SEÇÃO CTA E FORMULÁRIO */
/* ==================================== */

.cta-section {
    padding: 60px 20px;
    background-color: #002C49; /* Cor de fundo escura (verde/azul petróleo), similar ao seu layout */
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-size: 2.2em;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

/* Container do Formulário */
#leadForm {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #125794; /* Mantém o formulário transparente com o fundo */
    border-radius: 8px;
}

/* Grupos de Campos (Inputs, Selects e Textareas) */
.form-group {
    margin-bottom: 15px;
    text-align: left; /* Alinha labels e campos à esquerda */
}

/* Estilo para todos os campos de texto, e-mail, tel e select */
#leadForm input[type="text"],
#leadForm input[type="email"],
#leadForm input[type="tel"],
#leadForm select,
#leadForm textarea {
    width: 100%;
    padding: 12px 15px;
    margin-top: 5px;
    border: none;
    border-radius: 4px;
    box-sizing: border-box; /* Garante que o padding não aumente a largura total */
    font-size: 1em;
    background-color: #f8f8f8;
    color: #333;
}

/* Estilo para labels (títulos dos campos) */
#leadForm label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #e0e0e0; /* Cor mais clara para contraste */
    font-size: 0.95em;
}

/* Estilo para o campo de observação */
#leadForm textarea {
    resize: vertical;
    min-height: 80px;
}

/* Estilo para o Botão de Submissão */
.btn-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px; /* Borda arredondada, como na imagem */
    background-color: #fff066; /* Amarelo/verde vibrante do seu design */
    color: #333;
    font-size: 1.15em;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-submit:hover {
    background-color: #ffe800; /* Amarelo um pouco mais escuro no hover */
}

/* Estilo para a mensagem de feedback (sucesso/erro) */
#feedback {
    margin: 15px 0;
    padding: 10px;
    border-radius: 4px;
    font-weight: 600;
}

/* Estilos específicos para as etapas (aprimoramento visual) */
#etapa1, #etapa2 {
    transition: opacity 0.4s ease;
}

.instrucao-qualificacao {
    font-size: 1em;
    font-style: italic;
    margin-bottom: 25px;
    color: #cccccc;
}

/* Estilo para o campo de Captcha */
.captcha-group label {
    font-style: italic;
    font-weight: 400;
    font-size: 1.1em;
    color: #fff;
}