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

body * {
    font-family: "Montserrat", sans-serif !important;
}

/* Voltar */
#btn-top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 999;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: url("https://static.hayapek.com.br/banners/hayamax/landingpage/seja-revenda/btn-to-top.webp");
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
    display: none;
    transition: 0.3s ease;
    z-index: 9999999;
    outline: none;
}

#btn-top:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    #btn-top {
        bottom: 20px;
        right: 20px;
    }
}

/* Sobre */
.about {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.about .container {
    width: 100%;
    display: flex;
    flex-direction: row;
    max-width: 1590px;
}

.about .text-content,
.about .img-content {
    align-content: center;
}

.about .visual-container {
    gap: 5rem;
}

.about .text-content {
    max-width: 530px;
}

.about .img-content {
    text-align: center;
}

.about .text-content .title-hayamax {
    font-size: 15px;
    font-weight: 800;
    color: #C10B25;
}

.about .text-content .title {
    font-size: 30px;
    font-weight: 800;
    color: #C10B25;
}

.about .text-content p {
    font-weight: 500;
    font-size: 30px;
    color: #1D1E1C;
}

.about .text-content .btn-resale {
    background-color: #C10B25;
    border: none;
    border-radius: 25px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    padding: .5rem 1rem;
    outline: none;
    transition: background-color 0.3s ease;
}

.about .text-content .btn-resale:hover {
    background-color: #A10A20;
}

.about .img-content img {
    width: 100%;
    max-width: 950px;
    height: auto;
}

.about .item-container {
    justify-content: space-around;
}

.about .item-container .item h1 {
    font-weight: 700;
    font-size: 80px;
    color: #C10B25;
}

.about .item-container .item h1>span {
    font-size: 40px;
}

.about .item-container .item p {
    font-weight: 700;
    font-size: 30px;
    color: #1D1E1C;
}

@media (max-width: 1200px) {
    .about .text-content .title {
        font-size: 20px;
    }

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

    .about .item-container .item h1 {
        font-size: 60px;
    }

    .about .item-container .item h1>span {
        font-size: 30px;
    }

    .about .item-container .item p {
        font-size: 24px;
    }
}

@media (max-width: 967px) {
    .about {
        padding: 2rem 0;
        gap: 3rem;
    }

    .about .visual-container {
        flex-direction: column;
        gap: 20px;
    }

    .about .text-content {
        max-width: none;
    }

    .about .item-container {
        flex-wrap: wrap;
        text-align: center;
    }

    .about .item-container .item {
        flex: 50%;
    }
}

@media (max-width: 768px) {
    .about .text-content .title {
        font-size: 18px;
    }

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

@media (max-width: 620px) {
    .about .item-container .item h1 {
        font-size: 40px;
    }

    .about .item-container .item h1>span {
        font-size: 25px;
    }

    .about .item-container .item p {
        font-size: 16px;
    }
}

/* Vantagens */
.advantages {
    background-color: #C10B25;
    padding: 4rem 0;
}

.advantages .container {
    display: flex;
    flex-direction: row;
    max-width: 1590px;
}

.advantages .container-title {
    flex: 35%;
}

.advantages .container-title h1 {
    font-weight: 700;
    font-size: 80px;
    color: #FFFFFF;
}

.advantages .container-title .btn-resale {
    background-color: #FFFFFF;
    border: none;
    border-radius: 25px;
    color: #C10B25;
    font-weight: 700;
    font-size: 16px;
    padding: .5rem 1rem;
    outline: none;
    transition: background-color 0.3s ease;
}

.advantages .container-title .btn-resale:hover {
    background-color: #DBDBDB;
}

.advantages .container-items {
    flex: 75%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 0 10%;
}

.advantages .container-items .item {
    display: flex;
    flex-direction: row;
    gap: 25px;
}

.advantages .container-items .img {
    min-width: 74px;
}

.advantages .container-items .text h3 {
    font-weight: 700;
    font-size: 30px;
    color: #FFFFFF;
}

.advantages .container-items .text p {
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
}

@media (max-width: 1200px) {
    .advantages .container-title h1 {
        font-size: 55px;
    }
}

@media (max-width: 967px) {
    .advantages {
        padding: 2rem 0;
    }

    .advantages .container {
        flex-direction: column;
        gap: 2rem;
    }

    .advantages .container-title {
        text-align: center;
    }
}

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

    .advantages .container-items .text h3 {
        font-size: 24px;
    }

    .advantages .container-items .text p {
        font-size: 16px;
    }
}

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

    .advantages .container-items .text h3 {
        font-size: 20px;
    }

    .advantages .container-items .text p {
        font-size: 14px;
    }
}

