@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');

:root {
    --color-primary-1: (to bottom right, #0f2027, #203a43, #2c5364);;
    --color-primary-2: #ffe8b4;
    --color-primary-3: #f8d477;
    --color-primary-4: #ffe100;
    --color-primary-5: #ffcb45;
    --color-primary-6: #e9a209;

    --color-neutral-0: #fff;
    --color-neutral-1: #1d1d1d;
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box
}


header {
    width: 100%;
    padding: 20px 8%;
    position: sticky;
    top: 0;
    background-color: var(--color-primary-1);
    z-index: 3;
}

#nav_logo {
    width: 150px;
    /* Ajuste a largura */
    height: auto;
}

#navbar {

    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.nav-item.active a {
    color: #1abc9c;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom right, #0f2027, #203a43, #2c5364);
    color: #fff;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-5);
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
}

.btn-default:hover {
    background-color: var(--color-primary-3);
}

#mobile_btn {
    display: none;
}

/* Main sections */
section {
    padding: 100px 20px;
}

#home {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

#cta {
    flex: 1 1 400px;
}

#banner img {
    max-width: 500px;
    width: 100%;
    border-radius: 12px;
    -webkit-border-radius: ;
    -moz-border-radius: ;
    -ms-border-radius: ;
    -o-border-radius: ;
}


#tools {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.tool {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    -webkit-border-radius: ;
    -moz-border-radius: ;
    -ms-border-radius: ;
    -o-border-radius: ;
}

.tool:hover {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
}

.tool-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* Formulário */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: auto;
}

form input,
form textarea {
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
}

form button {
    width: 150px;
    align-self: flex-start;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    text-align: center;
}

.social-media-buttons a {
    color: #1abc9c;
    margin: 0 10px;
    font-size: 20px;
}

/* Toasts */
#toast-container .toast {
    font-weight: bold;
}
@media screen and (max-width: 1170px) {
    #nav_list,
    #navbar .btn-default {
        display: none;
    }

    #mobile_btn {
        display: block;
        border: none;
        background-color: transparent;
        font-size: 1.5rem;
        cursor: pointer;
    }

    #mobile_menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #mobile_nav_list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 12px 0px;
    }

    #mobile_nav_list .nav-item {
        list-style: none;
        text-align: center;
    } 
}