@font-face {
    font-family: "Snug Sharp";
    font-display: swap;
    src: url("/frontend/fonts/Snug-Sharp.otf");
}

@import url('https://fonts.googleapis.com/css2?family=Anek+Latin:wght@100..800&display=swap');

/* Formulário Principal */
.main-forms {
    position: relative;
    padding: 4rem 0 3rem 0;
}

.main-forms #background-video {
    position: fixed;
    left: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
}

.main-forms .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    max-width: 1590px;
    z-index: 1;
}

/* Header */
.main-forms .header-form {
    display: flex;
    flex-direction: row;
    margin-bottom: 3rem;
}

.main-forms .header-form div {
    flex: 1;
}

.main-forms .header-form div:first-child {
    max-width: 250px;
}

.main-forms .header-form .menu {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.main-forms .header-form .menu span {
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
}

.main-forms .header-form .menu span:hover {
    color: #D9D9D9;
}

.main-forms .header-form img {
    width: 100%;
    max-width: 250px;
    height: auto;
    cursor: pointer;
}

/* Body */
.main-forms .body-form {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    align-items: center;
}

.main-forms .body-form h1 {
    font-weight: 500;
    font-size: 90px;
    color: #FFFFFF;
    font-family: "Snug Sharp" !important;
}

.main-forms .body-form .subtitle {
    font-family: "Anek Latin", sans-serif !important;
    font-weight: 500;
    font-size: 30px;
    color: #FFFFFF;
}

.main-forms .body-form>div {
    flex: 1;
}

.main-forms .body-form .form-content {
    display: flex;
    justify-content: center;
}

.main-forms .body-form .form-container {
    padding: 3rem;
    background-color: rgba(255, 255, 255, .6);
    backdrop-filter: blur(3px);
    border-radius: 52px;
}

.main-forms .body-form form {
    max-width: 540px;
}

.main-forms .body-form form input[type=text] {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: #1D1E1C;
    background-color: transparent;
    background-clip: padding-box;
    border: none;
    border-bottom: 2px solid #1D1E1C;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    outline: none;
    margin-bottom: 1rem;
}

.main-forms .body-form form input[type=text]::placeholder {
    color: #1D1E1C;
}

.main-forms .body-form .privacy {
    font-weight: 500;
    font-size: 9px;
    color: #1D1E1C;
    text-align: center;
    margin-bottom: 4rem;
}

.main-forms .body-form .privacy-link {
    color: #1D1E1C;
    font-weight: 800;
}

.main-forms .body-form .captcha-div,
.main-forms .body-form .submit-div {
    align-self: center;
    display: flex;
    justify-content: center;
}

.main-forms .body-form .form-content .row:has(.submit-div) {
    row-gap: 1rem;
}

.main-forms .body-form #btn-submit-brand {
    width: 100%;
    background-color: #432B7A;
    border: 4px solid #432B7A;
    border-radius: 45px;
    font-weight: 800;
    font-size: 24px;
    color: #FFFFFF;
    outline: none;
    box-shadow: none;
}

.main-forms .body-form #btn-submit-brand:hover {
    background-color: #311F5C;
    border: 4px solid #311F5B;
}

.main-forms .body-form .radio-label {
    font-weight: 500;
    font-size: 15px;
    color: #1D1E1C;
}

.main-forms .body-form .custom-radio {
    margin-bottom: 1rem;
}

.main-forms .body-form .custom-control-label {
    font-weight: 500;
    font-size: 16px;
    color: #1D1E1C;
}

.main-forms .body-form .custom-control-input:hover~.custom-control-label::before {
    border: 2px solid #432B7A;
}

.main-forms .body-form .custom-control-input:focus~.custom-control-label::before {
    box-shadow: none;
}

.main-forms .body-form .custom-control-label::before {
    top: .15rem;
    width: 1.25rem;
    height: 1.25rem;
    background-color: transparent;
    border: 2px solid #1D1E1C;
}

.main-forms .body-form .custom-control-label::after {
    top: .15rem;
    width: 1.25rem;
    height: 1.25rem;
    background: transparent;
    border-radius: 20px;
}

.main-forms .body-form .custom-radio .custom-control-input:checked~.custom-control-label::after {
    background: #432B7A;
}

