/* Paleta de cores inspirada na Ladurée */
:root {
  --verde-sofisticado: #849E65;
  --rosa-suave: #EAA8B4;
  --marrom-claro: #A6956D;
  --ivory: #F5F0E6;
  --preto-suave: #333333;
  --dourado-suave: #c9a646;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Libre Baskerville', serif;
  background-color: var(--ivory);
  color: var(--preto-suave);
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #fff;
  border-bottom: 2px solid var(--dourado-suave);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo img {
  height: 70px;
  width: auto;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

header nav a {
  margin-left: 25px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--marrom-claro);
  text-decoration: none;
  transition: all 0.3s ease;
}

header nav a:hover {
  color: var(--rosa-suave);
}

/* Destaque no link do menu no header */
header nav a.nav-highlight {
  color: var(--verde-sofisticado);
  border-bottom: 2px solid var(--verde-sofisticado);
}

h1 {
  font-family: 'Playfair Display', serif;
  color: var(--verde-sofisticado);
  font-size: 1.5rem;
  margin-right: auto;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--rosa-suave) 0%, var(--ivory) 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 2rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: var(--preto-suave);
}

.hero h2 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  color: var(--verde-sofisticado);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* Botões Gerais */
.cta a, .main-action a, .menu-call a {
  display: inline-block;
  padding: 12px 24px;
  margin: 5px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Botão Cardápio Hero */
.btn-menu-hero {
  background: var(--verde-sofisticado);
  color: #fff;
  font-size: 1.3rem;
  padding: 16px 32px !important;
  box-shadow: 0 4px 15px rgba(132, 158, 101, 0.4);
  border: 2px solid #fff;
  animation: pulse 2s infinite;
}

.btn-menu-hero:hover {
  background: var(--marrom-claro);
  transform: scale(1.05);
}

/* Botão Cardápio Seção */
.menu-call {
  text-align: center;
  margin-top: 40px;
}

.btn-menu-big {
  background: transparent;
  color: var(--marrom-claro);
  border: 2px solid var(--marrom-claro);
  font-size: 1.2rem;
  padding: 14px 40px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-menu-big:hover {
  background: var(--marrom-claro);
  color: #fff;
}

.btn-primary {
  background: var(--rosa-suave);
  color: #fff;
}

.btn-primary:hover {
  background: var(--verde-sofisticado);
}

.btn-outline {
  border: 2px solid var(--verde-sofisticado);
  color: var(--verde-sofisticado);
  background: transparent;
}

.btn-outline:hover {
  background: var(--verde-sofisticado);
  color: #fff;
}

/* Animação suave para o botão principal */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(132, 158, 101, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(132, 158, 101, 0); }
  100% { box-shadow: 0 0 0 0 rgba(132, 158, 101, 0); }
}

/* Seções */
section {
  padding: 4rem 2rem;
  background: var(--ivory);
}

section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--marrom-claro);
  margin-bottom: 1.5rem;
  text-align: center;
  border-bottom: 2px solid var(--dourado-suave);
  display: inline-block;
  padding-bottom: 5px;
}

.sobre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.sobre-grid h4 {
  font-family: 'Playfair Display', serif;
  color: var(--rosa-suave);
}

/* Cardápio Grid */
.cardapio .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.cardapio .item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.cardapio .item:hover {
  transform: translateY(-5px);
}

.cardapio img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.cardapio h4 {
  font-family: 'Playfair Display', serif;
  color: var(--verde-sofisticado);
  margin: 10px;
}

.cardapio p {
  margin: 0 10px 15px;
  color: var(--preto-suave);
  font-size: 0.95rem;
}

/* Depoimentos */
.depoimentos .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.depoimentos blockquote {
  background: #fff;
  padding: 20px;
  border-left: 4px solid var(--rosa-suave);
  font-style: italic;
  margin: 1rem 0;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Contato */
.contato .cta {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-instagram {
  background: #E1306C;
  color: #fff;
}

.btn-email {
  background: #c60000;);
  color: #fff;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  font-size: 1.5rem;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Footer */
footer {
  background: #fff;
  color: var(--marrom-claro);
  text-align: center;
  padding: 20px;
  border-top: 2px solid var(--dourado-suave);
}

/* Responsividade - Correção do cabeçalho inclusa */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px;
  }

  header .logo {
    margin-bottom: 15px;
  }

  header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  header nav a {
    margin: 0;
    font-size: 14px;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .sobre-grid,
  .cardapio .grid,
  .depoimentos .grid {
    grid-template-columns: 1fr;
  }

  .contato .cta {
    flex-direction: column;
    align-items: center;
  }
}