/* ============== Style ============== */

@media (max-width: 768px) {
	.hide-on-mobile {
		display: none !important;
	}
}

@media (min-width: 769px) and (max-width: 1032px) {
	.hide-on-tablet {
		display: none !important;
	}
}

@media (min-width: 1033px) {
	.hide-on-desktop {
		display: none !important;
	}
}

/* ============== Mobile General Style ============== */

@media only screen and (max-width: 1026px){
h1{
    font-size: 40px!important;
}
h2{
    font-size: 30px!important;
}
h3{
    font-size: 24px!important;
}
h4{
    font-size: 20px!important;
}
h5{
    font-size: 18px!important;
}
h6, p{
    font-size: 16px!important;
}
}

/* ============== Buttons ============== */


/*Buttons */

.wp-block-button__link:hover {
    transform: translateY(-5px);
}
.wp-block-button__link {
    transition: background-color 0.8s ease, color 0.3s ease, border-color 0.3s ease;
}


/* Woocommerce BTNS */

.single_add_to_cart_button{
    background-color: var(--wp--preset--color--custom-white);
    color: var(--wp--preset--color--custom-primary);
    border-radius: 99px;
    border: 1px solid var(--wp--preset--color--custom-white);
    transition: 0.3s ease;

}

.single_add_to_cart_button:hover{
    background-color: var(--wp--preset--color--custom-primary);
    color: var(--wp--preset--color--custom-white);
    border: 1px solid var(--wp--preset--color--custom-white);
}



/* ============== Header Style ============== */

/* Header Wrapper */

.header-wrapper{
position: absolute;
left: 0;
top: 0;
width: 100%;
z-index: 999;
background-color: transparent;
margin-top: 30px !important;
} 


/* Nav Desktop */ 
@media only screen and (max-width: 1032px){

/*Esconde Menu em telas menores */
.nav-primary--desktop{
display: none!important;
}

}

/* Nav Mobile */ 
@media only screen and (min-width: 1033px){

/*Esconde Menu em telas maiores */    
.nav-primary--mobile{
display: none!important;
}
    

}

/* ============== Footer Style ============== */

@media only screen and (max-width: 1026px){
    .footer-content{
    padding-top: 0px!important;

    a, p{
        font-size: 16px!important;

    }
    }
}


/* ============== Menu and Sub-Menu Style ============== */

#modal-3-content{
    ul{
        gap: 0!important;
    }
    li{
        padding: 0!important;

    }

    a{
        color: var(--wp--preset--color--custom-primary);
        padding: 0!important;

    }
}

.wp-block-navigation__responsive-container-close{
    color: var(--wp--preset--color--custom-primary);
}

/* SubMenu */ 
@media only screen and (min-width: 1033px){

    .wp-block-navigation__submenu-container{
        background-color: var(--wp--preset--color--custom-white)!important;
        width: auto; 
        position: absolute!important; 
        left: -10%!important;
        top: 100%!important; 
        display: grid!important;
        grid-template-columns: 1fr !important; /* Define três colunas iguais */
        grid-column-gap: 8px!important;
        grid-row-gap: 8px!important; 
        list-style: none!important;
        padding: 10px!important; 
        border-radius: 16px;

        li{
        border-radius: 16px;
    
            a{
                color: var(--wp--preset--color--custom-secondary)!important;
                font-weight: 500!important;
            }
    
        }
        li a:hover{
            color: var(--wp--preset--color--custom-tertiary)!important;

        }
    }
}


/* ============== Buttons ============== */


/* ============== Main Style ============== */
main{
}
@media only screen and (max-width: 1032px){
main{
}
.main-mobile{
    padding-bottom: 50px!important;

}
.content-wrapper{
    padding-top: 50px!important;
    padding-bottom: 50px!important;
}


}


/* ========================================== 
 =========== Front Page Template ============
 ============================================ */


/* ============== Hero Section ============== */

.hero-section{
    position: grid;

    img{
        position: absolute!important;
        top: 0;
        right: 0;
        width: 100vh!important;
        height: 110vh;
    }
}

@media only screen and (max-width: 1026px){
    
    .hero-section{
        position: relative;
        min-height: 60vh!important;
    
        img{
            position: relative!important;
            width: 100%!important;
            object-fit: inherit;
            margin-top: 40px;
            height: 200px;
        }
    }
    .hero--wrapper{
        padding-top: 150px!important;
    }
}

.hero--text{
    z-index: 90;
}

.hero-img img {
    filter: brightness(50%);
}




