*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f3ef;
    color:#333;
}

/* NAVBAR */
.navbar{
    position:fixed;
    width:100%;
    top:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    background:rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    z-index:100;
}

.logo{
    font-size:22px;
    font-weight:600;
}

/* MENU DESKTOP */
.nav-links{
    display:flex;
    gap:25px;
    align-items:center;
}

.nav-links a, .dropdown span{
    text-decoration:none;
    color:#333;
    cursor:pointer;
}

.nav-links a:hover{
    color:#c4a16a;
}

/* DROPDOWN */
.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:30px;
    background:#fff;
    padding:10px;
    border-radius:8px;
    display:none;
    flex-direction:column;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.dropdown:hover .dropdown-menu{
    display:flex;
}

.dropdown-menu a{
    padding:5px 10px;
}

/* MENU MOBILE */
.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100%;
    background:#fff;
    padding:30px;
    display:flex;
    flex-direction:column;
    gap:15px;
    transition:0.4s;
    z-index:200;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu a{
    text-decoration:none;
    color:#333;
    font-size:18px;
}

/* SUBMENU MOBILE */
#submenu{
    display:none;
    flex-direction:column;
    margin-left:10px;
}

#submenu.open{
    display:flex;
}

/* HERO */
.hero{
    height:100vh;
    position:relative;
}

.hero video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.video-mobile{display:none;}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
}

.hero-content h1{
    font-size:50px;
}

.hero-content p{
    margin-top:10px;
    font-size:20px;
}

.btn{
    margin-top:20px;
    padding:12px 25px;
    border:none;
    background:#c4a16a;
    color:#fff;
    border-radius:30px;
    cursor:pointer;
}

/* MODAL */
.modal{
    position:fixed;
    width:100%;
    height:100%;
    display:none;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,0.6);
}

.modal-content{
    background:#fff;
    padding:30px;
    border-radius:10px;
    width:90%;
    max-width:400px;
}

/* RESPONSIVO */
@media(max-width:900px){

    .nav-links{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .video-desktop{display:none;}
    .video-mobile{display:block;}

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:16px;
    }
}



.modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:none;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,0.6);
    z-index:9999; /* 🔥 MUITO IMPORTANTE */
}



/* MODAL PREMIUM */
.modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:none;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    z-index:9999;
}

/* CONTEÚDO */
.modal-content{
    background:#ffffff;
    padding:35px 30px;
    border-radius:15px;
    width:90%;
    max-width:420px;

    display:flex;
    flex-direction:column;
    gap:15px;

    box-shadow:0 20px 60px rgba(0,0,0,0.2);

    animation:modalDrop 0.5s ease;
}

/* ANIMAÇÃO PREMIUM (descendo) */
@keyframes modalDrop{
    from{
        opacity:0;
        transform:translateY(-40px) scale(0.95);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

/* TÍTULO */
.modal-content h2{
    text-align:center;
    margin-bottom:10px;
    font-weight:600;
    color:#333;
}

/* INPUTS */
.modal-content input,
.modal-content textarea{
    width:100%;
    padding:12px 14px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
    font-size:14px;
    transition:0.3s;
}

/* EFEITO FOCUS PREMIUM */
.modal-content input:focus,
.modal-content textarea:focus{
    border-color:#c4a16a;
    box-shadow:0 0 0 3px rgba(196,161,106,0.15);
}

/* TEXTAREA */
.modal-content textarea{
    min-height:100px;
    resize:none;
}

/* BOTÃO */
.modal-content button{
    margin-top:10px;
    padding:12px;
    border:none;
    border-radius:30px;
    background:#c4a16a;
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

/* HOVER BOTÃO */
.modal-content button:hover{
    background:#a8844f;
    transform:translateY(-2px);
}


/* BOTÃO FECHAR (X) */
.close-modal{
    position:absolute;
    top:15px;
    right:20px;
    font-size:20px;
    cursor:pointer;
    color:#999;
    transition:0.3s;
}

.close-modal:hover{
    color:#000;
}

/* AJUSTE IMPORTANTE */
.modal-content{
    position:relative; /* necessário pro X funcionar */
}



/* SEÇÕES */
section{
    padding:80px 20px;
    text-align:center;
}

/* SOBRE */
.sobre{
    background:#fff;
}

.container-sobre{
    max-width:900px;
    margin:0 auto;
}

.sobre h2{
    font-size:32px;
    margin-bottom:20px;
}

.sobre p{
    margin-bottom:15px;
    line-height:1.6;
    color:#555;
}

/* DIFERENCIAIS */
.diferenciais{
    background:#f5f3ef;
}

.diferenciais h2{
    margin-bottom:30px;
}

/* GRID */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(200px,1fr));
    gap:15px;
    max-width:900px;
    margin:0 auto;
}

.grid span{
    background:#fff;
    padding:12px;
    border-radius:8px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
}

.grid span:hover{
    transform:translateY(-5px);
}

/* ESPECIALIDADES */
.especialidades{
    background:#fff;
}

/* CTA */
.cta{
    background:#c4a16a;
    color:#fff;
}

.cta button{
    margin-top:20px;
    padding:12px 25px;
    border:none;
    background:#fff;
    color:#333;
    border-radius:30px;
    cursor:pointer;
}

/* FOOTER */
.footer{
    background:#eae6df;
    text-align:center;
    padding:30px 20px;
    color:#555;
    font-size:14px;
}




.hero{
    position:relative;
    width:100%;
    height:90vh;
    overflow:hidden;
}

/* VÍDEO */
.hero video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* OVERLAY CORRETO */
.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    z-index:2;
}

