/* Estilos gerais */
:root {
    --primary-color: #f7913e; /* Laranja da CS Saúde */
    --secondary-color: #0a9b9e; /* Verde-azulado da CS Saúde */
    --text-color: #333333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    margin-bottom: 20px;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

section {
    padding: 80px 0;
}

/* Botões e links */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    margin-top: 20px;
    text-align: center;
}

.cta-button:hover {
    background-color: #e57d2a;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: var(--white);
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.whatsapp-button i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Header / Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #076e70 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    max-width: 200px;
    height: auto;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Benefícios */
.benefits {
    background-color: var(--white);
    text-align: center;
}

.benefits-list {
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: left;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 30px;
}

/* Processo */
.process {
    background-color: var(--light-bg);
    text-align: center;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    background-color: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.note {
    background-color: rgba(247, 145, 62, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 40px;
    border-left: 4px solid var(--primary-color);
}

/* Urgência */
.urgency {
    background-color: var(--white);
    text-align: center;
}

/* Garantias */
.guarantees {
    background-color: var(--light-bg);
    text-align: center;
}

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

.guarantee-item {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-5px);
}

.guarantee-item i {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

/* CTA Final */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e57d2a 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.final-cta h2 {
    color: var(--white);
}

/* Footer */
footer {
    background-color: #333;
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        width: 100%;
        max-width: 100%;
    }
    
    .guarantees-list {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .benefit-item i {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .cta-button, .whatsapp-button {
        width: 100%;
        padding: 15px 20px;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .logo {
        max-width: 150px;
    }
}

/* Correção para o ícone que não existe no Font Awesome */
.fas.fa-chart-line-down:before {
    content: "\f201"; /* Usando o ícone de chart-line */
    display: inline-block;
    transform: rotate(45deg); /* Rotacionando para simular "down" */
}
