/* Reset e base */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f2f2f2;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Arial', sans-serif;
    margin: 0 0 15px;
}

/* Menu fixo - versão desktop */
nav {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Menu hamburguer responsivo */
.nav-mobile {
    display: none;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .nav-mobile {
        display: block;
        background-color: #333;
        padding: 10px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .menu-icon {
        font-size: 28px;
        color: white;
        cursor: pointer;
        display: block;
    }

    #menu-toggle {
        display: none;
    }

    .menu {
        display: none;
        flex-direction: column;
        background-color: #444;
        padding: 10px;
        margin-top: 10px;
    }

    #menu-toggle:checked + .menu-icon + .menu {
        display: flex;
    }

    .menu li {
        margin: 10px 0;
    }

    .menu li a {
        color: white;
        text-decoration: none;
        font-size: 18px;
    }

    .menu li a:hover {
        text-decoration: underline;
    }
}

/* Banners */
.banner {
    text-align: center;
    color: white;
    padding: 50px 20px;
}

.banner-1 {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('https://img.freepik.com/fotos-gratis/homem-de-vista-lateral-trabalhando-como-encanador_23-2150746324.jpg') no-repeat center top;
    background-size: cover;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-1 h1 {
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-1 .nato { color: red; }
.banner-1 .maq { color: blue; }

.banner-1 p {
    font-size: 24px;
    margin: 10px 0 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.banner-1 a {
    display: inline-block;
    padding: 12px 25px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.banner-1 a:hover {
    background-color: #128C7E;
}

.banner-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #fff;
    color: #333;
    padding: 40px 20px;
    text-align: left;
}

.banner-2 .image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 20px;
}

.banner-2 .image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.banner-2 .text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.banner-2 h2 {
    font-size: 28px;
    color: #0056b3;
}

.banner-2 p {
    font-size: 18px;
    margin-bottom: 20px;
}

.destaque p {
    font-size: 16px;
    color: #25D366;
    font-weight: bold;
    margin: 10px 0;
}

.banner-3 {
    background-color: #0056b3;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.banner-3 h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.banner-3 p {
    font-size: 20px;
    margin-bottom: 25px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.whatsapp-link:hover {
    background-color: #128C7E;
}

.whatsapp-link img {
    margin-right: 10px;
}

/* Depoimentos */
.depoimentos {
    background-color: #fff;
    color: #333;
    text-align: center;
    padding: 50px 20px;
}

.depoimentos blockquote {
    font-style: italic;
    margin: 20px auto;
    max-width: 600px;
}

/* FAQ */
.faq {
    background-color: #f9f9f9;
    padding: 50px 20px;
}

.faq h3 {
    color: #0056b3;
    margin-bottom: 10px;
}

.faq p {
    margin-bottom: 20px;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    font-size: 14px;
}

/* Responsividade adicional para telas pequenas */
@media (max-width: 768px) {
    .banner-1 h1 {
        font-size: 28px;
    }

    .banner-1 p,
    .banner-3 p {
        font-size: 16px;
    }

    .banner-1 a,
    .whatsapp-link {
        font-size: 16px;
        padding: 10px 15px;
    }

    .banner-2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 15px;
    }

    .banner-2 .image,
    .banner-2 .text {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 10px 0;
    }

    .banner-2 .image img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .banner-2 .text h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .banner-2 .text p,
    .destaque p {
        font-size: 14px;
        margin: 5px 0;
    }

    .faq h3 {
        font-size: 18px;
    }

    .faq p {
        font-size: 14px;
    }
}
