body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #303030;
    overflow-x: hidden;
}

p {
    font-family:  'Inter';
}


[vw] {
  z-index: 9999999;
}

[vw-access-button] {
    transform: scale(1.2);
    transform-origin: bottom right;
  bottom: 50%; /* muda a posição */
  right: 50px;
}

  
/* header */
/* Header */
.cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
}

.logo img {
    height: 60px;
    width: auto;
    margin-right: 10px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Botão hamburguer */
.hamburguer {
    width: 45px;
    height: 45px;
    background: #791dcf;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition:  transform 0.3s ease;
}

.hamburguer span {
    width: 30px;
    height: 5px;
    background: #fff;
    border-radius: 2px;
}

/* Efeito de girar */
.hamburguer:hover {
     transform: scale(1.1);
}

/* Overlay escuro */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 1500;
}


/* Menu Flutuante */
.menu-flutuante {
    position: fixed;
    top: 80px;
    right: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 25px;
    width: 200px;
    display: none;
    flex-direction: column;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
    padding-bottom: 35px;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-flutuante ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

.menu-flutuante ul li {
    margin: 15px 0;
}

.menu-flutuante ul li a {
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
    color: #222;
    transition: color 0.3s;
}

.menu-flutuante ul li a:hover {
    color: #791dcf;
}

.redes-sociais {
    display: flex;
    gap: 35px;
    margin-top: 7px;
}

.redes-sociais a {
    font-size: 29px;
    color: #791dcf;
    transition: transform 0.3s, color 0.3s;
}

.redes-sociais a:hover {
    transform: scale(1.2);
}

.menu-flutuante .fechar {
    background: none;
    border: none;
    position: absolute;
    top: 20px;      /* distância do topo */
    right: 20px;  
    cursor: pointer;
    color: #303030;
    padding: 0;
}

.menu-flutuante .fechar .material-icons-round {
    font-size: 31px;
}

.menu-flutuante .fechar:hover {
    color: #791dcf;
    transform: scale(1.1);
}

.menu-flutuante.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Botão Entrar */
.botao-entrar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    background-color: #ffffff;
    color: #313131;
    border: 2px solid #c8c8c8;
    border-bottom: 5px solid #c8c8c8;
    text-decoration: none;
    border-radius: 10px;
    font-size: 19px;
    font-weight: bold;
    transition:  transform 0.3s ease;
}

.botao-entrar:hover {
    transform: scale(1.1); 
}

.botao-entrar img {
    width: 14px;
    height: auto;
}

.icone-menu img {
    width: 45px;
    height: auto;
    cursor: pointer;
}


.contato-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 0 20px;
    margin-bottom: 100px;
}

.contato-container h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

input, textarea {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 2px solid #d1d1d1;
    border-radius: 8px;
    background-color: #f4f4f4;
    resize: none;
}

textarea {
    height: 180px;
}

input:focus,
textarea:focus {
    border-color: #791dcf; /* Roxo */
    outline: none; /* Remove a borda azul padrão do navegador */
}

button[type="submit"] {
    align-self: flex-end;
    background-color: #791dcf;
    border: 2px solid #6319a8;
    border-bottom: 5px solid #6319a8;
    color: white;
    border-radius: 7px;
    padding: 8px 23px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
}

button[type="submit"]:hover {
  background-color: #6319a8;
}

.rodape {
    background: linear-gradient(90deg, #6C2BD9, #9414b8);
    color: #fff;
    padding: 30px 20px;
    display: flex;
    justify-content: space-around;
    font-size: 18px;
    flex-wrap: wrap; /* Permite que fique responsivo */

}

.rodape a {
    color: #fff;
    display: block;
    margin: 5px 0;
    text-decoration: none;
}
.logo-rodape {
    display: flex;
    align-items: center;
}
.logo-rodape img {
    height: 200px;
    width: auto;
    margin-right: 10px;
}

.rodape a {
    line-height: 2.2;
    font-weight: bold;
}

.redes-rodape a {
    display: flex;
    align-items: center;
    font-weight: bold;
    gap: 7px;
   
}

.redes-rodape img {
    width: 20px;
    height: auto;
}

.links-rodape a {
    color: #fff;
    display: block;
    margin: 8px 0;      
    text-decoration: none;
    flex-direction: column; /* Alinha links verticalmente */
   
}

.redes-rodape img {
    width: 20px;
    height: auto;
}

/* Esconde redes do rodapé em telas pequenas */
@media (max-width: 768px) {
    
    .rodape {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .redes-rodape {
        text-align: center;
    }

    .logo-rodape img {
        height: 150px;
    }

    .redes-rodape {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .redes-rodape a {
        justify-content: center;
    }
}

/* ===== Cabeçalho responsivo ===== */
@media (max-width: 600px) {
    .logo img {
        height: 45px; /* logo menor */
    }

    .botao-entrar {
        padding: 6px 10px;  /* diminui o tamanho do botão */
        font-size: 16px;    /* diminui o texto */
    }

    .hamburguer {
        width: 35px;  /* menor */
        height: 35px;
    }

    .hamburguer span {
        width: 25px;
        height: 4px;
    }

}

/* ======== RESPONSIVIDADE ======== */
@media (max-width: 768px) {
    .contato-container {
        width: 70%;
        margin: 40px auto;
        padding: 0 10px;
    }

    .contato-container h2 {
        font-size: 24px;
    }

    input, textarea {
        font-size: 15px;
        padding: 14px;
    }

    button[type="submit"] {
        margin-right: 0;       /* remove deslocamento negativo */
        align-self: center;    /* centraliza o botão */
        padding: 10px 20px;    /* ajusta tamanho */
        font-size: 16px;       /* diminui fonte */
    }
}

@media (max-width: 480px) {
    .contato-container {
        width: 80%;
        margin: 30px auto;
        padding: 0 15px;
    }

    .contato-container h2 {
        font-size: 22px;
    }

    input, textarea {
        padding: 13px;
        font-size: 14px;
    }

    textarea {
        height: 150px;
    }

    button[type="submit"] {
        width: 100%;           /* botão ocupa toda a largura */
        padding: 12px;         /* mais confortável para touch */
        font-size: 15px;
        align-self: center;
        margin-right: 0;
    }
}