@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body {
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #E8F5E8 0%, #F0F8F0 50%, #E8F5E8 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* HEADER*/
header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 48px;
    height: 48px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #25D366;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #25D366;
}

.cta-button {
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #20B858;
    transform: translateY(-2px);
}

/* Formulário*/
main {
    flex-grow: 1;
    padding: 140px 0 60px; 
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.form-container {
    max-width: 700px;
    width: 100%;
    background: white;
    padding: 2.5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2C3E50; 
    margin-bottom: 2rem;
}

.form-container form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; 
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    direction: rtl;
    margin-top: 0.5rem;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 2.5rem; 
    color: #E0E0E0;
    cursor: pointer;
    transition: color 0.2s;
}

.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
    color: #ffd700;
}

/* Botão de Envio*/
button[type="submit"] {
    background: #25D366;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

button[type="submit"]:hover {
    background: #20B858;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* ========================================= */
/* ESTILOS PARA O MENU HAMBÚRGUER (Desktop)  */
/* ========================================= */

.menu-toggle {
    display: none; /* Escondido por padrão em telas grandes */
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    z-index: 1100;
}



/* RESPONSIVIDADE */


@media (max-width: 768px) {

    
    .menu-toggle {
        display: block;
    }

    .header-content > .cta-button {
        display: none;
    }

 
    header nav {
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }

    header nav.active {
        display: block;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