/* TEXTO ACIMA */
.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    z-index:3; /* 🔥 garante que fique acima */
}

.sobre h2,
.diferenciais h2,
.especialidades h2{
    color:#c4a16a; /* bege premium */
}

.sobre{
    background:#fff;
    margin-top:40px; /* 🔥 espaço abaixo do vídeo */
}


.animar{
    opacity:0;
    transform:translateY(40px);
    transition:0.8s ease;
}

.animar.ativo{
    opacity:1;
    transform:translateY(0);
}



/* GALERIA */
.galeria {
    max-width: 1200px;
    margin: -0px auto 40px; /* sobe só um pouco */
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.galeria h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    color: #5a3e23; /* combina com madeira/fundo */
    margin-bottom: 20px;
    text-align: left; /* título alinhado à esquerda */
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.galeria-grid a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-grid a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.galeria-grid a:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* RESPONSIVO */
@media screen and (max-width: 1024px) {
    .galeria {
        margin: -60px auto 40px;
        padding: 15px;
    }
    .galeria h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .galeria {
        margin: -10px auto 30px;
    }
    .galeria h2 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .galeria h2 {
        font-size: 1.5rem;
    }
}



.fundo {
    width: 100%;
    min-height: 400px; /* altura mínima do bloco */
    display: flex;
    justify-content: flex-start; /* alinhamento à esquerda */
    align-items: center;
    text-align: left;
    padding: 60px 40px;

    /* imagem de fundo */
    background-image: url('../images/1.jpg'); /* substitua pelo caminho correto */
    background-size: cover; /* cobre toda a área */
    background-position: center;
    background-repeat: no-repeat;

    /* opcional: sobreposição para melhorar contraste do texto */
    position: relative;
}
.fundo::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 245, 230, 0.5); /* leve transparência sobre madeira */
    z-index: 1;
}

.fundo h1 {
    position: relative;
    z-index: 2; /* garante que o texto fique sobre a sobreposição */
    color: #5a3e23; /* cor escura e elegante sobre madeira */
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 3rem;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .fundo {
        padding: 40px 20px;
    }
    .fundo h1 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .fundo h1 {
        font-size: 1.5rem;
    }
}


/* WHATSAPP */
#whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    animation: pulse 2s infinite;
}

#whatsapp-btn img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#whatsapp-btn .popup {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Mostrar popup ao passar mouse */
#whatsapp-btn:hover .popup {
    display: block;
}

/* Animação pulsante */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* BOTÃO TOPO */
#top-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #333;
    color: white;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

#top-btn:hover {
    transform: translateY(-5px);
}


/* ===== WHATSAPP ===== */
#whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: pulse 2s infinite;
}

#whatsapp-btn img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#whatsapp-btn .popup {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #25D366;
    color: white;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* Mostra popup ao passar mouse */
#whatsapp-btn:hover .popup {
    display: block;
}

/* Animação pulsante */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ===== BOTÃO VOLTAR AO TOPO ===== */
#top-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #333;
    color: white;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0; /* Inicialmente invisível */
    pointer-events: none; /* Não clicável enquanto invisível */
}

#top-btn.show {
    opacity: 1;
    pointer-events: auto;
}

#top-btn:hover {
    transform: translateY(-5px);
}



#whatsapp-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Efeito hover */
#whatsapp-btn a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Popup de atendimento */
#whatsapp-btn .popup {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    background: #25D366;
    color: white;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    text-align: center;
    font-size: 14px;
}

/* Mostra popup ao passar mouse */
#whatsapp-btn:hover .popup {
    display: block;
}

