@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

button {
    width: 100%;
    max-width: 258px;
    background-color: #FF5300;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    outline: none !important;
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-weight: 400;
    color: #ffffff;
    padding: 1rem;
    transition: all 0.3s ease-in-out;
}

button:hover {
    background-color: #d74600;
}

/* Cabeçalho */
#header {
    position: relative;
    background-color: #FF5300;
    background-image: url("../img/company-sound-system/layer1-background1.png");
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    min-height: 1080px;
    padding: 0 5%;
    z-index: 1;
}

.logo-container img {
    width: 100%;
    max-width: 282px;
    height: auto;
    margin: 3rem 0;
}

.title-container h1 {
    font-family: "allotrope", sans-serif;
    font-size: 80px;
    font-style: italic;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1.5px;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2.75rem;
}

.text-container p {
    max-width: 1105px;
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.text-container .obs {
    font-size: 20px;
}

@media (max-width: 1750px) {
    .title-container h1 {
        font-size: 60px;
    }
}

@media (max-width: 967px) {
    .title-container h1 {
        font-size: 50px;
    }

    .text-container p {
        font-size: 20px;
    }

    .text-container .obs {
        font-size: 16px;
    }
}

@media (max-width: 670px) {
    .title-container h1 {
        font-size: 40px;
    }

    .title-container h1 br {
        display: none;
    }

    .text-container p {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 535px) {
    .title-container h1 {
        font-size: 30px;
    }

    .text-container p {
        font-size: 17px;
    }

    .text-container .obs {
        font-size: 14px;
    }
}

/* Formulário */
#forms {
    position: relative;
    top: -375px;
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
}

#forms form {
    background-color: #ffffff;
    width: 100%;
    max-width: 964px;
    padding: 6.5rem;
    border: none;
    border-radius: 10px;
    z-index: 9;
    margin-bottom: 10rem;
}

.full-row {
    width: 100%;
    margin-bottom: 1rem;
}

.full-row>div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.half-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 1rem;
}

.half-row>div {
    flex: 1;
    width: 50%;
    display: flex;
    flex-direction: column;
}

.standard-opts-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

label {
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-weight: 400;
    color: #707070;
    margin-bottom: .5rem;
}

input[type="text"],
textarea {
    width: 100% !important;
    font-size: 17px;
    border: 1px solid #a5a5a5;
    border-radius: 10px;
    outline: none;
    padding: 11px 20px;
}

textarea {
    resize: none;
}

input[type="text"]::placeholder {
    color: #a5a5a5;
}

.selectize-input {
    width: 100% !important;
    font-size: 17px;
    border: 1px solid #a5a5a5 !important;
    border-radius: 10px !important;
    outline: none !important;
    padding: 11px 20px !important;
    background-color: #ffffff !important;
    background-image: none !important;
    box-shadow: none !important;
    height: 49px;
    align-content: center;
}

.selectize-input input {
    font-size: 17px !important;
    line-height: 1.5 !important;
}

.selectize-dropdown {
    max-width: none !important;
}

.radio-container {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: #a5a5a5;
    font-size: 22px;
}

.radio-container input {
    display: none;
}

.radio-container span {
    width: 20px;
    height: 20px;
    border: 2px solid #a5a5a5;
    border-radius: 50%;
    background: #ffffff;
    display: inline-block;
    position: relative;
    margin-right: 10px;
}

.radio-container span::after {
    content: "";
    width: 13px;
    height: 13px;
    background: #a5a5a5;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.2s;
}

.radio-container input:checked+span::after {
    transform: translate(-50%, -50%) scale(1);
}

.div-button {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.disclaimer {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
}

.disclaimer p {
    max-width: 524px;
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-weight: 400;
    color: #a5a5a5;
}

.max-w-75 {
    max-width: 75%;
}

.max-w-50 {
    max-width: 50%;
}

@media (max-width: 1100px) {
    #forms {
        top: -300px;
    }
}

@media (max-width: 967px) {
    #forms {
        top: -375px;
    }
}

@media (max-width: 768px) {
    #forms form {
        padding: 3rem;
    }
}

@media (max-width: 570px) {
    #forms {
        top: -420px;
    }

    input {
        max-width: none !important;
    }

    .selectize-control {
        max-width: none !important;
    }

    .half-row {
        flex-direction: column;
    }

    .half-row>div {
        width: 100%;
    }

    .radio-container {
        font-size: 17px;
    }

    label {
        font-size: 20px;
    }

    .disclaimer p {
        font-size: 20px;
    }
}

@media (max-width: 535px) {
    #forms {
        top: -490px;
    }
}

@media (max-width: 430px) {
    #forms {
        top: -390px;
    }

    #forms form {
        padding: 3rem 1.5rem;
    }
}

/* Modal de Sucesso */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.ativo {
    display: flex;
}

.modal-content {
    background: #ffffff;
    border: none;
    border-radius: 10px;
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 964px;
}

.modal-content .header {
    background-color: #FF5300;
    border-radius: 10px;
    padding: 5%;
}

.modal-content .header h1,
.modal-content .header h2 {
    font-family: "allotrope", sans-serif;
    font-size: 60px;
    font-style: italic;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1.5px;
}

.modal-content .header h2 {
    font-size: 40px;
}

.modal-content .content {
    padding: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-content p {
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-weight: 400;
    color: #707070;
    max-width: 782px;
}

#btn-continue {
    margin-top: 2rem;
}

body.no-scroll {
    overflow: hidden;
}

@media (max-width: 967px) {
    .modal-content p {
        font-size: 20px;
    }

    .modal-content .header h1 {
        font-size: 50px;
    }

    .modal-content .header h2 {
        font-size: 35px;
    }
}