@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-image: url("img/a1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.logo {
    width: 800px;   /* ajuste conforme necessário */
    display: block;
    margin: 0 auto 0px auto; /* centraliza e dá espaço abaixo */
}

.rodape {
    background-color: #f5f5f5;
    color: #222;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 1.5em;
    border-top: 2px solid #ddd;
}

.rodape a {
    color: #222;
    text-decoration: none;
    margin-left: 8px;
}

.rodape a:hover {
    color: #5700c8;
}

.contatos i {
  color: #762dd4; /* cor dos ícones */
  margin-right: 8px;
  font-size: 1.2em;
}

.contatos a {
  color: #222;
  text-decoration: none;
}

.contatos a:hover {
  color: #5700c8;
}
.icon {
  width: 20px;
  vertical-align: middle;
  margin-right: 8px;
}



.titulo{
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    
    position: fixed;
    z-index: -1;

    font-size: 40px;
    color: #fff;
}

.conteudo{
    padding: 100px;
    background-color: #fff;
}

.conteudo h1{
    font-size: 3em;
    margin-bottom: 20px;
}

.conteudo p{
    font-size: 1.5em;
    text-align: justify;
}

section.ondas-box{
    position: relative;
    width: 100%;
    height: 100vh;
}

.onda{
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 0;
    background-image: url(img/wave.png);
    background-size: 1000px 100px;

    animation: ondaAnimada 5s ease-in-out infinite alternate;
}

@keyframes ondaAnimada {
    0%{
        transform: translateY(0px);
    }
    100%{
        transform: translateY(10px);
    }
}

#onda1{
    z-index: 1000;
    opacity: 1;
    background-position-x: 400;
}
#onda2{
    z-index: 999;
    opacity: 0.5;
    background-position-x: 300px;
}
#onda3{
    z-index: 998;
    opacity: 0.2;
    background-position-x: 200px;
}
#onda4{
    z-index: 997;
    opacity: 0.8;
    background-position-x: 100px;
}

/* Responsividade para celulares */
@media (max-width: 768px) {
    .logo {
        max-width: 600px; /* mantém logo grande em tablets */
    }

    .titulo {
        font-size: 32px;
        padding: 15px;
    }

    .conteudo {
        padding: 30px 20px;
    }

    .conteudo h1 {
        font-size: 2em;
        text-align: left; /* mantém alinhado à esquerda */
    }

    .conteudo p {
        font-size: 1.1em;
    }

    .rodape {
        font-size: 1.1em;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 100%; /* ocupa toda a largura em celulares */
    }

    .titulo {
        font-size: 26px;
    }

    .conteudo h1 {
        font-size: 1.6em;
    }

    .conteudo p {
        font-size: 1em;
    }

    .rodape {
        font-size: 1em;
    }
}