/* Animação pulsante */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}



/* Dropdown Desktop */
.dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.dropdown span {
  padding: 10px 15px;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* posiciona logo abaixo do botão */
  left: 0;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  z-index: 1000;
  min-width: 180px; /* largura mínima */
  border-radius: 4px;
  padding: 10px 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background-color: #f0f0f0;
}

/* Abrir menu ao passar o mouse */
.dropdown:hover .dropdown-menu {
  display: block;
}


/* Mobile submenu */
.mobile-submenu span {
  display: block;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  background-color: #eee;
  margin-bottom: 2px;
  border-radius: 4px;
}

#submenu {
  display: none;
  flex-direction: column;
  margin-top: 5px;
}

#submenu a {
  display: block;
  padding: 12px 25px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  border-radius: 4px;
}

#submenu a:hover {
  background-color: #f0f0f0;
}




/* HERO INTERNA (NOVA) */
.hero-interna {
    position: relative;
    height: 45vh;
    overflow: hidden;
}

.hero-interna video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.hero-interna .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-interna .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
}

/* EMPRESA */
.empresa {
    padding: 80px 20px;
    background: #f8f8f8;
}

.empresa-container {
    max-width: 1100px;
    margin: auto;
}

.empresa h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.empresa h3 {
    margin-top: 40px;
    margin-bottom: 15px;
}

.empresa p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.empresa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.empresa-grid span {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.destaque {
    margin-top: 30px;
    font-weight: 600;
}



.hero-interna .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 100%;
    text-align: center;
    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f3ef;
    color:#333;
}

/* NAVBAR */
.navbar{
    position:fixed;
    width:100%;
    top:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    background:rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    z-index:100;
}

.logo{
    font-size:22px;
    font-weight:600;
}

/* MENU DESKTOP */
.nav-links{
    display:flex;
    gap:25px;
    align-items:center;
}

.nav-links a, .dropdown span{
    text-decoration:none;
    color:#333;
    cursor:pointer;
}

.nav-links a:hover{
    color:#c4a16a;
}

/* DROPDOWN */
.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:30px;
    background:#fff;
    padding:10px;
    border-radius:8px;
    display:none;
    flex-direction:column;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.dropdown:hover .dropdown-menu{
    display:flex;
}

.dropdown-menu a{
    padding:5px 10px;
}

/* MENU MOBILE */
.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100%;
    background:#fff;
    padding:30px;
    display:flex;
    flex-direction:column;
    gap:15px;
    transition:0.4s;
    z-index:200;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu a{
    text-decoration:none;
    color:#333;
    font-size:18px;
}

/* SUBMENU MOBILE */
#submenu{
    display:none;
    flex-direction:column;
    margin-left:10px;
}

#submenu.open{
    display:flex;
}

/* HERO */
.hero{
    height:100vh;
    position:relative;
}

.hero video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.video-mobile{display:none;}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
}

.hero-content h1{
    font-size:50px;
}

.hero-content p{
    margin-top:10px;
    font-size:20px;
}

.btn{
    margin-top:20px;
    padding:12px 25px;
    border:none;
    background:#c4a16a;
    color:#fff;
    border-radius:30px;
    cursor:pointer;
}

/* MODAL */
.modal{
    position:fixed;
    width:100%;
    height:100%;
    display:none;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,0.6);
}

.modal-content{
    background:#fff;
    padding:30px;
    border-radius:10px;
    width:90%;
    max-width:400px;
}

/* RESPONSIVO */
@media(max-width:900px){

    .nav-links{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .video-desktop{display:none;}
    .video-mobile{display:block;}

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:16px;
    }
}



.modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:none;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,0.6);
    z-index:9999; /* 🔥 MUITO IMPORTANTE */
}



/* MODAL PREMIUM */
.modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:none;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    z-index:9999;
}

/* CONTEÚDO */
.modal-content{
    background:#ffffff;
    padding:35px 30px;
    border-radius:15px;
    width:90%;
    max-width:420px;

    display:flex;
    flex-direction:column;
    gap:15px;

    box-shadow:0 20px 60px rgba(0,0,0,0.2);

    animation:modalDrop 0.5s ease;
}

