* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f4f9; /* Fundo neutro e profissional */
    color: #333;
}

/* Estilo padrão do menu */
nav {
    display: flex;
    justify-content: flex-end; /* Move tudo para a direita */
    align-items: center;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 20px 30px;
}

/* Estilização da lista de links */
.menu {
    display: flex; /* No desktop, mostrar o menu */
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.menu a:hover {
    background: rgb(120, 135, 184);
}

/* Estilo do botão de menu hambúrguer (inicialmente oculto) */
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

button {
    background: #ffae00;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background: #d38900;
}

a {
    text-decoration: none;
    color: #ff8800;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

a:hover {
    background: #1e2581;
    color: white;
}

.main-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.about-video {
    margin-top: 30px;
    text-align: center;

}

.about-video iframe {
    width: 700px;
    height: 300px;
    border-radius: 10px;
}


/* Hero Section */
.hero-section {
    width: 100%;
    height: 80vh;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 20px;
    margin-bottom: 20px;
}

.benefits {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
    padding: 40px 10%;
}

.benefit-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
}

.benefit-item img {
    width: 60px;
    margin-bottom: 10px;
}

h3 {
    font-size: 22px;
    margin-top: 10px;
}

/* Serviços */
.services {
    width: 100%;
    background: #ffffff;
    padding: 50px 10%;
    text-align: center;
}

.services h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.service-item {
    background: #f4f4f9;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #ff8800;
}

.service-item p {
    font-size: 16px;
    color: #555;
}

/* Contato */
.contact {
    width: 100%;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 50px 10%;
    text-align: center;
    color: white;
}

.contact h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.contact label {
    font-weight: bold;
    margin-bottom: 5px;
    text-align: left;
}

.contact input, 
.contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact button {
    background: #ff8800;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.contact button:hover {
    background: #d36d00;
}

/* Sobre Nós */
.about {
    background-color: #f8f8f8;
    padding: 50px 20px;
    text-align: center;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: auto;
    text-align: left;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


label {
    color: black;
}

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
    .menu {
        display: none; /* Esconder o menu padrão no mobile */
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .menu a {
        display: block;
        padding: 15px;
        color: black;
    }

    .menu-toggle {
        display: block; /* Mostrar o botão hambúrguer no mobile */
        color: white;
        border: none;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s;
        }
        
        button:hover {
            background-color: #005f89;
        }

    /* Mostrar menu quando ativo */
    .menu.active {
        margin-top: 30px;
        display: flex;
    }

    .services, .contact, .about {
        padding: 40px 5%;
    }
    
    .services h2, 
    .contact h2, 
    .about h2 {
        font-size: 24px;
    }

    .benefits {
        flex-direction: column;
        gap: 20px;
    }

    .hero-section {
        height: 60vh;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .hero-section p {
        font-size: 18px;
    }

    .about-video {
        margin-top: 30px;
        text-align: center;
    
    }
    
    .about-video iframe {
        width: 400px;
        height: 200px;
        border-radius: 10px;
    }
}

.whatsapp-button {
    background-color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}
.whatsapp-button:hover {
    background-color: white;
    transform: scale(1.1);
}
.whatsapp-button img {
    width: 40px;
    height: 40px;
}

a img {
    border-radius: 10%;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 25px;
    width: 100%;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
}

.footer-text {
    font-size: 14px;
}

.footer-images {
    display: flex;
    gap: 10px;
}

.footer-images img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
}
