/* Reset Padrão */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Estilização do Corpo */
body {
    background-color: #f8f8f8;
    text-align: center;
    padding: 20px;
    color: #333;
}

/* Cabeçalho */
.header {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.badge {
    display: inline-block;
    background-color: red;
    color: white;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
}

h1 {
    font-size: 2.5em;
    margin-top: 10px;
}

.highlight {
    color: red;
}

.cta-button {
    display: inline-block;
    background: red;
    color: white;
    padding: 15px 25px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: darkred;
}

/* Seção de Serviços */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card i {
    color: red;
    margin-bottom: 10px;
}

/* Comentários de Clientes */
.testimonials {
    margin-top: 50px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.testimonial {
    background: white;
    padding: 15px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: green;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