/* ANIMAÇÃO PREMIUM (descendo) */
@keyframes modalDrop{
    from{
        opacity:0;
        transform:translateY(-40px) scale(0.95);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

/* TÍTULO */
.modal-content h2{
    text-align:center;
    margin-bottom:10px;
    font-weight:600;
    color:#333;
}

/* INPUTS */
.modal-content input,
.modal-content textarea{
    width:100%;
    padding:12px 14px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
    font-size:14px;
    transition:0.3s;
}

/* EFEITO FOCUS PREMIUM */
.modal-content input:focus,
.modal-content textarea:focus{
    border-color:#c4a16a;
    box-shadow:0 0 0 3px rgba(196,161,106,0.15);
}

/* TEXTAREA */
.modal-content textarea{
    min-height:100px;
    resize:none;
}

/* BOTÃO */
.modal-content button{
    margin-top:10px;
    padding:12px;
    border:none;
    border-radius:30px;
    background:#c4a16a;
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

/* HOVER BOTÃO */
.modal-content button:hover{
    background:#a8844f;
    transform:translateY(-2px);
}


/* BOTÃO FECHAR (X) */
.close-modal{
    position:absolute;
    top:15px;
    right:20px;
    font-size:20px;
    cursor:pointer;
    color:#999;
    transition:0.3s;
}

.close-modal:hover{
    color:#000;
}

/* AJUSTE IMPORTANTE */
.modal-content{
    position:relative; /* necessário pro X funcionar */
}



/* SEÇÕES */
section{
    padding:80px 20px;
    text-align:center;
}

/* SOBRE */
.sobre{
    background:#fff;
}

.container-sobre{
    max-width:900px;
    margin:0 auto;
}

.sobre h2{
    font-size:32px;
    margin-bottom:20px;
}

.sobre p{
    margin-bottom:15px;
    line-height:1.6;
    color:#555;
}

/* DIFERENCIAIS */
.diferenciais{
    background:#f5f3ef;
}

.diferenciais h2{
    margin-bottom:30px;
}

/* GRID */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(200px,1fr));
    gap:15px;
    max-width:900px;
    margin:0 auto;
}

.grid span{
    background:#fff;
    padding:12px;
    border-radius:8px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
}

.grid span:hover{
    transform:translateY(-5px);
}

/* ESPECIALIDADES */
.especialidades{
    background:#fff;
}

/* CTA */
.cta{
    background:#c4a16a;
    color:#fff;
}

.cta button{
    margin-top:20px;
    padding:12px 25px;
    border:none;
    background:#fff;
    color:#333;
    border-radius:30px;
    cursor:pointer;
}

/* FOOTER */
.footer{
    background:#eae6df;
    text-align:center;
    padding:30px 20px;
    color:#555;
    font-size:14px;
}




.hero{
    position:relative;
    width:100%;
    height:90vh;
    overflow:hidden;
}

/* VÍDEO */
.hero video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* OVERLAY CORRETO */
.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    z-index:2;
}

/* TEXTO ACIMA */
.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    z-index:3; /* 🔥 garante que fique acima */
}

.sobre h2,
.diferenciais h2,
.especialidades h2{
    color:#c4a16a; /* bege premium */
}

.sobre{
    background:#fff;
    margin-top:40px; /* 🔥 espaço abaixo do vídeo */
}


.animar{
    opacity:0;
    transform:translateY(40px);
    transition:0.8s ease;
}

.animar.ativo{
    opacity:1;
    transform:translateY(0);
}



/* GALERIA */
.galeria {
    max-width: 1200px;
    margin: -0px auto 40px; /* sobe só um pouco */
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.galeria h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    color: #5a3e23; /* combina com madeira/fundo */
    margin-bottom: 20px;
    text-align: left; /* título alinhado à esquerda */
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.galeria-grid a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-grid a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.galeria-grid a:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* RESPONSIVO */
@media screen and (max-width: 1024px) {
    .galeria {
        margin: -60px auto 40px;
        padding: 15px;
    }
    .galeria h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .galeria {
        margin: -10px auto 30px;
    }
    .galeria h2 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .galeria h2 {
        font-size: 1.5rem;
    }
}



.fundo {
    width: 100%;
    min-height: 400px; /* altura mínima do bloco */
    display: flex;
    justify-content: flex-start; /* alinhamento à esquerda */
    align-items: center;
    text-align: left;
    padding: 60px 40px;

    /* imagem de fundo */
    background-image: url('../images/1.jpg'); /* substitua pelo caminho correto */
    background-size: cover; /* cobre toda a área */
    background-position: center;
    background-repeat: no-repeat;

    /* opcional: sobreposição para melhorar contraste do texto */
    position: relative;
}
.fundo::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 245, 230, 0.5); /* leve transparência sobre madeira */
    z-index: 1;
}

.fundo h1 {
    position: relative;
    z-index: 2; /* garante que o texto fique sobre a sobreposição */
    color: #5a3e23; /* cor escura e elegante sobre madeira */
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 3rem;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .fundo {
        padding: 40px 20px;
    }
    .fundo h1 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .fundo h1 {
        font-size: 1.5rem;
    }
}


