@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Container de Largura Máxima Padronizado */
.max-width {
    max-width: 1300px;
    padding: 0 80px;
    margin: 0 auto;
}

/* NAVBAR FIXA E ALINHADA */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 15px 0;
    background: #2e4f3e;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
}

.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}

.navbar .logo a span {
    color: #76ff03;
}

.navbar .menu li {
    list-style: none;
    display: inline-block;
}

.navbar .menu li a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.navbar .menu li a:hover {
    color: #76ff03;
}

/* ESTRUTURA PRINCIPAL */
section.home {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    min-height: 100vh;
    padding-top: 100px; /* Evita que a navbar cubra o conteúdo */
}

.container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    width: 850px;
    text-align: center;
}

textarea {
    width: 100%;
    height: 300px;
    padding: 20px;
    margin-bottom: 15px;
    font-size: 16px;
    border-radius: 5px;
    border: 2px solid #ccc;
    resize: none;
}

/* BOTÕES E TÍTULOS EM VERDE MUSGO */
button {
    margin: 5px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #2e4f3e;
    color: white;
    transition: background 0.3s;
}

button:hover {
    background-color: #3d6852;
}

h2 {
    color: #2e4f3e;
    margin-bottom: 15px;
    font-family: 'Ubuntu', sans-serif;
}

footer {
    background: #111;
    padding: 15px 23px;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

footer span a {
    color: #76ff03;
}

/* MEDIA QUERIES (RESPONSIVIDADE) */
@media (max-width: 991px) {
    .max-width {
        padding: 0 50px;
    }
}

@media (max-width: 947px) {
    .menu-btn {
        display: block;
        color: #fff;
        font-size: 23px;
        cursor: pointer;
    }

    .navbar .menu {
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }

    .navbar .menu.active {
        left: 0;
    }

    .navbar .menu li {
        display: block;
    }

    .navbar .menu li a {
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
}
