body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff4e6;
    color: #333;
}

header {
    background-color: #ff914d;
    padding: 25px;
    text-align: center;
}

header img {
    max-width: 250px;
}

.logo {
    height: 50px;
}

header nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.hero {
    background: url('sua-imagem.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    text-align: center;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3em;
}

.hero p {
    font-size: 1.5em;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.services, .results, .testimonials, .contact {
    padding: 60px 20px;
    text-align: center;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery img {
    width: 100%;
    max-width: 300px;
    margin: 10px;
    border-radius: 10px;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    animation: blink-animation 1.3s infinite;
}

/* Animação de piscar */
@keyframes blink-animation {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}