/* Geral */
body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

.hero {
            background: url('img/fundo_01.jpg') no-repeat center center;
            background-size: cover;
            padding: 100px 0;
            color: white;
            text-align: center;
        }
        
        .text-corpadrao {
            color: #3691de; /* Cor personalizada */
        }
        
        .hero h2,
        .hero p {
            text-shadow: 3px 3px 5px #000000;
        }
        
/* Header */
header {
    background-color: #ffffff;
    color: white;
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.cta-button {
    background-color: #ffcc00;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #fff700;
}

/* Seções */

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.benefits, .how-it-works, .testimonials {
    padding: 60px 20px;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

.testimonial {
    min-height: 250px; /* Defina uma altura mínima adequada */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial p {
    flex-grow: 1;
}

.testimonial h4 {
    margin-top: 15px;
    color: #0066cc;
}

.cta {
    background-color: #3691de;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

/* Footer */
footer {
    background-color: #b8b9ba;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer .social-links {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
}

footer .social-links li {
    margin: 0 10px;
}

footer .social-links li a {
    color: white;
    text-decoration: none;
}

