/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
color:#333;
background:#ffffff;
line-height:1.6;
}

/* CONTAINER */
.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* TÍTULOS */
h1,h2,h3{
font-family:'Playfair Display',serif;
}

h2{
font-size:42px;
text-align:center;
margin-bottom:20px;
color:#6d4c41;
}

.subtitulo{
text-align:center;
margin-bottom:50px;
font-size:18px;
color:#666;
}

/* HEADER */
#header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
background:#ffffff;
box-shadow:0 2px 15px rgba(0,0,0,.1);
}

.navbar{
height:80px;
display:flex;
justify-content:space-between;
align-items:center;
width:90%;
max-width:1200px;
margin:auto;
}

.logo img{
height:81px;
}

/* MENU DESKTOP */
.menu{
display:flex;
gap:30px;
list-style:none;
}

.menu a{
text-decoration:none;
font-weight:600;
color:#444;
transition:.3s;
}

.menu a:hover{
color:#b8860b;
}

/* MENU MOBILE ICON */
.menu-mobile{
display:none;
font-size:34px;
cursor:pointer;
color:#333;
z-index:2000;
}

/* ÚNICO RESPONSIVO DO MENU */
@media (max-width: 900px) {

.menu-mobile{
display:block !important;
}

.menu{
display:none;
position:absolute;
top:80px;
left:0;
width:100%;
background:#fff;
flex-direction:column;
padding:25px;
gap:20px;
box-shadow:0 10px 30px rgba(0,0,0,.1);
z-index:1000;
}

.menu.ativo{
display:flex;
}

.menu a{
padding:10px 0;
border-bottom:1px solid #eee;
}
}

/* HERO */
.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url('../img/capa\ \(2\).jpg');
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.overlay{
width:100%;
height:100%;
background:rgba(0,0,0,.55);
display:flex;
justify-content:center;
align-items:center;
}

.hero-content{
text-align:center;
color:#fff;
padding:20px;
max-width:850px;
}

.hero-subtitulo{
letter-spacing:3px;
font-size:14px;
margin-bottom:15px;
}

.hero h1{
font-size:70px;
margin-bottom:20px;
}

.hero h3{
font-size:28px;
margin-bottom:25px;
}

.hero-descricao{
font-size:20px;
margin-bottom:40px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

/* BOTÕES */
.btn-primary,
.btn-secondary{
padding:15px 30px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn-primary{
background:#b8860b;
color:#fff;
}

.btn-primary:hover{
background:#9d7307;
}

.btn-secondary{
background:#fff;
color:#333;
}

.btn-secondary:hover{
background:#f2f2f2;
}

/* SEÇÕES */
section{
padding:100px 0;
}

/* SOBRE */
#sobre{
padding:100px 8%;
background:#fafafa;
}

#sobre h2{
text-align:center;
margin-bottom:40px;
}

.sobre-grid{
display:flex;
flex-direction:column;
align-items:center;
}

.sobre-texto{
width:100%;
max-width:1200px;
text-align:center;
margin-bottom:50px;
}

.sobre-texto p{
font-size:20px;
line-height:2;
color:#555;
margin-bottom:20px;
}

.sobre-imagens{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
width:100%;
max-width:1200px;
}

.sobre-imagens img{
width:100%;
height:380px;
object-fit:cover;
border-radius:18px;
box-shadow:0 8px 25px rgba(0,0,0,.10);
transition:.3s;
}

.sobre-imagens img:hover{
transform:scale(1.03);
}

/* DIFERENCIAIS */
.diferenciais-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.diferencial-card{
padding:30px;
background:#fff;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.1);
text-align:center;
transition:.3s;
}

.diferencial-card:hover{
transform:translateY(-8px);
}

/* CARDÁPIO */
.cardapio-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:25px;
max-width:1200px;
margin:0 auto;
}

.cardapio-item{
width:280px;
padding:30px;
background:#fff;
border-radius:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.1);
transition:.3s;
cursor:pointer;
}

.cardapio-item:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.cardapio-item span{
font-size:45px;
}

.cardapio-item h3{
margin:15px 0;
}

/* GALERIA */
.galeria-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
margin-top:50px;
}

.galeria-card{
overflow:hidden;
border-radius:18px;
box-shadow:0 8px 25px rgba(0,0,0,.1);
}

.galeria-card img{
width:100%;
height:300px;
object-fit:cover;
transition:.4s;
}

.galeria-card img:hover{
transform:scale(1.08);
}

/* DEPOIMENTOS */
#depoimentos{
background:#fafafa;
padding:90px 10%;
}

.depoimentos-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.depoimento-card{
    grid-column: span 2;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

/* Centraliza os dois últimos depoimentos */
.depoimentos-grid .depoimento-card:nth-child(4){
    grid-column: 2 / span 2;
}

.depoimentos-grid .depoimento-card:nth-child(5){
    grid-column: 4 / span 2;
}

@media (max-width: 900px){

    .depoimentos-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .depoimento-card,
    .depoimentos-grid .depoimento-card:nth-child(4),
    .depoimentos-grid .depoimento-card:nth-child(5){
        grid-column: auto;
    }

}

@media (max-width: 768px){

    .depoimentos-grid{
        grid-template-columns: 1fr;
    }

}

.estrelas{
font-size:22px;
margin-bottom:20px;
}

.depoimento-card p{
font-style:italic;
line-height:1.8;
margin-bottom:20px;
}

.depoimento-card h4{
color:#a51d2d;
}

/* CONTATO */
.contato-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-bottom:50px;
}

