/* Importa as fontes */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Montserrat:wght@400;700&display=swap');

/* ----- VARIÁVEIS DE DESIGN ----- */
:root {
  --cor-fundo: #FFFFFF;       /* Fundo Branco */
  --cor-fundo-secao: #f9f9f9; /* Cinza claro para seções */
  --cor-destaque: #F39C12;    /* Seu Laranja */
  --cor-texto: #222222;       /* Seu Cinza-Escuro */
  
  --fonte-titulo: 'Merriweather', serif;
  --fonte-texto: 'Montserrat', sans-serif;
}

/* ----- RESET E PADRÕES ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: var(--fonte-texto);
  color: var(--cor-texto);
  background-color: var(--cor-fundo);
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}
h2 {
  font-family: var(--fonte-titulo);
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.subtitulo {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}
.cta-button {
  background-color: var(--cor-destaque);
  color: var(--cor-texto);
  padding: 15px 30px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: opacity 0.2s;
}
.cta-button:hover { opacity: 0.9; }

/* ----- 0. NAVEGAÇÃO ----- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav-logo {
  font-family: var(--fonte-titulo);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--cor-texto);
  text-decoration: none;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px; /* Menor espaço para caber mais links */
}
.nav-links a {
  text-decoration: none;
  color: var(--cor-texto);
  font-weight: bold;
  font-size: 0.9rem; /* Fonte menor */
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cor-destaque); }
.nav-cta {
  background-color: var(--cor-destaque);
  color: var(--cor-texto) !important;
  padding: 8px 15px;
  border-radius: 5px;
}
.nav-cta:hover { color: var(--cor-texto) !important; opacity: 0.9; }

/* ----- 1. INÍCIO (HERO) ----- */
.hero {
  height: 100vh;
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://placehold.co/1920x1080?text=Buffet+Elegante'); 
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}
.hero h1 {
  font-family: var(--fonte-titulo);
  font-size: 3.5rem;
}
.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

/* ----- 2. SOBRE / DIFERENCIAIS ----- */
.sobre-texto {
  max-width: 800px;
  margin: 0 auto 50px auto; /* centraliza */
  line-height: 1.6;
}
.diferenciais-grid {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}
.diferencial-item {
  flex-basis: 30%;
  padding: 20px;
}
.diferencial-item .icone {
  font-size: 2rem;
  color: var(--cor-destaque);
}
.diferencial-item h3 {
  font-family: var(--fonte-titulo);
  margin: 10px 0;
}

/* ----- 3. SERVIÇOS (Cards) ----- */
.servicos {
  background-color: var(--cor-fundo-secao);
}
.cards-container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}
.card {
  flex-basis: 30%;
  background-color: white;
  padding: 30px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.card h3 {
  font-family: var(--fonte-titulo);
}

/* ----- 4. CARDÁPIO ----- */
.cardapio-grid {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  text-align: left;
}
.menu-coluna {
  flex-basis: 45%;
}
.menu-coluna h4 {
  font-family: var(--fonte-titulo);
  font-size: 1.5rem;
  color: var(--cor-destaque);
  border-bottom: 2px solid var(--cor-destaque);
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.menu-coluna ul {
  list-style: none;
}
.menu-coluna li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* ----- 5. GALERIA ----- */
.galeria {
  background-color: var(--cor-fundo-secao);
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.galeria-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
}

/* ----- 6. DEPOIMENTOS ----- */
.depoimento-item {
  max-width: 700px;
  margin: 0 auto 30px auto;
}
.depoimentos blockquote {
  font-family: var(--fonte-titulo);
  font-style: italic;
  font-size: 1.3rem;
  border-left: 5px solid var(--cor-destaque);
  padding-left: 15px;
  text-align: left;
}
.depoimentos cite {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  text-align: left;
  padding-left: 20px;
}

/* ----- 7. FAQ (Perguntas Frequentes) ----- */
.faq {
  background-color: var(--cor-fundo-secao);
}
.faq details {
  max-width: 800px;
  margin: 0 auto 10px auto;
  background-color: white;
  border-radius: 5px;
  border: 1px solid #eee;
  text-align: left;
}
.faq summary {
  padding: 15px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  outline: none;
}
.faq details[open] summary {
  color: var(--cor-destaque);
}
.faq p {
  padding: 0 15px 15px 15px;
  line-height: 1.6;
}

/* ----- 8. ORÇAMENTO ----- */
.contato form {
  max-width: 900px; /* Mais largo */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contato .form-linha {
  display: flex;
  gap: 15px;
}
.contato .form-linha > * { /* Faz todos os itens da linha crescerem igual */
  flex: 1;
}
.contato input, .contato select, .contato textarea {
  width: 100%;
  padding: 15px;
  font-family: var(--fonte-texto);
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* ----- RODAPÉ ----- */
footer {
  padding: 30px;
  text-align: center;
  background-color: var(--cor-texto);
  color: var(--cor-fundo);
}