/* Banner */
.banner {
    width: 100%;
    min-height: 680px;
    background-image: url("/assets/images/catalogo/banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 130px;
}

.banner .container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.banner h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 64px;
    text-align: center;
    color: #E9501C;
    margin-bottom: 8px;
}

.banner p {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 30px;
}

/* Catálogo */
.catalogo {
    padding: 150px 0;
}

.catalogo .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.catalogo h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 45px;
    text-align: center;
    color: #012169;
    margin: 26px auto 80px auto;
    max-width: 675px;
}

.catalogo h2 span {
    font-weight: 300;
    color: #E9501C;
}

.catalogo-wrapper-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 20px;
}

.catalogo-wrapper-filter-item {
    height: 94px;
    width: 233px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    text-align: center;
    color: #a8a8a8;
    background-color: #F0F0F0;
    border-bottom: 7px solid transparent;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.catalogo-wrapper-filter-item-icon {
    height: 65px;
    width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    position: absolute;
    top: -45px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity .2s;
}

.catalogo-wrapper-filter-item:hover,
.catalogo-wrapper-filter-item.catalogo-wrapper-filter-item-active {
    color: #000000;
    background-color: #FFFFFF;
    border-color: #E9501C;
}

.catalogo-wrapper-filter-item:hover .catalogo-wrapper-filter-item-icon,
.catalogo-wrapper-filter-item.catalogo-wrapper-filter-item-active .catalogo-wrapper-filter-item-icon {
    opacity: 1;
}

.catalogo-wrapper-list {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
}

.catalogo-wrapper-list-item {
    width: 100%;
    max-width: 388px;
    background-color: #F0F0F0;
    border-radius: 12px;
    transition: all .2s;
}

.catalogo-wrapper-list-item > img {
    height: 276px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
}

.catalogo-wrapper-list-item-content {
    padding: 28px 28px 40px 40px;
    position: relative;
}

.catalogo-wrapper-list-item-content > img {
    position: absolute;
    top: 27px;
    right: 28px;
}

.catalogo-wrapper-list-item-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #012169;
    text-transform: uppercase;
}

.catalogo-wrapper-list-item-content p {
    font-size: 16px;
    color: #61676C;
    margin-bottom: 24px;
}

.catalogo-wrapper-list-item-content a {
    height: 45px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    border: 1px solid #E9501C;
    border-radius: 4px;
    color: #E9501C;
    cursor: pointer;
    transition: all .2s;
}

.catalogo-wrapper-list-item:hover {
    background-color: #FFFFFF;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.1);
}

.catalogo-wrapper-list-item:hover .catalogo-wrapper-list-item-content a {
    color: #FFFFFF;
    background-color: #E9501C;
}

.catalogo-wrapper-list-item:hover .catalogo-wrapper-list-item-content a path {
    fill: #FFFFFF;
}

/* Hardwares */
.hardwares {
    padding-bottom: 150px;
}

.hardwares .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hardwares h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    color: #012169;
    margin: 30px auto 0 auto;
}

.hardwares h2 span {
    font-weight: 300;
    color: #E9501C;
}

/* Contact */
.contact {
    display: flex;
    min-height: 1034px;
    padding-top: 100px;
    background-image: url('/assets/images/home/contato-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.contact .container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-content h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 64px;
    color: #FFFFFF;
    max-width: 465px;
    margin-bottom: 22px;
}

.contact-content h2 span {
    color: #E9501C;
}

.contact-content p {
    font-size: 20px;
    line-height: 32px;
    color: #FFFFFF;
    max-width: 486px;
}

.contact-form {
    width: 100%;
    max-width: 486px;
    padding: 40px 38px;
    margin-left: auto;
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF66;
    border-radius: 16px;
    z-index: 2;
    position: relative;
}

.contact-form > p {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
    color: #012169;
    max-width: 390px;
    margin-bottom: 40px;
}

.contact-form form {
    text-align: right;
}

.contact-form input,
.contact-form textarea {
    height: 50px;
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: 1px solid #E4E2DA;
    border-radius: 4px;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #45484C;
}

.contact-form input[type="submit"] {
    height: 44px;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    width: 100%;
    color: #FFFFFF;
    background-color: #E9501C;
    border-radius: 4px;
    margin-bottom: 0;
    transition: all .2s;
}

.contact-form input[type="submit"]:hover {
    background-color: #9f2e09;
}

.contact-form input[type="submit"]:disabled {
    opacity: 0.75;
    cursor: wait;
}

.contact-form textarea {
    min-height: 130px;
}

.contact-form-feedback {
    display: none;
    margin-top: 14px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #111111;
    text-align: left;
}

.contact-form-feedback.is-visible {
    display: block;
}

.contact-form-feedback.is-success {
    color: #0d6b2f;
}

.contact-form-feedback.is-error {
    color: #8f1d1d;
}

@media (max-width: 1024px) {
    .catalogo-wrapper-list {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .contact .container {
        flex-direction: column;
    }

    .contact-content {
        text-align: center;
        margin: 0 auto 20px auto;
    }

    .contact-form {
        margin-right: auto;
    }
}

@media (max-width: 500px) {
    .banner {
        padding-top: 100px;
    }

    .banner h1,
    .contact-content h2 {
        font-size: 42px;
        line-height: 54px;
    }
}