.contato-card{
padding:30px;
text-align:center;
background:#fff;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.contato-botoes{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

/* MAPA */
#mapa{
background:#fafafa;
}

#mapa iframe{
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* FOOTER */
footer{
background:#222;
color:#fff;
padding:30px;
text-align:center;
}

/* WHATSAPP */
.whatsapp-float{
position:fixed;
right:25px;
bottom:25px;
width:65px;
height:65px;
border-radius:50%;
background:#25D366;
display:flex;
align-items:center;
justify-content:center;
font-size:32px;
text-decoration:none;
z-index:999;
box-shadow:0 8px 25px rgba(0,0,0,.3);
animation:pulsar 2s infinite;
}

@keyframes pulsar{
0%{transform:scale(1);}
50%{transform:scale(1.12);}
100%{transform:scale(1);}
}

.whatsapp-float:hover{
transform:scale(1.1);
}

/* BOTÃO VOLTAR AO TOPO */
.voltar-topo{
position:fixed;
bottom:110px;
right:25px;
width:55px;
height:55px;
border-radius:50%;
background:#b8860b;
color:#fff;
font-size:28px;
display:flex;
justify-content:center;
align-items:center;
cursor:pointer;
opacity:0;
pointer-events:none;
transition:.3s;
z-index:999;
}

.voltar-topo.mostrar{
opacity:1;
pointer-events:auto;
}

.voltar-topo:hover{
transform:scale(1.1);
}

/* LIGHTBOX */
#lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.9);
display:flex;
justify-content:center;
align-items:center;
opacity:0;
pointer-events:none;
transition:.3s;
z-index:9999;
}

#lightbox.ativo{
opacity:1;
pointer-events:auto;
}

#imagem-lightbox{
max-width:90%;
max-height:85%;
border-radius:15px;
}

#fechar-lightbox{
position:absolute;
top:25px;
right:35px;
font-size:50px;
color:#fff;
cursor:pointer;
}

/* NÚMEROS */
#numeros{
background:#fafafa;
}

.numeros-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
}

.numero-card{
background:#fff;
padding:40px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.1);
transition:.3s;
}

.numero-card:hover{
transform:translateY(-8px);
}

.numero-card h3{
font-size:50px;
color:#b8860b;
margin-bottom:10px;
}

/* RESPONSIVO MENU */

.menu-mobile{
display:block;
cursor:pointer;
z-index:1001;
}

.menu{
position:absolute;
top:80px;
left:0;
width:100%;
background:#fff;
flex-direction:column;
padding:25px;
display:none;
gap:20px;
box-shadow:0 10px 30px rgba(0,0,0,.1);
z-index:1000;
}

.menu.ativo{
display:flex;
}

.menu a{
padding:10px 0;
border-bottom:1px solid #eee;
}


/* RESPONSIVO GERAL */
.menu{
display:none;
}
.menu.ativo{
display:flex;
flex-direction:column;
position:absolute;
top:80px;
right:20px;
background:#fff;
padding:25px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.2);
}

.menu-mobile{
display:block;
font-size:32px;
cursor:pointer;
}


.cardapio-item a{
text-decoration:none;
color:inherit;
display:block;
width:100%;
height:100%;
}

.cardapio-item a:visited{
color:inherit;
}

.cardapio-item a:hover{
color:inherit;
}

.menu-mobile{
font-size:34px;
font-weight:bold;
}

#atendimento{
  text-align: center;
}

#atendimento p{
  max-width: 800px;
  margin: 10px auto;
}

section{
  padding: 110px 0;
}

section:nth-of-type(even){
  background: #fafafa;
}

section{
  border-bottom: 1px solid rgba(0,0,0,0.05);
}


/* =========================
   RESPONSIVO COMPLETO
========================= */

@media (max-width: 1024px) {

.hero h1 {
  font-size: 48px;
}

.hero h3 {
  font-size: 22px;
}

}

@media (max-width: 768px) {

/* HERO */
.hero {
  height: auto;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 34px;
}

.hero h3 {
  font-size: 18px;
}

.hero-descricao {
  font-size: 16px;
}

/* SOBRE */
.sobre-imagens {
  grid-template-columns: 1fr;
}

/* DIFERENCIAIS */
.diferenciais-grid {
  grid-template-columns: 1fr;
}

/* CARDÁPIOS */
.cardapio-grid {
  flex-direction: column;
  align-items: center;
}

.cardapio-item {
  width: 100%;
  max-width: 320px;
}

/* CONTATO */
.contato-grid {
  grid-template-columns: 1fr;
}

/* GALERIA */
.galeria-grid {
  grid-template-columns: 1fr;
}

/* DEPOIMENTOS */
.depoimentos-grid {
  grid-template-columns: 1fr;
}

/* TÍTULOS */
h2 {
  font-size: 28px;
}

}

@media (max-width: 480px) {

.hero h1 {
  font-size: 28px;
}

.hero-buttons {
  flex-direction: column;
}

.btn-primary,
.btn-secondary {
  width: 100%;
  text-align: center;
}

}

