/* Header */
/* Header */
body{
    overflow: auto;
    background-color: #ffffff;
}
header{
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
}

/*Barra de Navegação*/

.navbar {
    background-color: #ffffff;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 50px;
    z-index: 1000;
  }
  
  .logo img{
    width: 140px;
    position: relative;
    top: 12px;
    margin: 70px;
  }
  
  .nav-links-desktop {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 15px;
  }
  
  .nav-links-desktop li {
    padding: 10px;
    display: inline;
  }
  
  .nav-links-desktop a,
  .nav-links-mobile a {
    color: #555555;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    margin: 10px;
  }
  
  .nav-links-desktop a:hover {
    color: #FFD700;
  }
  
  .mobile-menu {
    display: none;
    position: fixed;
    top: 50px;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    flex-direction: column;
    align-items: center;
    font-size: 1.8rem;
    z-index: 1000;
  }
  
  .nav-links-mobile {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
    width: 80%;
    list-style: none;
    padding: 0;
  }
  
  .nav-links-mobile li {
    border-bottom: 1px solid #555555;
    padding-bottom: 1.2rem;
  }
  
  .hamburger,
  .close {
    font-size: 24px;
    background: none;
    border: none;
    color: #555555;
    cursor: pointer;
    display: none;
  }
  
  .close {
    margin-top: 20px;
    margin-right: 20px;
    display: block;
    align-self: end;
  }
  
  .flex {
    display: flex;
  }

a.active{
    background: #14ff72cb;
    border-radius: 2px;
}

a.active:hover{
    color: #fff;
    transition: .3s;
}



.conteiner-cont {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.container{
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.titulo {
    font-size: 3.5rem; 
    color: #FFD700; 
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out; 
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); 
}


.foto {
    width: 100%; 
    height: auto; 
    max-height: 70vh; 
    object-fit: cover; 
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-out; 
}

.texto {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #333;
    text-align: justify; 
    max-width: 1400px; 
    text-align: center;
    margin: 0 auto; 
    padding: 0 20px;
    animation: fadeIn 2s ease-out;
}

main {
    min-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 40px;
}

.testimonial {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label { 
    font-weight: bold;
}

.star-rating {
    display: flex;
    cursor: pointer;
}

.star {
    font-size: 24px;
    color: #ccc;
    transition: color 0.2s;
}

.star.selected {
    color: #e9a209;
}

input, select, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button[type="submit"] {
    background-color: #e9a209;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #d8a108;
}

footer {
    background-color:#FFD700 ; 
    text-align: center; 
    padding: 2px; 
    font-size: 16px; 
    color: #333; 
    width: 100%; 
    margin-top: 20px; 
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1); 
}

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
    /* Ajustar o contêiner principal */
    .container, .conteiner-cont {
        width: 90%;
        margin: 0 auto;
        padding: 10px;
    }

    /* Ajustar o título */
    .titulo {
        font-size: 2rem;
        text-align: center;
    }

    /* Ajustar a imagem */
    .foto {
        width: 100%;
        max-height: 40vh;
    }

    /* Ajustar o texto */
    .texto {
        font-size: 1.2rem;
        padding: 0 10px;
    }

    /* Menu de navegação responsivo */
    .nav-links-desktop {
        display: none; /* Ocultar menu desktop */
    }

    .hamburger {
        display: block; /* Exibir botão hamburger */
        font-size: 2rem;
    }

    /* Ajustar menu mobile */
    .mobile-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 70%;
        background-color: #ffffff;
        padding: 20px;
        z-index: 1000;
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%); /* Escondido por padrão */
    }

    .mobile-menu.show {
        transform: translateX(0); /* Exibe menu quando ativo */
    }

    .close {
        display: block;
        align-self: flex-end;
        margin-bottom: 20px;
    }

    .nav-links-mobile {
        gap: 1rem;
    }

    .testimonial {
        font-size: 0.9rem;
    }

    /* Ajustar formulário de avaliação */
    form {
        width: 100%;
    }

    .star-rating {
        font-size: 1.5rem;
    }
}