.scroll-down{
    position: absolute;
    border: 1px solid var(--wp--preset--color--custom-white);
    width: 100px!important;
    height: 100px!important;
    bottom: 15vh;
    right: 5%;
    z-index: 95!important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    a{
        font-size: 54px;
        font-weight: 200;
    }

}

@keyframes slideDownFadeOut {
    0% {
        opacity: 1;
        transform: translateY(-100%);
    }
    90% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

.scroll-down a{
    color: var(--wp--preset--color--custom-white);
    animation: slideDownFadeOut 1.5s ease-in-out infinite;
}

.scroll-down:hover a {
    color: var(--wp--preset--color--custom-primary);
    background-color: var(--wp--preset--color--custom-white);
    animation: none;
}



@media only screen and (max-width: 1032px){
    .scroll-down{
        position: absolute;
        border: 1px solid var(--wp--preset--color--custom-white);
        width: 80px!important;
        height: 80px!important;
        bottom: 15vh;
        right: 2%;
        z-index: 95!important;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    
        a{
            color: var(--wp--preset--color--custom-white);
        }
    }
}


/* ============== Partners Section ============== */


/* ============== About Section ============== */

.about-content-left{
    position: relative;

    img{
        position: absolute;
        top: 200px;
        left: 70%;
        /* transform: translate(-0%, -0%); */
        max-width: 80%;
        filter: brightness(150%);
    }
}

.about-content-right{
    z-index: 99!important;

}

@media only screen and (max-width: 1032px){
    .about-content-left{
        position: relative;
    
        img{
            position: relative!important;
            left: 70%;
            /* transform: translate(-0%, -0%); */
            max-width: 100%;
        }
    }

}


/* ============== Services Section ============== */

@media only screen and (min-width: 1033px){
    .services-box--home:nth-child(2){
        transform: translateY(-70px)!important;
    
    }
    
    .services-box--home:last-child{
        transform: translateY(-140px)!important;
    
    }
}


.service--content-box {
    cursor: pointer;
    position: relative; 
}

.service--content-box::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 100%; /* Coloca o pseudo-elemento acima do .service--content-box */
    left: 50%; /* Começa do centro */
    width: 0;
    height: 1px;
    background-color: var(--wp--preset--color--custom-primary);
    opacity: 0;
    transform: translateX(-50%); /* Transforma para centralizar */
    transition: width 0.6s, opacity 0.8s; /* Transições suaves para largura e opacidade */
}

.service--content-box:hover::before,
.service--content-box:focus::before {
    opacity: 1;
    width: 100%;
    cursor: pointer;
}

.arrow-up a{
    font-size: 22px;
}

.service--content-box:hover .arrow-up a {
    transform: translateY(-10px);
    transition: transform 0.3s ease-in-out; /* Adiciona uma transição suave */
}

/* ============== CTA Section ============== */

@media only screen and (min-width: 1033px){
    .cta-section{
        position: relative;
    
    }
    
    .cta-content-right{
        position: relative;
    
        
    }
    .cta-content-img{
        
        img{
            position: absolute;
            right: 65%;
        }
            
        
    }
    
    .imgs-row{
            left: 10%;
            top: 80%;
            display: flex!important;
            flex-direction: row!important;
            gap: 50px;
    
            img{
               
               }
    
    
    }
}

/* ============== Process Section  ============== */




/* ============== Blog Section  ============== */

@media only screen and (min-width: 1033px){
    .blog-section--content-right{
        position: relative;
    }
    
    .blog-section--content-right-title{
        position: absolute;
        width: clamp(300px, 50vw, 800px);
        bottom: 80%;
        right: 0%;
    }
}



/* ============== Footer Section  ============== */

    
.footer-wrapper{
    position: relative;
}

.contact-section{
    position: absolute;
    bottom: 70%;

}

/* ========================================== 
 =========== About Page Template ============
 ============================================ */

 .img-gallery--wrapper{
 }

.img-gallery--wrapper .img-gallery--column:last-child{
    transform: translateY(100px); 

}




/* ============== Newsletter Form ============== */

.newsletter-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 1032px){
    .newsletter-form {
        padding: 0 20px; 
    }
}

.input-group {
    position: relative;
    width: 100%;
    padding-bottom: 15px;
}