/* WHATSAPP */
#whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    animation: pulse 2s infinite;
}

#whatsapp-btn img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#whatsapp-btn .popup {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Mostrar popup ao passar mouse */
#whatsapp-btn:hover .popup {
    display: block;
}

/* Animação pulsante */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* BOTÃO TOPO */
#top-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #333;
    color: white;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

#top-btn:hover {
    transform: translateY(-5px);
}


/* ===== WHATSAPP ===== */
#whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: pulse 2s infinite;
}

#whatsapp-btn img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#whatsapp-btn .popup {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #25D366;
    color: white;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* Mostra popup ao passar mouse */
#whatsapp-btn:hover .popup {
    display: block;
}

/* Animação pulsante */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ===== BOTÃO VOLTAR AO TOPO ===== */
#top-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #333;
    color: white;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0; /* Inicialmente invisível */
    pointer-events: none; /* Não clicável enquanto invisível */
}

#top-btn.show {
    opacity: 1;
    pointer-events: auto;
}

#top-btn:hover {
    transform: translateY(-5px);
}



#whatsapp-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Efeito hover */
#whatsapp-btn a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Popup de atendimento */
#whatsapp-btn .popup {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    background: #25D366;
    color: white;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    text-align: center;
    font-size: 14px;
}

/* Mostra popup ao passar mouse */
#whatsapp-btn:hover .popup {
    display: block;
}

/* Animação pulsante */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}



/* Dropdown Desktop */
.dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.dropdown span {
  padding: 10px 15px;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* posiciona logo abaixo do botão */
  left: 0;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  z-index: 1000;
  min-width: 180px; /* largura mínima */
  border-radius: 4px;
  padding: 10px 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background-color: #f0f0f0;
}

/* Abrir menu ao passar o mouse */
.dropdown:hover .dropdown-menu {
  display: block;
}


/* Mobile submenu */
.mobile-submenu span {
  display: block;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  background-color: #eee;
  margin-bottom: 2px;
  border-radius: 4px;
}

#submenu {
  display: none;
  flex-direction: column;
  margin-top: 5px;
}

#submenu a {
  display: block;
  padding: 12px 25px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  border-radius: 4px;
}

#submenu a:hover {
  background-color: #f0f0f0;
}




/* HERO INTERNA (NOVA) */
.hero-interna {
    position: relative;
    height: 45vh;
    overflow: hidden;
}

.hero-interna video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.hero-interna .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-interna .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
}

/* EMPRESA */
.empresa {
    padding: 80px 20px;
    background: #f8f8f8;
}

.empresa-container {
    max-width: 1100px;
    margin: auto;
}

.empresa h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.empresa h3 {
    margin-top: 40px;
    margin-bottom: 15px;
}

.empresa p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.empresa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.empresa-grid span {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.destaque {
    margin-top: 30px;
    font-weight: 600;
}



.hero-interna .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 100%;
    text-align: center;
    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* ===== GRID 2x2 PREMIUM ===== */
.depoimentos {
    display: grid;
    grid-template-columns: 1fr 1fr; /* FORÇA 2 COLUNAS */
    gap: 25px;
    margin-top: 30px;
}

/* CARD */
.aba {
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px;
    cursor: pointer;

    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);

    transition: all 0.3s ease;
}

/* HOVER */
.aba:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* HEADER */
.aba-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* ÍCONE */
.icone {
    font-size: 22px;
    color: #c4a16a;
    transition: 0.3s;
}

/* ROTAÇÃO */
.aba.ativa .icone {
    transform: rotate(45deg);
}

/* CONTEÚDO */
.aba-conteudo {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;

    opacity: 0;
}

/* ABERTO */
.aba.ativa .aba-conteudo {
    max-height: 200px;
    margin-top: 15px;
    opacity: 1;
}

/* TEXTO */
.aba-conteudo p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* ESTRELAS */
.estrelas {
    margin-top: 10px;
    color: #c4a16a;
    font-size: 18px;
    letter-spacing: 3px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .depoimentos {
        grid-template-columns: 1fr; /* vira 1 coluna no mobile */
    }
}






/* TÍTULOS BEGE (IDENTIDADE) */
.titulo-bege {
    color: #c4a16a;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* TEXTO PADRÃO */
.texto-preto {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ESPAÇAMENTO PREMIUM */
.empresa h2 {
    margin-bottom: 15px;
}

.empresa h3 {
    margin-top: 35px;
    margin-bottom: 10px;
}