body { font-family: 'Lato', sans-serif; }
.fundo_topo_banner {
position: relative;
height: 100vh;
max-height: 600px;
display: flex;
align-items: center;
justify-content: center;
transition: background-image 0.5s ease-in-out;
}
.fundo_topo_banner h2 { color: white; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); }
.modal_youtube {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
}
.modal_youtube_content {
margin: 15% auto;
padding: 20px;
width: 80%;
max-width: 600px;
position: relative;
}
.close {
color: #fff;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}

/* Estilizando o menu superior */
.menu-superior {
background-color: #181818; /* Fundo preto */
padding: 10px;
}

/* Estilizando o botão de menu mobile */
.navbar-toggler {
color: #ffffff; /* Cor branca para o ícone do menu */
}

/* Estilizando os itens do menu */
.menu-superior a {
color: white; /* Cor padrão dos links */
text-decoration: none;
margin: 0 15px;
}

/* Efeito de hover */
.menu-superior a:hover {
color: #AD9271; /* Cor ao passar o mouse */
}
.close:hover { color: #ccc; }
footer { background-color: #343a40; color: white; }
footer a { color: white; text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* Estilizando o carrossel de parceiros */
.customer-logos .slide {
display: flex;
justify-content: center;
align-items: center;
padding: 10px;
}

.customer-logos .slide img {
max-height: 60px; /* Reduzido para melhor equilíbrio visual */
width: auto;
transition: transform 0.3s ease;
}

.customer-logos .slide img:hover {
transform: scale(1.1);
}

/* Estilizando a galeria de miniaturas no footer */
.gallery {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.gallery .thumbnail {
cursor: pointer;
width: 60px; /* Tamanho das miniaturas */
height: 60px;
overflow: hidden;
}

.gallery .thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

.gallery .thumbnail img:hover {
transform: scale(1.1);
}


/* Estilo do modal */
.modal {
display: none; /* Escondido por padrão */
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8); /* Fundo escuro */
justify-content: center;
align-items: center;
}




/* Estilo da imagem no modal */
#modalImage {
max-width: 90%;
max-height: 90vh;
width: auto;
height: auto;
object-fit: contain;
display: flex;
flex-direction: column; /* Alinha itens em coluna */
align-items: center;
position: relative;
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
}



/* Estilo do botão de fechar */
.modal-close {
color: white;
font-size: 25px;
font-weight: bold;
cursor: pointer;
position: relative;
top: 10px;

right: -30%;

}


.modal-close:hover,
.modal-close:focus {
color: #999;
text-decoration: none;
}

footer a:hover { color: #AD9271; text-decoration: none; }

/* Hero carousel sizing */
.hero-carousel .carousel-item img {
    height: 360px;
    object-fit: cover;
}

/* Pre-chat (Tawk.to) container */
#tawkto-pre-chat-form-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1060; /* above most elements */
}

#tawkto-pre-chat-form {
    display: none; /* hidden by default, shown when Start Chat is clicked */
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 16px;
    width: 320px;
    max-width: 90vw;
}

#tawkto-pre-chat-form-container #start-chat-button {
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Estilos comuns para cards e containers */
.card-shadow {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-shadow:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.rounded-container {
    border-radius: 8px;
    overflow: hidden;
}

.transition-effect {
    transition: all 0.3s ease;
}

/* Estilos para títulos de seção */
.section-title-left {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.section-title-left:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #626465;
}

.section-title-center {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
}

.section-title-center:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #dc3545;
}

/* Estilos para o menu principal */
.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #AD9271;
}

/* Ajuste para telas menores */
@media (max-width: 991px) {
    .navbar-nav {
        padding-top: 1rem;
        width: 100%;
    }
    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        text-align: left;
    }
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        display: block;
        width: 100%;
    }
}
/* Brand palette overrides to remove default Bootstrap blue */
:root {
    --brand-primary: #AD9271; /* warm neutral (golden-brown) */
}

/* Override Bootstrap primary button to brand color */
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--brand-primary);
    --bs-btn-border-color: var(--brand-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #198754;
    --bs-btn-hover-border-color: #198754;
    --bs-btn-focus-shadow-rgb: 173, 146, 113;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #8c7156;
    --bs-btn-active-border-color: #8c7156;
}

