/* Estilo Geral */

@import url('https://fonts.googleapis.com/css2?family=Arima:wght@100..700&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", serif;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Estilo do Cabeçalho */
/* === HEADER === */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 40px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    position: relative;
}

/* === LOGO === */
.logo img {
    height: 40px;
}

/* === MENU === */
.menu {
    display: flex;
    align-items: center;
}

.menu a {
    text-decoration: none;
    color: #000;
    margin: 0 15px;
    font-size: 14px;
}

.menu a:hover {
    color: #2C64AB;
}

/* === DROPDOWN === */
.dropdown {
    position: relative;
}

.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #000;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #f4f4f4;
}

/* === HAMBURGER === */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 25px;
    width: 35px;
    cursor: pointer;
}

.hamburger div {
    background-color: #000;
    height: 4px;
    width: 100%;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}





/*corpo do site*/

h1, h2, h3, span, .pbeneficios, .image-beneficios, .button{
    visibility: hidden;
}

.background-video {
    width: 100vw;
    height: 100vh;
    position: relative;

}

.conceitual {
    width: 100vw;
    height: 100vh;

}


.video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;

}

.titulo {
    font-size: 3rem;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 16px;
}


.depoimentos {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;

}
.testimonial {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 24px;
    background-position: left center;
}
.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin-right: 20px;
    object-fit: cover;
    background-position: left center;
}
.testimonial h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}
.testimonial p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #555;
}

.texto {
    width: 90%;
    max-width: 1080px;
    margin: 20px auto;
    background: #fff;
    justify-content: center;
    align-items: center;

}




.texto h1 {
    font-size: 2rem;
    text-align: center;
    padding-bottom: 16px;
}

.texto h2 {
    font-size: 1.5rem;
    text-align: center;
    padding-bottom: 16px;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    justify-content: center;
    align-items:center;
    text-align: center;
    margin-top: 20px;

}
.button:hover {
    background-color: #333;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ocupa toda a altura da tela */
    overflow: hidden; /* Evita que o conteúdo exceda a largura da viewport */
}

.image-container img {
    max-width: 100%; /* Garante que a imagem nunca ultrapasse a largura do contêiner */
    height: auto; /* Mantém a proporção da imagem */
    object-fit: cover; /* Ajusta o corte da imagem para preencher sem distorcer */
}

.aguapura {
    width: 800px;
    height: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
}













/*rodapé*/

.footer {
    background-color: #1d1d1d;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: 60vh;
    padding: 60px 120px;
}

.footer img {
    height: 40px;
}

/* Coluna da esquerda */
.footer-left {
    max-width: 400px;
    padding-right: 64px;
}

.footer-left h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-left .contact-info {
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-left .social-icons a {
    margin-right: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}

.social-icons a:hover {
    opacity: 0.8;
}

/* Coluna da direita (formulário) */
.footer-right {
    max-width: 400px;
    width: 100%;
}

.footer-right form {
    display: flex;
    flex-direction: column;
}

.footer-right input {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 14px;
    border: none;
}

.footer-right button {
    background-color: #002855;
    color: #fff;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    font-weight: bold;
}

.footer-right button:hover {
    background-color: #001a3a;
}




/* Estilo Responsivo */

/* Cabeçalho Responsivo */
/* === MENU MOBILE - FUNDO BRANCO === */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        height: 100%;
        background: #fff;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding-top: 60px;
        overflow-y: auto;
        transition: transform 0.3s ease-in-out;
    }

    .menu.active {
        display: flex;
    }

    .menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .menu li {
        margin: 15px 20px;
    }

    .menu a {
        text-decoration: none;
        font-size: 16px;
        color: #333;
        display: block;
        padding: 10px 0;
    }

    .menu a:hover {
        color: #2C64AB;
    }

    /* === DROPDOWN MOBILE === */
    .dropdown .dropdown-menu {
        display: none;
        padding-left: 15px;
        margin-top: 10px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        margin: 10px 0;
    }

    .dropdown-menu a {
        font-size: 14px;
    }
}



/* corpo do site*/

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero-content {
        margin-left: 0;
        padding: 10px;
    }

    .titulo {
        font-size: 1.8rem;
        padding: 16px;
    }

    .image-container {
        height: auto; /* Ajusta a altura ao conteúdo no mobile */
        padding: 20px; /* Adiciona espaçamento interno */
    }

    .image-container img {
        max-width: 100%; /* Garante que a imagem se ajuste à largura da viewport */
        height: auto; /* Mantém a proporção */
    }
}

/* Fundo Branco Responsivo */
@media (max-width: 768px) {
    .fundobranco{
        height: 40vh;

    }

    .fundobranco h1 {
        font-size: 2rem;
    }

    .fundobranco h2 {
        font-size: 1.2rem;
    }

    .fundobranco-conteúdo {
        margin-left: 0;
        padding: 10px;
    }
}

/* Vídeo de fundo */
@media (max-width: 768px) {
    .background-video,
    .conceitual,
    .video {
        height: auto;
    }
}

/* imagem de fundo */
@media (max-width: 768px) {
    section#palax04 {
        background-attachment: scroll;
        background-position: center;
    }

    section#palax01, section#palax03{
        background-attachment: scroll;
        background-position: right;
    }

    section#palax02 {
        background-attachment: scroll;
        background-position: left;
    }
}

@media (max-width: 768px) {
    h1, h2, span {
        visibility: visible;
        font-size: 1.5rem;
    }
}

/* Texto Geral */
@media (max-width: 768px) {
    .text-block {
        font-size: 1rem;
    }

    .highlight {
        font-size: 2.5rem;
    }

    .texto-menor {
        font-size: 0.9rem;
    }
}



/* Rodapé Responsivo */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        height: auto;
        padding: 30px 20px;
        text-align: center;
        background-color: #1d1d1d;
    }

    .footer-left {
        max-width: 100%;
        padding: 0 16px;
        margin-top: 64px;
        margin-bottom: 64px;
    }

    .footer-right form {
        align-items: center;
        margin-bottom: 64px;
        padding: 0 16px;
    }

    .footer-right input,
    .footer-right button {
        width: 100%;
    }
}

/* Ajuste Geral para Dispositivos Pequenos */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1rem;
    }

    .fundobranco h1 {
        font-size: 2rem;
    }

    .fundobranco h2 {
        font-size: 1.2rem;
    }

    .text-block {
        font-size: 0.9rem;
    }

    .highlight {
        font-size: 2rem;
    }

    .menu a {
        font-size: 10px;
    }

    .footer {
        padding: 20px 10px;
    }

    .footer-right input,
    .footer-right button {
        font-size: 12px;
    }
}