/* Perfil Ideal */
.ideal-profile {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.ideal-profile .container {
    max-width: 1590px;
}

.ideal-profile .first-layer {
    display: flex;
    flex-direction: row;
    gap: 5rem;
}

.ideal-profile .first-layer div {
    flex: 1;
}

.ideal-profile .first-layer img {
    width: 100%;
    max-width: 782px;
    height: auto;
}

.ideal-profile .first-layer .img,
.ideal-profile .first-layer .content {
    align-content: center;
}

.ideal-profile .first-layer .content .subtitle {
    font-weight: 800;
    font-size: 15px;
    color: #C10B25;
}

.ideal-profile .first-layer .content .title {
    font-weight: 800;
    font-size: 30px;
    color: #1D1E1C;
}

.ideal-profile .first-layer .content span {
    color: #C10B25;
}

.ideal-profile .first-layer .content .text {
    font-weight: 500;
    font-size: 30px;
}

.ideal-profile .first-layer .box {
    background-color: #D8D8D8;
    border-radius: 69px;
    padding: 4rem 4rem 2rem 4rem;
}

.ideal-profile .first-layer .box h2 {
    color: #1D1E1C;
    font-weight: 800;
    font-size: 30px;
}

.ideal-profile .first-layer .box p {
    font-weight: 500;
    font-size: 20px;
}

.ideal-profile .first-layer .btn-div {
    width: 100%;
    text-align: center;
}

.ideal-profile .first-layer .btn-resale {
    background-color: #C10B25;
    border: none;
    border-radius: 25px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    padding: .5rem 1rem;
    outline: none;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.ideal-profile .first-layer .btn-resale:hover {
    background-color: #A10A20;
}

@media (max-width: 1400px) {

    .ideal-profile .first-layer .content .title,
    .ideal-profile .first-layer .content .text,
    .ideal-profile .first-layer .box h2 {
        font-size: 22px;
    }

    .ideal-profile .first-layer .box p {
        font-size: 18px;
    }
}

@media (max-width: 967px) {
    .ideal-profile .first-layer {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .ideal-profile .first-layer .img {
        text-align: center;
    }
}

@media (max-width: 620px) {

    .ideal-profile .first-layer .content .title,
    .ideal-profile .first-layer .content .text,
    .ideal-profile .first-layer .box h2 {
        font-size: 20px;
    }

    .ideal-profile .first-layer .box {
        padding: 2rem;
        border-radius: 30px;
    }
}

.ideal-profile .second-layer .title {
    text-align: center;
    margin-bottom: 3rem;
}

.ideal-profile .second-layer .title h2 {
    font-weight: 800;
    font-size: 40px;
    color: #1D1E1C;
}

.ideal-profile .second-layer .title span {
    color: #C10B25;
}

.ideal-profile .second-layer .title p {
    font-weight: 500;
    font-size: 20px;
    color: #1D1E1C;
}

.ideal-profile .second-layer .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.ideal-profile .second-layer .items .item {
    text-align: center;
    flex: 1;
}

.ideal-profile .second-layer .items .item p {
    font-weight: 500;
    font-size: 18px;
    color: #999999;
}

.ideal-profile .second-layer .items .item img {
    margin-bottom: 2rem;
}

@media (max-width: 967px) {
    .ideal-profile .second-layer br {
        display: none;
    }
}

@media (max-width: 768px) {
    .ideal-profile {
        gap: 2rem;
    }

    .ideal-profile .second-layer .title p {
        font-size: 18px;
    }

    .ideal-profile .second-layer .items .item {
        flex: 50%;
    }
}

.ideal-profile .third-layer {
    padding: 0 4rem;
}

.ideal-profile .third-layer .question-line {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.ideal-profile .third-layer .question-line div {
    flex: 1;
}

.ideal-profile .third-layer .question-line p {
    font-weight: 500;
    font-size: 30px;
    color: #1D1E1C;
}

.ideal-profile .third-layer .bold {
    font-weight: 800 !important;
}

.ideal-profile .third-layer .red {
    color: #C10B25;
}

.ideal-profile .third-layer .div-separator {
    width: 100%;
    height: 1px;
    background-color: #707070;
    margin: 3rem 0 4rem 0;
}

@media (max-width: 967px) {
    .ideal-profile .third-layer .question-line p {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .ideal-profile .third-layer {
        padding: 0 2rem;
    }

    .ideal-profile .third-layer .question-line p {
        font-size: 18px;
    }
}

@media (max-width: 620px) {
    .ideal-profile .third-layer .question-line {
        flex-direction: column;
    }

    .ideal-profile .third-layer .div-separator {
        margin: 1rem 0 2rem 0;
    }
}

@media (max-width: 480px) {
    .ideal-profile .third-layer .question-line p {
        font-size: 16px;
    }
}

/* Marcas */
.brands {
    background-color: #1D1E1C;
    padding: 5rem 2rem;
}

.brands .container-text {
    text-align: center;
    color: #FFFFFF;
}

.brands .container-text .title {
    font-weight: 800;
    font-size: 60px;
    margin: 0;
}

.brands .container-text .subtitle {
    font-weight: 400;
    font-size: 40px;
    margin: 0;
}

.brands .container-text .div-bar {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.brands .container-text .select-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
    border: 1px solid #FFFFFF;
    border-radius: 30px;
    padding: .5rem 1rem;
}

.brands .container-text .select-bar span {
    font-weight: 800;
    font-size: 20px;
    color: #FFFFFF;
    cursor: pointer;
}

.brands .container-text .select-bar .active {
    background-color: #C10B25;
    border: 4px solid #C10C25;
    border-radius: 33px;
    padding: 0rem .75rem;
}

.brands .container-brands {
    display: flex;
    justify-content: center;
    padding: 7rem 0;
}

.brands .container-brands .games,
.brands .container-brands .audio,
.brands .container-brands .electronics {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    row-gap: 6rem;
    column-gap: 20px;
    text-align: center;
    max-width: 1590px;
}

.brands .container-brands .games div,
.brands .container-brands .audio div,
.brands .container-brands .electronics div {
    align-content: center;
    flex: 0 0 calc((100% - 40px) / 3);
}

.brands .container-brands .games img,
.brands .container-brands .audio img,
.brands .container-brands .electronics img {
    max-width: 100%;
    height: auto;
}

.brands-logos {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.brands-logos.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (max-width: 768px) {
    .brands .container-text .title {
        font-size: 40px;
    }

    .brands .container-text .subtitle {
        font-size: 25px;
    }

    .brands .container-text .select-bar span {
        font-size: 16px;
    }

    .brands .container-brands .games div,
    .brands .container-brands .audio div,
    .brands .container-brands .electronics div {
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

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

    .brands .container-text .select-bar {
        flex-direction: column;
        width: 219px;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .brands .container-text .title {
        font-size: 30px;
    }

    .brands .container-text .subtitle {
        font-size: 22px;
    }
}

/* Formulário */
.secondary-forms {
    padding: 4rem 2rem;
    background-color: #FFFFFF;
}

.secondary-forms .container {
    max-width: 1590px;
}

.secondary-forms .text {
    text-align: center;
    margin-bottom: 2rem;
}

.secondary-forms .text p {
    margin: 0;
}

.secondary-forms .text .title {
    font-weight: 800;
    font-size: 60px;
    color: #000000;
}

.secondary-forms .text .subtitle {
    font-weight: 500;
    font-size: 30px;
    color: #000000;
}

.secondary-forms .forms {
    display: flex;
    justify-content: center;
}

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

.secondary-forms 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;
}

.secondary-forms .privacy {
    font-weight: 500;
    font-size: 9px;
    color: #000000;
    text-align: center;
    margin-bottom: 4rem;
}

.secondary-forms .privacy-link {
    color: #C10B25;
}

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

.secondary-forms .row:has(.submit-div) {
    row-gap: 1rem;
}

.secondary-forms #btn-submit {
    width: 100%;
    background-color: #C10B25;
    border: 4px solid #C10C25;
    border-radius: 45px;
    font-weight: 800;
    font-size: 24px;
    color: #FFFFFF;
    outline: none;
    box-shadow: none;
}

.secondary-forms #btn-submit:hover {
    background-color: #A10A20;
    border: 4px solid #A10A20;
}

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

.secondary-forms .custom-radio {
    margin-bottom: 1rem;
}

.secondary-forms .custom-control-label {
    font-weight: 500;
    font-size: 16px;
    color: #000000;
}

.secondary-forms .custom-control-input:hover~.custom-control-label::before {
    border: 2px solid #C10B25;
}

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

.secondary-forms .custom-control-label::before {
    top: .15rem;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #1D1E1C;
}

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

.secondary-forms .custom-radio .custom-control-input:checked~.custom-control-label::after {
    background: #C10B25;
}

@media (max-width: 768px) {
    .secondary-forms .text .title {
        font-size: 40px;
    }

    .secondary-forms .text .subtitle {
        font-size: 25px;
    }

    .secondary-forms .privacy {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .secondary-forms {
        padding: 2rem 1rem;
    }

    .secondary-forms .text .title {
        font-size: 23px;
    }

    .secondary-forms .text .subtitle {
        font-size: 16px;
    }
}

/* Depoimentos */
.comments {
    background-color: #F2F2F2;
    padding: 4rem 0 6rem 0;
}

.comments .container {
    max-width: 1590px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
}

.comments .container div {
    flex: 1;
}

.comments .container .text-container {
    max-width: 558px;
    align-content: center;
}

.comments .container .text-container img {
    width: 100%;
    max-width: 164px;
    height: fit-content;
    margin-bottom: 1rem;
}

.comments .container .text-container h1 {
    font-weight: 600;
    font-size: 60px;
    color: #1D1E1C;
    margin-bottom: 2rem;
}

.comments .container .text-container .btn-div {
    width: 100%;
    text-align: center;
}

.comments .container .text-container .btn-resale {
    background-color: #C10B25;
    border: none;
    border-radius: 25px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    padding: .5rem 1rem;
    outline: none;
    transition: background-color 0.3s ease;
}

.comments .container .text-container .btn-resale:hover {
    background-color: #A10A20;
}

.comments .container .text-container .arrow {
    background: url("https://static.hayapek.com.br/banners/hayamax/landingpage/seja-revenda/carousel-arrow.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 38px;
    height: 38px;
    border: none;
    outline: none;
}

.comments .container .text-container .back {
    transform: rotate(180deg);
}

.comments .container .text-container .carousel-bar-container {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.comments .container .text-container .carousel-bar {
    max-width: 384px;
    height: 18px;
    background: linear-gradient(to right, #1D1E1C 0%, #1D1E1C 50%, #999999 50%, #999999 100%);
    margin: 0 1rem;
}

.comments .container .ratings-container {
    text-align: center;
}

.comments .container .ratings-container .carousel-inner {
    padding-bottom: 3rem;
}

.comments .container .ratings-container .title {
    margin-bottom: 3rem;
    color: #1D1E1C;
    font-weight: 800;
    font-size: 40px;
}

.comments .dialog {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 30px;
    border-bottom-left-radius: 0;
    position: relative;
    width: 100%;
    max-width: 405px;
    min-height: 345px;
    box-shadow: 0px 10px 20px #00000026;
    text-align: left;
}

.comments .dialog::after {
    content: "";
    width: 0;
    height: 0;
    left: 0;
    border-right: 30px solid transparent;
    border-top: 30px solid white;
    position: absolute;
    top: 100%;
}

.comments .dialog-container {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.comments .dialog-container div {
    flex: 0 0 calc(50% - 4rem);
}

.comments .dialog-container .dialog .stars {
    margin-bottom: 3rem;
}

.comments .dialog-container .dialog .stars img {
    width: 100%;
    max-width: 161px;
    height: fit-content;
}

.comments .dialog-container .dialog .text {
    margin-bottom: 3rem;
    font-size: 15px;
    font-weight: 500;
    color: #1D1E1C;
}

.comments .dialog-container .dialog .from {
    font-size: 16px;
    font-weight: 600;
    color: #1D1E1C;
}

@media (max-width: 1400px) {
    .comments .container {
        gap: 1rem;
    }

    .comments .container .text-container {
        max-width: 460px;
    }

    .comments .container .text-container h1 {
        font-size: 40px;
    }
}

@media (max-width: 1200px) {
    .comments .container {
        flex-direction: column;
    }

    .comments .container .text-container {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .comments {
        padding: 2rem 0 3rem 0;
    }

    .comments .dialog-container .dialog .text {
        font-size: 12px;
    }

    .comments .dialog-container .dialog .from {
        font-size: 13px;
    }

    .comments .container .text-container h1 {
        font-size: 30px;
    }

    .comments .container .ratings-container .title {
        font-size: 25px;
    }
}

@media (max-width: 620px) {
    .comments .dialog-container {
        gap: 3rem;
    }

    .comments .dialog-container div {
        flex: 0 0 100%;
    }
}

/* Footer */
.footer {
    background-color: #C10B25;
    text-align: center;
    padding: .75rem 1rem;
}

.footer p {
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    margin: 0;
}

@media (max-width: 768px) {
    .footer p {
        font-size: 14px;
    }
}