@charset "UTF-8";

/* Single Produto */

.single-product {
    position: relative;
    width: 100%;
}

.single-product__hero{
    position: relative;
    width: 100%;
}

.single-product__media{
    height: 75vh;
    width: 100%;
    position: relative;
}

.single-product__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-product__hero-overlay {
    position: absolute;
    inset: 0;
    background-color: #000;
    opacity: 0.45;
    z-index: 1;
    pointer-events: none;
}

.single-product__hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50%, -50% );
    z-index: 2;
    width: 70%;
    max-width: 480px;
    pointer-events: auto;
    text-decoration: none;
}

.single-product__hero-logo-img {
    display: block;
    width: 100%;
    height: auto;
    filter: invert( 1 ) brightness( 1.8 );
    -webkit-filter: invert( 1 ) brightness( 1.8 );
}

@media ( max-width: 991px ) {
    .single-product__hero-logo {
        max-width: 180px;
        width: 70%;
    }
}

.single-product__content{
    padding: 120px 0;
}

@media (max-width: 991px) {
    .single-product__content{
        padding: 60px 0;
    }
}

.product-detail__title{
    font-size: 34px;
    color: #000;
    position: relative;
    padding: 0 10px;
    display: inline-flex;
    margin-bottom: 0;
}

.product-detail__title::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 6px;
    left: 0;
    background-color: #dd9f33;
    bottom: 10px;
    z-index: -1;

}

.product-detail__excerpt{
    font-size: 34px;
    color: #dd9f33;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 20px 0;
}

@media (max-width: 991px) {
    .product-detail__excerpt{
        font-size: 32px;
    }
}

.product-detail__price{
    color: #dd9f33;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-detail__form-wrap{
    margin-top: 40px;
}

.product-detail__form-lead{
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}

.product-detail__cf7 .wpcf7-form input[type="text"],
.product-detail__cf7 .wpcf7-form input[type="email"],
.product-detail__cf7 .wpcf7-form input[type="tel"],
.product-detail__cf7 .wpcf7-form textarea {
    border: none;
    border-bottom: 1px solid #000;
    padding: 10px 0 20px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    background-color: transparent;
    width: 100%;
    box-sizing: border-box;
}

.product-detail__cf7 label{
    width: 100%;
}

.product-detail__cf7 .wpcf7-list-item{
    margin: 0;
}

.product-detail__cf7 .wpcf7-submit{
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    padding: 6px 14px;
    border-radius: 0;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}