body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

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

header {
    background-color: #007bff;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

.hero {
    background-color: white;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #007bff;
}

.hero p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
}

.cta-button:hover {
    background-color: #218838;
}

.services {
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
}

.services h3 {
    text-align: center;
    color: #007bff;
    margin-bottom: 20px;
    font-size: 2em;
}

.service-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-item {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-item h4 {
    color: #007bff;
    margin-top: 0;
}

.service-item p {
    line-height: 1.6;
}

.about {
    padding: 40px 20px;
    background-color: white;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.about h3 {
    color: #007bff;
    font-size: 2em;
    margin-bottom: 20px;
}

.about p {
    line-height: 1.6;
    margin-bottom: 30px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128c7e;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.whatsapp-button:hover {
    background-color: #128c7e;
}

/* Estilos para tornar a página responsiva */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .hero h2 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .service-list {
        grid-template-columns: 1fr;
    }
}

header img {
    max-height: 80px;
    height: auto;
    width: auto;
    display: block;
    margin: 0 auto 10px; /* centraliza e dá espaço abaixo da imagem */
}