/* Cookie consent banner styling */
.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1080;
    background: rgba(0,0,0,0.9);
    color: #f8f9fa;
    padding: 12px 16px;
    display: none; /* hidden by default; JS shows when needed */
}
.cookie-consent-banner p {
    margin: 0 0 8px 0;
}
.cookie-consent-banner a { color: #ffc107; text-decoration: underline; }
.cookie-consent-banner .btn { margin-left: 8px; }

/* Existing styles below */
body { font-family: 'Lato', sans-serif; }
.fundo_topo_banner {
position: relative;
height: 100vh;
max-height: 600px;
display: flex;
align-items: center;
justify-content: center;
transition: background-image 0.5s ease-in-out;
}
.fundo_topo_banner h2 { color: white; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); }
.modal_youtube {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
}
.modal_youtube_content {
margin: 15% auto;
padding: 20px;
width: 80%;
max-width: 600px;
position: relative;
}
.close {
color: #fff;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}

/* Estilizando o menu superior */
.menu-superior {
background-color: #181818; /* Fundo preto */
padding: 10px;
}

/* Estilizando o botão de menu mobile */
.navbar-toggler {
color: #ffffff; /* Cor branca para o ícone do menu */
}

/* Estilizando os itens do menu */
.menu-superior a {
color: white; /* Cor padrão dos links */
text-decoration: none;
margin: 0 15px;
}

/* Efeito de hover */
.menu-superior a:hover {
color: #AD9271; /* Cor ao passar o mouse */
}
.close:hover { color: #ccc; }
footer { background-color: #343a40; color: white; }
footer a { color: white; text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* Estilizando o carrossel de parceiros */
.customer-logos .slide {
display: flex;
justify-content: center;
align-items: center;
padding: 10px;
}

.customer-logos .slide img {
max-height: 60px; /* Reduzido para melhor equilíbrio visual */
width: auto;
transition: transform 0.3s ease;
}

.customer-logos .slide img:hover {
transform: scale(1.1);
}

/* Estilizando a galeria de miniaturas no footer */
.gallery {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.gallery .thumbnail {
cursor: pointer;
width: 60px; /* Tamanho das miniaturas */
height: 60px;
overflow: hidden;
}

.gallery .thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

.gallery .thumbnail img:hover {
transform: scale(1.1);
}


/* Estilo do modal */
.modal {
display: none; /* Escondido por padrão */
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8); /* Fundo escuro */
justify-content: center;
align-items: center;
}




/* Estilo da imagem no modal */
#modalImage {
max-width: 90%;
max-height: 90vh;
width: auto;
height: auto;
object-fit: contain;
display: flex;
flex-direction: column; /* Alinha itens em coluna */
align-items: center;
position: relative;
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
}



/* Estilo do botão de fechar */
.modal-close {
color: white;
font-size: 25px;
font-weight: bold;
cursor: pointer;
position: relative;
top: 10px;

right: -30%;

}


.modal-close:hover,
.modal-close:focus {
color: #999;
text-decoration: none;
}

footer a:hover { color: #AD9271; text-decoration: none; }

/* Hero carousel sizing */
.hero-carousel .carousel-item img {
    height: 360px;
    object-fit: cover;
}

/* Pre-chat (Tawk.to) container */
#tawkto-pre-chat-form-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1060; /* above most elements */
}

#tawkto-pre-chat-form {
    display: none; /* hidden by default, shown when Start Chat is clicked */
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 16px;
    width: 320px;
    max-width: 90vw;
}

#tawkto-pre-chat-form-container #start-chat-button {
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Estilos comuns para cards e containers */
.card-shadow {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-shadow:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.rounded-container {
    border-radius: 8px;
    overflow: hidden;
}

.transition-effect {
    transition: all 0.3s ease;
}

/* Estilos para títulos de seção */
.section-title-left {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.section-title-left:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #626465;
}

.section-title-center {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
}

.section-title-center:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #dc3545;
}

/* Estilos para o menu principal */
.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #AD9271;
}

/* Ajuste para telas menores */
@media (max-width: 991px) {
    .navbar-nav {
        padding-top: 1rem;
        width: 100%;
    }
    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        text-align: left;
    }
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        display: block;
        width: 100%;
    }
}


/* --- Custom additions for chat and WhatsApp (2025-09-18) --- */
#tawkto-pre-chat-form {
    position: relative;
    padding-top: 36px; /* room for close button */
}
#tawkto-pre-chat-form #pre-chat-close {
    position: absolute;
    top: 8px;
    right: 8px;
}
.btn-whatsapp {
    background-color: #25D366;
    border-color: #25D366;
    color: #fff;
}
.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background-color: #1DA851;
    border-color: #1DA851;
    color: #fff;
}
.btn-whatsapp .whatsapp-icon { display: inline-flex; }


/* Overrides applied to replace #AD9271 with WhatsApp green as requested (2025-09-19) */
:root { --brand-primary: #25D366; }
.menu-superior a:hover,
.navbar-nav .nav-link:hover,
footer a:hover {
  color: #25D366 !important;
}
.btn-primary {
  --bs-btn-bg: var(--brand-primary);
  --bs-btn-border-color: var(--brand-primary);
  --bs-btn-hover-bg: #198754; /* darker green for hover */
  --bs-btn-hover-border-color: #198754;
  --bs-btn-active-bg: #1B7A46; /* even darker for active */
  --bs-btn-active-border-color: #1B7A46;
}


/* === Hero carousel readability and transition refinements (2025-09-19 rev B) === */
.hero-carousel .carousel-item { position: relative; }
/* Remove full-slide veil; improve only the caption area as requested */
.hero-carousel .carousel-item img { height: 360px; object-fit: cover; transition: transform 6s ease-in-out; }
/* Gentle Ken Burns zoom while slide is active */
.hero-carousel .carousel-item.active img { transform: scale(1.05); }
.hero-carousel .carousel-caption {
  background: rgba(0,0,0,0.5); /* background only behind the text */
  backdrop-filter: saturate(120%) blur(2px);
  border-radius: .5rem;
  padding: 1rem 1.25rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.hero-carousel .carousel-caption h2,
.hero-carousel .carousel-caption p { color: #fff; }
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon { filter: drop-shadow(0 1px 2px rgba(0,0,0,0.6)); }
/* Smoother cross-fade between slides */
.hero-carousel.carousel-fade .carousel-item { transition: opacity 1.2s ease-in-out; }
/* Subtle caption entrance on active slide */
.hero-carousel .carousel-item.active .carousel-caption { animation: captionIn .6s ease .2s both; }
@keyframes captionIn { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: translateY(0);} }
@media (max-width: 576px) {
  .hero-carousel .carousel-item img { height: 220px; }
  .hero-carousel .carousel-caption {
    left: 0; right: 0; bottom: 0; transform: none; width: 100%;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.8) 100%);
    padding: .75rem 1rem;
  }
}

/* Layout: Sticky footer */
html, body { height: 100%; }
body { min-height: 100vh; display: flex; flex-direction: column; }
header { flex: 0 0 auto; }
#main-content { flex: 1 0 auto; }
footer { margin-top: auto; }

/* Utility: full-bleed section inside container-based pages */
.full-bleed { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