.newsletter-input {
    width: 100%;
    max-width: auto;
    padding: 10px; /* Espaço para o botão */
    padding-right: 120px; /* Espaço para o botão */
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--wp--preset--color--custom-tertiary);
    font-size: 16px;
    transition: border-color 0.3s;
    display: flex;
    flex-direction: row;
    align-items:center ;
    justify-content: space-between;
    
}
@media only screen and (max-width: 1032px){
.newsletter-input {
    width: auto;
    max-width: 100%;
}
}

.newsletter-input::placeholder {
    color:var(--wp--preset--color--custom-white);

}

.newsletter-input:focus {
    outline: none;
    border-bottom: 1px solid var(--wp--preset--color--custom-white);
}

.newsletter-button {
    position: absolute;
    width: 126px;
    left: 100%;
    top: -20px;
    background-color: var(--wp--preset--color--custom-white);
    color: var(--wp--preset--color--custom-primary);
    border: none;
    border-radius: 99px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    height: 100%;
    border-left: 1px solid var(--wp--preset--color--custom-tertiary); 
}

@media only screen and (max-width: 1032px){

.newsletter-button {
    position: relative;
    position: absolute;
    width: 90%;
    left: 0%;
    top: 50px;
    
}
}

.newsletter-button:hover {
    background-color: var(--wp--preset--color--custom-tertiary);
    color: var(--wp--preset--color--custom-white);
}



/* ========================================== 
 =========== Service Page Template ============
 ============================================ */

@media only screen and (min-width: 1033px){
 

.services-template--hero{
    position: relative;

}

.services-template--hero-img{
    position: relative;
    
}

.hero-img--container{
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0%;
}

.services--box:hover {
    border-top: 1px solid var(--wp--preset--color--custom-primary)!important;
}
}


/* ========================================== 
 =========== Single Service Page Template ============
 ============================================ */
@media only screen and (min-width: 1033px){

    .single-services-template--hero{
        position: relative;
    
    }
    .single-services-template--hero-img{
        position: relative;
    
    }
    .single-services-hero-img--container{
        position: absolute;
        width: 100%;
        top: -200px;
        left: 0%;
    }
    
}

@media only screen and (max-width: 1032px){
    .single-services-template--hero-img{
    }
    .single-services-hero-img--container{
        max-width: 90%!important;
        height: 300px!important;
        object-fit: cover!important;

    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
    margin: auto;
}

.contact-form input {
    height: 72px;
    padding: 0.5rem;
    font-size: 1rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--wp--preset--color--custom-secondary);
    color: var(--wp--preset--color--custom-primary);
    transition: 0.3s ease;
}
.contact-form input:focus  {
    outline: none;
    border-bottom: 1px solid var(--wp--preset--color--custom-white);

}


.contact-form input::placeholder {
    color: var(--wp--preset--color--custom-tertiary);
}

.contact-form button {
    margin: 0 auto;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background: var(--wp--preset--color--custom-white);
    color: var(--wp--preset--color--custom-primary);
    height: 61px;
    width: 372px;
    border: none;
    border-radius: 99px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--wp--preset--color--custom-primary);
    color: var(--wp--preset--color--custom-white);
    border: 1px solid var(--wp--preset--color--custom-white);
}

/* ========================================== 
 =========== Single Service Page Template ============
 ============================================ */


 

 @media only screen and (min-width: 1032px){
    .portfolio-main{
        position: relative;
     }
    
     .portfolio-content{
        margin-top: -150px;
     }
 }

 @media only screen and (max-width: 1032px){
    .portfolio-main{
        position: relative;
        padding-bottom: 100px!important;
     }
     .portfolio-hero{
        min-height: auto!important;
     }
    .portfolio-content{
        margin-top: -50px;
     }
 }

 /* ========================================== 
 =========== Blog Post Page Template ============
 ============================================ */
@media only screen and (min-width: 1033px){
    .hero-section--blog-post{
        position: relative;
    
        img{
            position: absolute!important;
            top: 0;
            left: 0;
            width: 100vh!important;
            height: 120vh;
            filter: brightness(50%);
            z-index:80 ;
        }
    } 
}
 

.scroll-down-left{
    position: absolute;
    border: 1px solid var(--wp--preset--color--custom-white);
    width: 100px!important;
    height: 100px!important;
    bottom: 15vh;
    left: 5%;
    z-index: 95!important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    a{
        font-size: 54px;
        font-weight: 200;
    }

}

