@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --mocha-mousse: #B98D72;
    --light-mocha: #F5EBE0;
    --dark-brown: #3A2D28;
}

.white{color:#fff;}

.mocha{color: var(--mocha-mousse);}

/* Tipografia */
body {
    font-family: 'Lora', serif;
    color: var(--dark-brown);
	padding-top: 80px;
}

.form-check-input:checked {
	background-color: var(--mocha-mousse);
	border-color: var(--mocha-mousse);
	
}

a{color:var(--mocha-mousse);}

h1, h2, h3, h4, h5, h6,
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.hero-content h2{font-size:35pt !important;}

.Lora{
	font-family: 'Lora', serif;
	color:var(--mocha-mousse);
	font-weight: 500;
	}

/* Cores */
.bg-mocha-mousse {
    background-color: var(--mocha-mousse);
}
.text-mocha-mousse {
    color: var(--mocha-mousse);
}
.btn-mocha {
    background-color: var(--mocha-mousse);
    color: white;
}
.btn-outline-mocha {
    border-color: var(--mocha-mousse);
    color: var(--mocha-mousse);
}

/* Hero Section com Vídeo */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    /* Remove o gradiente pois será substituído pelo vídeo */
}

/* Container do vídeo de fundo */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Estilos do vídeo */
.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* Overlay que mantém a cor da marca */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(185, 141, 114, 0.9) 0%, rgba(156, 111, 83, 0.95) 100%);
    z-index: 1;
}

/* Mantém todos os seus estilos originais da imagem */
.hero-section img {
    position: absolute;
    right: 0;
    bottom: 0;
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(-20px 0 30px rgba(0,0,0,0.2));
    z-index: 2; /* Garante que fique acima do vídeo e overlay */
}

.hero-section img:hover {
    transform: scale(1.02) translateY(-10px);
}

/* Container do conteúdo - garante que fique acima de tudo */
.hero-content {
    position: relative;
    z-index: 3;
}

/* Otimização para mobile */
@media (max-width: 992px) {
    .hero-video-bg {
        display: none; /* Desativa vídeo em mobile */
    }
    
    .hero-section {
        background: linear-gradient(135deg, var(--mocha-mousse) 0%, #9C6F53 100%);
    }
	.hero-content h2{
		font-size: 24pt !important;
		text-align: center;
	}
	.hero-content p.lead{text-align: center;}
	div.btn-mobile a{margin: 0 auto; text-align: center;}
	p{text-align:center;}
	.h4 .fw-bold{text-align:center;}
	img.logo-footer, .center-mobile {
		display: block;
		margin-left: auto !important;
		margin-right: auto !important;
		width: 50%; /* ou o tamanho desejado */
		max-width: 200px; /* ajuste conforme necessário */
}
	.social-icons{
		margin: 0 auto; text-align: center;
		}
	.img-logo-mobile {
		display: block;
		margin: 0 auto !important;
		text-align: center;
	  }
	   h2.display-5 {
    text-align: center;
  }
}

.img-logo-mobile{height: 50px !important;}

/* Navbar Desktop */
.navbar {
    transition: all 0.3s ease;
    padding-top: 1rem;
    padding-bottom: 1rem;	
}

.navbar.scrolled {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
	font-size: 1.2rem;
    color: var(--dark-brown) !important;
    position: relative;
    padding: 0.5rem 0;
    margin: 0 0.5rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mocha-mousse);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Navbar Mobile */
@media (max-width: 991.98px) {
	.hero-section{min-height: 0vh;}
    .hero-section img {
        display: none !important;
    }
	
    .navbar-collapse {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(185, 141, 114, 0.98) 0%, rgba(156, 111, 83, 0.98) 100%);
        backdrop-filter: blur(5px);
        padding: 2rem;
        height: calc(100vh - 80px);
        z-index: 1000;
        overflow-y: auto;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-item {
        margin-bottom: 1.5rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease 0.2s;
    }
    
    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-link {
        color: white !important;
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        text-align: center;
    }
    
    .nav-link::after {
        background: white;
    }
    
    .navbar-toggler {
        padding: 0.5rem;
        z-index: 1001;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-toggler-icon {
	  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%233A2D28' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	  transition: transform 0.3s ease, background-image 0.3s ease;
	}

	.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%233A2D28' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6L24 24M6 24L24 6'/%3e%3c/svg%3e");
	}

}

/* Efeito de scroll */
document.addEventListener('DOMContentLoaded', function() {
    const navbar = document.querySelector('.navbar');
    
    window.addEventListener('scroll', function() {
        if (window.scrollY > 50) {
            navbar.classList.add('scrolled');
        } else {
            navbar.classList.remove('scrolled');
        }
    });
});


/* Abas de serviços */
.nav-tabs .nav-link {
    color: var(--dark-brown);
    border: none;
    padding: 0.5rem 1.5rem;
    position: relative;
}

.nav-tabs .nav-link.active {
    color: var(--mocha-mousse);
    background: transparent;
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--mocha-mousse);
}

