@font-face {
    font-family: 'NeueMachina Bold';
    src: url('../../fonts/ttf/NeueMachina-Ultrabold.ttf') format('truetype');
}
@font-face {
    font-family: 'NeueMachina Regular';
    src: url('../../fonts/ttf/NeueMachina-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'NeueMachina Light';
    src: url('../../fonts/ttf/NeueMachina-Light.ttf') format('truetype');
}


.container {
    display: block !important;
    height: auto;
    text-align: center;
    padding-top: 200px;
    padding-block-end: 200px;
    background-color: #FFFCEE;
}

header {
    display: flex;
    flex-direction: column;
    text-align: center;
    
}

header h1 {
    font-family: "NeueMachina Bold";
    font-size: 110px;
    margin: 0;
    color: #1E1E1E;
}

header p {
    font-family: "NeueMachina Regular";
    font-size: 35px;
    color: #555;
    text-align: center;
}

.illustration {
    display: flex;
    justify-content: center;
    margin-top: -228px;
}

.illustration img {
    width: 100%;
    max-width: 1247px;
}

.description {
    font-family: "NeueMachina Regular";
    width: 52%;
    font-size: 25px;
    color: #666;
    margin: 20px 0;
    text-align: center;
    align-items: center;
    justify-self: center;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn {
    font-family: "NeueMachina Regular";
    padding: 20px 40px;
    border: none;
    background-color: #ccc;
    color: #333;
    font-size: 27px;
    cursor: pointer;
    border-radius: 15px;
}

.btn.active {
    background-color: black;
    color: white;
}

.label-input {
    font-family: "NeueMachina Regular";
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #1E1E1E;
    margin-bottom: 15px;
}

form {
    margin-top: 20px;
    text-align: left;
    justify-self: center;
    width: 50%;
}

form label {
    font-family: "NeueMachina Regular";
    display: block;
    font-weight: bold;
    font-size: 15px;
}

form input, form textarea {
    font-family: "NeueMachina Regular";
    width: 100%;
    padding: 5px 0px 18px 5px;
    border: none;
    background-color: #FFFCEE;
}

textarea {
    height: 200px;
}

.submit-btn {
    width: 20%;
    padding: 10px;
    background-color: black;
    color: white;
    border: none;
    font-size: 25px;
    cursor: pointer;
    border-radius: 5px;
    justify-self: center;
    font-family: "NeueMachina Regular";
}

.btn-enviar {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Responsivo para 550px */
@media (max-width: 550px) {
    header h1 {
        font-size: 31px;
    }

    header p {
        font-size: 10px;
    }

    .illustration img {
        max-width: 85%;
    }

    .illustration {
        margin-top: -70px;
    }

    .description {
        font-size: 15px;
        width: 80%;
    }

    .btn {
        font-size: 15px;
    }

    .submit-btn {
        font-size: 18px;
        width: 60%;
    }

    form {
        width: 80%;
    }

    .container {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

/* Responsivo para 360px */
@media (max-width: 360px) {
    header h1 {
        font-size: 50px;
    }

    header p {
        font-size: 18px;
    }

    .illustration img {
        max-width: 600px;
    }

    .description {
        font-size: 16px;
        width: 100%;
    }

    .btn {
        font-size: 16px;
        padding: 10px 20px;
    }

    .submit-btn {
        font-size: 16px;
        width: 100%;
    }
}
