/* --- CONFIGURAÇÕES GLOBAIS E VARIÁVEIS --- */
:root {
    --primary-color: #D93636; /* Vermelho GRADEV */
    --secondary-color: #1a2a4c; /* Azul Escuro */
    --dark-text: #333333;
    --light-text: #ffffff;
    --background-light: #f9f9f9;
    --background-white: #ffffff;
    --font-headings: 'Exo 2', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --container-width: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    line-height: 1.7;
    background-color: var(--background-white);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--secondary-color);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

section {
    padding: 80px 0;
}

/* --- BOTÃO CTA PRINCIPAL --- */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    font-family: var(--font-headings);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 54, 54, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px);
    background-color: #b82a2a;
}

/* --- SEÇÃO 1: HERO --- */
.hero-section {
    background: linear-gradient(to right, rgba(26, 42, 76, 0.85), rgba(26, 42, 76, 0.95)), url('img/background.jpg') no-repeat center center/cover;
    color: var(--light-text);
    padding: 80px 0 0 0;
    text-align: center;
}

.main-title {
    font-size: 2.8rem;
    color: var(--light-text);
    font-weight: 800;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

.subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}

.cta-container {
    margin-bottom: 30px;
}

.guarantee-highlight {
    margin-top: 20px;
    font-size: 0.95rem;
}

.guarantee-highlight i {
    color: #ffc107;
    margin-right: 8px;
}

.hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}

/* --- SEÇÃO 2: DORES --- */
.pain-points-section {
    background-color: var(--background-light);
}

.pain-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.pain-list li {
    background-color: #fff;
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.pain-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
}

/* --- SEÇÃO 3: SOLUÇÃO --- */
.solution-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}
.solution-section .section-header p {
    font-size: 1.1rem;
}

.how-it-works h3, .what-you-get h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}

.step {
    flex-basis: 31%;
    text-align: center;
    padding: 20px;
}

.step i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.what-you-get ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.what-you-get li {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
}

.what-you-get i {
    color: #28a745;
    margin-right: 15px;
    margin-top: 5px;
}

/* --- SEÇÃO 4: BENEFÍCIOS --- */
.benefits-section {
    background-color: var(--background-light);
}

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

.benefit-card {
    background: var(--background-white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* --- SEÇÃO 5: QUALIFICAÇÃO --- */
.qualification-section ul {
    list-style-type: '✔  ';
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    padding-left: 25px; /* Alinha o texto do marcador */
}

.qualification-section li {
    padding-left: 15px;
    margin-bottom: 15px;
}

/* --- SEÇÃO 6: EQUIPE --- */
.team-section {
    background-color: var(--background-light);
}

.team-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-member img {
    max-width: 180px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-member h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.team-footer {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto;
    color: var(--secondary-color);
}

/* --- SEÇÃO 7: GARANTIA --- */
.guarantee-section {
    background-color: var(--secondary-color);
    color: var(--light-text);
}
.guarantee-section h2 {
    color: var(--light-text);
    text-align: left;
}
.guarantee-content {
    display: flex;
    align-items: center;
    gap: 50px;
}
.guarantee-seal {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border: 5px solid #ffc107;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffc107;
    font-family: var(--font-headings);
}
.guarantee-seal i { font-size: 3rem; margin-bottom: 5px; }
.guarantee-seal span { font-size: 1.2rem; line-height: 1.2; }

/* --- SEÇÃO 8: CTA FINAL --- */
.final-cta-section {
    text-align: center;
    background-color: var(--background-light);
}

.final-cta-section h2 {
    font-size: 2.8rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-price {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* --- FAQ --- */
.faq-section {
    padding-top: 0;
    padding-bottom: 80px;
}
.faq-section .container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.faq-item p {
    margin: 0;
}

/* --- RODAPÉ --- */
.site-footer {
    background-color: var(--secondary-color);
    color: var(--light-text);
    text-align: center;
    padding: 40px 0;
}
.site-footer p {
    margin-bottom: 10px;
}
.site-footer a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}
.site-footer a:hover {
    color: var(--primary-color);
}


/* --- RESPONSIVIDADE (Mobile-First) --- */
@media (max-width: 992px) {
    h2 { font-size: 2.2rem; }
    .main-title, .final-cta-section h2 { font-size: 2.4rem; }
    .steps-container { flex-direction: column; align-items: center; }
    .what-you-get ul { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .team-container { flex-direction: column; align-items: center; }
    .guarantee-content { flex-direction: column; text-align: center; }
    .guarantee-section h2 { text-align: center; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .main-title, .final-cta-section h2 { font-size: 2rem; }
    .subtitle { font-size: 1.1rem; }
    .cta-button { padding: 18px 35px; font-size: 1.1rem; }
    h2 { font-size: 2rem; margin-bottom: 30px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .faq-section { padding-top: 0; padding-bottom: 60px; }
}