/* Cards de produtos */
.card {
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Footer */
footer a {
    transition: color 0.3s ease;
    text-decoration: none;
}

footer a:hover {
    color: var(--mocha-mousse) !important;
}


.hero-section-interna {
    position: relative;
    background: linear-gradient(135deg, var(--mocha-mousse) 0%, #8a6148 100%);
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-section-interna::before {
    content: "";
    position: absolute;
    top: 50%; /* Posiciona no meio vertical */
    right: 5%;
    transform: translateY(-50%); /* Compensa 50% da altura própria */
    width: 500px;
    height: 500px;
    background-image: url('https://ericarosa.thebestdigital.xyz/assets/img/erica-lateral.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.2));
}


.hero-section-interna .container {
    position: relative;
    z-index: 2; /* Garante que o conteúdo fique acima da imagem */
}


Copiar

/* Hero Interna */
.hero-section-interna {
    background: linear-gradient(135deg, var(--mocha-mousse) 0%, #8a6148 100%);
    padding: 6rem 0 4rem;
}

/* Processo de Metodologia */
.process-step {
    position: relative;
    padding-left: 70px;
}

.step-number {
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
}

/* Cards de Serviços */
.icon-box {
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
}

/* Formulário */
.bg-light-mocha {
    background-color: var(--light-mocha);
}

/* Responsivo */
@media (max-width: 992px) {
    .hero-section-interna::before {
        width: 200px;
        height: 200px;
        right: 0;
        opacity: 0.1;
    }
	.process-step {
        padding-left: 50px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-section-interna::before {
        width: 150px;
        height: 150px;
        top: 60%;
    }
	.process-step {
        padding-left: 50px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* Botão do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--mocha-mousse);;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #323232;
    transform: scale(1.1);
}


//* Container do botão */
.back-to-top-container {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(0,0,0,0.1); /* Linha sutil acima do botão */
  margin-top: 2rem; /* Espaço antes do footer */
}

/* Efeitos do botão */
.back-to-top-footer {
  transition: all 0.3s ease;
  position: relative;
  top: -25px; /* Metade da altura para "flutuar" */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.back-to-top-footer:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 12px rgba(185, 141, 114, 0.3);
}




/* Animação do WhatsApp */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.search-box .form-control {
    border-radius: 20px 0 0 20px;
    border-right: none;
}

.search-box .btn {
    border-radius: 0 20px 20px 0;
    border-left: none;
}

/* Cards de Posts */
.card-post {
    transition: all 0.3s ease;
}

.card-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-post img {
    height: 200px;
    object-fit: cover;
    object-position: center;
}

/* Sidebar */
.sidebar .card {
    border-radius: 8px;
    overflow: hidden;
}

.sidebar .list-group-item {
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sidebar .list-group-item:last-child {
    border-bottom: none;
}

/* Paginação */
.pagination .page-item .page-link {
    color: var(--mocha-mousse);
    border-color: var(--light-mocha);
}

.pagination .page-item.active .page-link {
    background-color: var(--mocha-mousse);
    border-color: var(--mocha-mousse);
	color: #fff;
}

Copiar

/* Estilos Específicos do Blog */
.hero-section-interna {
    background: linear-gradient(135deg, var(--mocha-mousse) 0%, #8a6148 100%);
    padding: 6rem 0 4rem;
}

.search-box .form-control {
    border-radius: 20px 0 0 20px;
    border-right: none;
}

.search-box .btn {
    border-radius: 0 20px 20px 0;
    border-left: none;
}

/* Cards de Posts */
.card-post {
    transition: all 0.3s ease;
}

.card-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-post img {
    height: 200px;
    object-fit: cover;
    object-position: center;
}

/* Sidebar */
.sidebar .card {
    border-radius: 8px;
    overflow: hidden;
}

.sidebar .list-group-item {
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sidebar .list-group-item:last-child {
    border-bottom: none;
}

/* Paginação */
.pagination .page-item .page-link {
    color: var(--mocha-mousse);
    border-color: var(--light-mocha);
}

.pagination .page-item.active .page-link {
    background-color: var(--mocha-mousse);
    border-color: var(--mocha-mousse);
}

/* Responsividade */
@media (max-width: 992px) {
    .sidebar {
        padding-left: 0 !important;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section-interna {
        padding: 4rem 0 2rem;
    }
    
    .search-box {
        margin-top: 1.5rem;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top-footer {
    width: 45px !important;
    height: 45px !important;
    top: -22px;
  }    
    .map-container {
        height: 300px;
    }
}


/* Estilos Específicos da Página de Contato */
.contact-info .icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--mocha-mousse) !important;
    color: white !important;
    transform: translateY(-3px);
}

/* Mapa */
.map-container {
    height: 400px;
    overflow: hidden;
}

/* Formulário */
.form-control, .form-select {
    border-color: var(--light-mocha);
}

.form-control:focus, .form-select:focus {
    border-color: var(--mocha-mousse);
    box-shadow: 0 0 0 0.25rem rgba(185, 141, 114, 0.25);
}

/* Carrossel de Clientes */
.clientes-carrossel {
    padding: 0 50px;
    position: relative;
}

.client-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin: 0 10px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(185, 141, 114, 0.15);
}

.client-logo img {
    max-height: 80px;
    width: auto;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Navegação do carrossel */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-prev, 
.owl-next {
    width: 40px;
    height: 40px;
    background-color: var(--mocha-mousse) !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.owl-prev {
    margin-left: -20px;
}

.owl-next {
    margin-right: -20px;
}

.owl-dots {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.owl-dot.active {
    background-color: var(--mocha-mousse) !important;
}