.main-forms .body-form .chips-container {
    margin-top: 4rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.main-forms .body-form .chips-container div {
    color: #FFFFFF;
    border: 3px solid #FFFFFF;
    border-radius: 20px;
    padding: .25rem .75rem;
    font-family: "Snug Sharp" !important;
    font-weight: 600;
    font-size: 20px;
    height: 47px;
    align-content: center;
}

/* Pup-up de Sucesso */
.main-forms .body-form .success-container {
    padding: 3rem;
    background-color: rgba(255, 255, 255, .7);
    backdrop-filter: blur(3px);
    border-radius: 52px;
    text-align: center;
    max-width: 636px;
}

.main-forms .body-form .success-container .success-check {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 3rem;
}

.main-forms .body-form .success-container h2 {
    font-weight: 800;
    font-size: 30px;
    color: #432B7A;
    margin-bottom: 1rem;
}

.main-forms .body-form .success-container p {
    font-weight: 500;
    font-size: 16px;
    color: #432B7A;
}

.main-forms .body-form .success-container .btn-new-register {
    background-color: #432B7A;
    border: none;
    border-radius: 25px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    padding: .5rem 1rem;
    outline: none;
    margin-bottom: 6rem;
    transition: background-color 0.3s ease;
}

.main-forms .body-form .success-container .btn-new-register:hover {
    background-color: #614F89;
}

.main-forms .body-form .success-container .social-media {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 2rem;
}

.main-forms .body-form .social-media img {
    cursor: pointer;
}

/* Footer */
.main-forms .footer-form {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: .5rem;
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
}

.main-forms .footer-form img {
    cursor: pointer;
}

/* Sobre Harmonics */
.about-brand {
    display: flex;
    justify-content: center;
    background-color: #FFFFFF;
    padding: 4rem 0;
}

.about-brand .main-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex: 1;
    max-width: 1590px;
    gap: 4rem;
    align-items: center;
}

.about-brand .main-container div {
    flex: 1;
    align-content: center;
}

.about-brand .main-container .text-content {
    padding: 1rem;
}

.about-brand .main-container .text-content h1 {
    font-family: "Snug Sharp" !important;
    font-weight: 700;
    font-size: 60px;
    color: #432B7A;
    margin-bottom: 3rem;
}

.about-brand .main-container .text-content p {
    font-family: "Anek Latin", sans-serif !important;
    font-weight: 500;
    font-size: 30px;
    color: #1E1E1C;
}

.about-brand .main-container .img-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    height: fit-content;
}

.about-brand .main-container .img-content>div {
    flex: 1;
}

.about-brand .main-container .img-content .first-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.about-brand .main-container .img-content .first-row div {
    flex: 1;
}

.about-brand .main-container .img-content .first-row img {
    width: 100%;
    max-width: 381px;
    height: auto;
}

.about-brand .main-container .img-content .second-row img {
    width: 100%;
    max-width: 785px;
    height: auto;
}

@media (max-width: 1400px) {
    .about-brand .main-container {
        gap: 2rem;
    }

    .about-brand .main-container .text-content h1 {
        font-size: 40px;
    }

    .about-brand .main-container .text-content p {
        font-size: 22px;
    }
}

/* Media Queries */
@media (max-width: 1200px) {
    .main-forms .body-form h1 {
        font-size: 60px;
    }

    .main-forms .body-form .subtitle {
        font-size: 25px;
    }
}

@media (max-width: 967px) {
    .main-forms .header-form {
        gap: 1.5rem;
        flex-direction: column;
    }

    .main-forms .header-form div:first-child {
        text-align: center;
        max-width: none;
    }

    .main-forms .body-form {
        flex-direction: column;
        gap: 2rem;
    }

    .main-forms .footer-form {
        display: none;
    }

    .about-brand .main-container {
        flex-direction: column-reverse;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .main-forms .body-form .privacy {
        margin-bottom: 2rem;
    }

    .main-forms .body-form .success-container h2 {
        font-size: 25px;
    }

    .main-forms .body-form .chips-container {
        margin-top: 2rem;
    }

    .about-brand {
        padding: 2rem 0;
    }

    .about-brand .main-container .text-content h1 {
        font-size: 30px;
        margin-bottom: 1rem;
    }

    .about-brand .main-container .text-content p {
        font-size: 18px;
    }
}

@media (max-width: 620px) {
    .main-forms {
        padding: 2rem 0;
    }

    .main-forms .header-form .menu {
        flex-wrap: wrap;
    }

    .main-forms .header-form .menu span {
        width: 50%;
        text-align: center;
        margin-bottom: 0.5rem;
        font-size: 14px;
    }

    .main-forms .header-form .menu span:nth-child(n+3) {
        width: auto;
    }

    .main-forms .body-form h1 {
        font-size: 40px;
    }

    .main-forms .body-form .subtitle {
        font-size: 18px;
    }

    .main-forms .body-form .form-container .col-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .main-forms .body-form .success-container h2 {
        font-size: 20px;
    }

    .main-forms .body-form .success-container p {
        font-size: 14px;
    }

    .main-forms .body-form .success-container .btn-new-register {
        margin-bottom: 4rem;
    }

    .main-forms .body-form .success-container .success-check {
        width: 40%;
    }
}

@media (max-width: 480px) {
    .main-forms .body-form .form-container {
        padding: 1rem;
        border-radius: 18px;
    }
}