#contato {
    position: relative;
    min-height: 100vh;
    padding: 15rem 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)), url(../IMGS/bg-produtos.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.contact .content {
    max-width: 800px;
    text-align: center;
}

.content__texto {
    padding: 0 4rem;
    color: #fff;
}

.content__texto h2 {
    text-shadow: 1px 1px 1px #000;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.content__texto h3 {
    text-shadow: 1px 1px 1px #000;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 500;
    margin-bottom: 4.6rem;
    line-height: 1.5;
}

.content__texto p {
    font-weight: 500;
    font-size: 1.2rem;
    text-shadow: 1px 1px 1px #000;
    line-height: 1.5;
}

@media (max-width: 1000px) {
    .content__texto {
        transition: all .45s ease;
        padding: 0 0;
    }
}

.contact .content h2 {
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
}

.contact .content p {
    font-weight: 300;
    color: #fff;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
    background-color: #fff;
    padding: 1.5rem 0rem;
}

.container .contactInfo {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.container .contactInfo .box {
    position: relative;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 550px) {
    .container .contactInfo .box {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        text-align: center;
    }
}

.container .contactInfo .box .icon {
    min-width: 60px;
    height: 60px;
    display: flex;
    background-color: var(--laranja-claro);
    justify-content: center;
    align-items: center;
    font-size: 22px;
    border-radius: 50%;
    margin-top: 2rem;
}

.container .contactInfo .box .icon:hover {
    transition: all .45s ease;
    transform: scale(1.1);
}

.container .contactInfo .box .text {
    display: flex;
    margin-left: 20px;
    font-size: 1rem;
    color: #000;
    flex-direction: column;
    font-weight: 300;
    margin-top: 2rem;
}

.container .contactInfo .box .text h3 {
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--laranja-escuro);
}

.container .contactInfo .box .text p {
    margin-top: 1rem;
    font-weight: 400;
}

.container .contactInfo .box .text p:hover {
    transition: all .45s ease;
    transform: translateX(7px);
}

.contactForm {
    width: 40%;
    padding: 40px;
    background: var(--laranja-claro);
    margin-top: 2rem;
}

.contactForm h2 {
    font-size: 30px;
    color: #000;
    font-weight: 500;
}

.contactForm .inputBox {
    position: relative;
    width: 100%;
    margin-top: 10px;
    padding-top: 0.7rem;
}

.contactForm .inputBox input,
.contactForm .inputBox textarea {
    width: 100%;
    padding: 5px 0;
    font-size: 1rem;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
}

.contactForm .inputBox textarea {
    padding: 15px 0;
}

.contactForm .inputBox span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 1rem;
    margin: 10px 0;
    pointer-events: none;
    transition: all .45s ease;
    color: #666;
}

.contactForm .inputBox input:focus~span,
.contactForm .inputBox input:valid~span,
.contactForm .inputBox textarea:focus~span,
.contactForm .inputBox textarea:valid~span {
    color: #000;
    font-size: 13px;
    transform: translateY(-20px);
    font-weight: 500;
}


.contactForm .inputBox button {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
}

.contactForm .inputBox button:hover {
    transition: all .45s ease;
    box-shadow: 0 0.5em 1em -0.4em #000;
    transform: translateY(-0.15em);
}

@media (max-width: 991px) {
    .contact {
        padding: 50px;
    }

    .container {
        flex-direction: column;
    }

    .container .contactInfo {
        margin-bottom: 40px;
    }

    .container .contactInfo,
    .contactForm {
        width: 100%;
    }
}

.text__link {
    text-decoration: none;
    color: #000;
}

.btn-buy:link, .btn-buy:visited {
    background-color: var(--laranja-claro);
    color: white;
    padding: 14px 25px;
    margin: 0 auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    justify-content: center;
    width: 120px;
}

.btn-buy:hover, .btn-buy:active {
    background-color: var(--laranja-escuro);
    transition: all .45s ease;
    box-shadow: 0 0.4em 0.8em -0.4em var(--laranja-escuro);
    transform: translateY(-0.15em);
}

.div-produtos h5 {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

.div-produtos h4 {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
    text-align: center;
}

.image-container {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
/* ESTE SITE FOI DESENVOLVIDO POR NICHOLAS GERADE - COPYRIGHT © 2024 */