/* Paleta de Cores:
   - Primária (Ação): #007bff (Azul Vibrante)
   - Secundária (Energia/Destaque): #ffc107 (Amarelo/Ouro)
   - Fundo Base: #ffffff (Branco) / #f8f9fa (Cinza Claro)
   - Texto: #343a40 (Escuro)
*/

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #343a40;
    background-color: #ffffff;
}

*, *::before, *::after {
    box-sizing: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3 {
    font-weight: 700;
}

/* --- Botões de Chamada para Ação (CTA) --- */
.btn-cta-header, .btn-cta-large, .btn-cta-final {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s;
    text-transform: uppercase;
}

.btn-cta-header {
    background-color: #ffc107;
    color: #000;
    font-size: 14px;
    padding: 10px 50px;
}
.btn-cta-header:hover {
    background-color: #e0a800;
}

.btn-cta-large, .btn-cta-final {
    background-color: #564B8A; /* Azul primário */
    color: white;
    font-size: 18px;
    margin-top: 25px;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}
.btn-cta-large:hover, .btn-cta-final:hover {
    background-color: #9998C1;
    transform: translateY(-2px);
}

/* --- Header e Navegação --- */
.header {
    background-color: #564B8A;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 28px;
    color: #fff;
}

nav a {
    text-decoration: none;
    color: #fff;
    margin-left: 20px;
    font-weight: 400;
}

/* --- Seção Principal (Hero) --- */
.hero {
    background-color: #f8f9fa; /* Fundo cinza claro */
    padding: 80px 0;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.hero-content {
    max-width: 600px;
}

.hero-content h2 {
    font-size: 3em;
    color: #564B8A;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.key-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 1.1em;
    color: #555;
}

.key-features li {
    margin-bottom: 8px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.key-features li::before {
    content: ''; /* Remove o marcador padrão */
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0);
}

/* --- Seção de Benefícios --- */
.beneficios {
    padding: 60px 0;
    text-align: center;
}

.beneficios h3 {
    font-size: 2.5em;
    color: #343a40;
    margin-bottom: 50px;
}

.beneficios-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex: 1 1 300px;
    max-width: 350px;
    border-top: 4px solid #564B8A;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h4 {
    color: #564B8A;
    margin-top: 0;
    font-size: 1.5em;
}

/* --- Seção de Depoimentos (Prova Social) --- */


/* --- Chamada Final para Ação (CTA) --- */
.cta {
    background-color: #564B8A;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn-cta-final {
    background-color: #ffc107; /* Destaque amarelo */
    color: #343a40;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.5);
}
.btn-cta-final:hover {
    background-color: #e0a800;
}

/* --- Rodapé (Footer) --- */
.footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

.footer a {
    color: #ffc107;
    text-decoration: none;
}

/* --- Responsividade (Media Queries) --- */
@media (min-width: 768px) {
    /* Ajustes para telas maiores */

    .hero .container {
        flex-direction: row; /* Layout lado a lado */
        text-align: left;
    }

    .hero-content {
        flex: 1;
        max-width: 50%;
    }

    .key-features li {
        justify-content: start;
    }
    
    .hero-image {
        flex: 1;
        text-align: right;
    }

    .hero-image img {
        max-width: 90%;
    }
    
    .depoimento-card {
        flex: 1 1 40%;
    }
}

@media (max-width: 600px) {
    /* Ajustes para telas menores (celular) */
    
    .header .container {
        flex-direction: column;
        padding-bottom: 5px;
    }

    .header nav a:not(.btn-cta-header) {
        margin: 0 8px;
    }
    
    .hero {
        padding: 50px 0;
    }

    .hero-content h2 {
        font-size: 2em;
    }
    
    .beneficios-grid, .depoimentos-container {
        flex-direction: column;
        align-items: center;
    }

    .card, .depoimento-card {
        max-width: 100%;
    }
}