@keyframes slideDownFadeOut {
    0% {
        opacity: 1;
        transform: translateY(-100%);
    }
    90% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

.scroll-down-left a{
    color: var(--wp--preset--color--custom-white);
    animation: slideDownFadeOut 1.5s ease-in-out infinite;
}

.scroll-down-left:hover a {
    color: var(--wp--preset--color--custom-primary);
    background-color: var(--wp--preset--color--custom-white);
    animation: none;
}

@media only screen and (max-width: 1032px){
    .scroll-down-left{
        position: absolute;
        border: 1px solid var(--wp--preset--color--custom-white);
        width: 80px!important;
        height: 80px!important;
        bottom: 25vh;
        left: 80%;
        z-index: 95!important;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    
        a{
            color: var(--wp--preset--color--custom-white);
        }
    }
}



/* ========================================== 
 =========== 404 Template ============
 ============================================ */

@media only screen and (min-width: 1033px){
    .main-404{

        h1{
        margin-top: -250px!important;
        }
    }
}



/* ========================================== 
 =========== Aditional Styles ============
 ============================================ */

/* ============== Overlaping Collumns Effects ============== */

.custom-media-text.has-media-on-the-right .wp-block-heading:first-child {
    position: relative;
	margin-right: -150px;
    width: clamp(300px, 50vw, 700px);
    z-index: 90;

}

.custom-media-text:not(.has-media-on-the-right) .wp-block-heading:first-child {
    position: relative;
	margin-left: -150px;
    width: clamp(300px, 50vw, 700px);
    z-index: 90;
}

@media (max-width: 640px) {
  
    .custom-media-text:not(.has-media-on-the-right) .wp-block-heading:first-child  {
        margin-left: 0px !important;
    }
    
    .custom-media-text.has-media-on-the-right .wp-block-heading:first-child  {
        margin-right: 0px !important;
    }
    
}


/* ============== Animations Effects ============== */

.show-up-effect {
    visibility: visible;
}

.slide-up-effect {
    opacity: 1;
    transform: translateY(100px); /* Inicialmente deslocado para baixo */
}

.image-zoom {
    overflow: visible; 
    z-index: 0;

}
.image-zoom img {
    transition: transform 0.5s ease-in-out; 
    z-index: 0;
}

.image-zoom img:hover {
    transform: scale(1.05); 
    cursor: pointer;
    z-index: 0;
}

.black-white img {
    filter: grayscale(100%);
    /* transition: filter 0.5s ease-in-out; */
}

.hover-border-effect {
    cursor: pointer;
    position: relative; /* Necessário para o posicionamento correto do pseudo-elemento ::after */
}

.hover-border-effect::after {
    content: '';
    display: block;
    position: absolute;
    top: 100%; /* Coloca o pseudo-elemento abaixo do .hover-border-effect */
    left: 50%; /* Começa do centro */
    width: 0;
    height: 1px;
    background-color: var(--wp--preset--color--custom-primary);
    opacity: 0;
    transform: translateX(-50%); /* Transforma para centralizar */
    transition: width 0.6s, opacity 0.8s; /* Transições suaves para largura e opacidade */
}

.hover-border-effect:hover::after,
.hover-border-effect:focus::after {
    opacity: 1;
    width: 100%;
    cursor: pointer;
}

/* Efeito de hover para mover .wp-block-details para a direita */
.wp-block-details:hover {
    transform: translateX(15px);
    transition: transform 0.3s ease-in-out;
}


/* ========================================== 
 =========== WooCommerce Styles ============
 ============================================ */

/* Estilos personalizados para o WooCommerce */

/* Estiliza o select no formulário de ordenação */
.woocommerce-ordering select.orderby {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--wp--preset--color--custom-secondary);
    color: var(--wp--preset--color--custom-primary);
    font-size: 18px;
    padding: 10px 0;
    width: 100%;
    transition: border-color 0.3s ease-in-out;
}

.woocommerce-ordering select.orderby::placeholder {
    color: var(--wp--preset--color--custom-primary);
}

.woocommerce-ordering select.orderby:focus {
    border-bottom: 1px solid var(--wp--preset--color--custom-white);
    outline: none;
}

/* Estiliza o botão de envio */
.woocommerce-ordering button {
    background-color: var(--wp--preset--color--custom-white);
    color: var(--wp--preset--color--custom-primary);
    border-radius: 99px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.woocommerce-ordering button:hover {
    background-color: var(--wp--preset--color--custom-secondary);
    color: var(--wp--preset--color--custom-white);
}

.onsale{
    background-color: var(--wp--preset--color--custom-tertiary)!important;
}

 .wc-block-mini-cart__shopping-button{
color: var(--wp--preset--color--custom-primary);
border: 1px solid var(--wp--preset--color--custom-primary);

}

