:root {
  --bg: #f7f6f3;
  --primary: #1c1c1c;
  --secondary: #ffffff;
  --muted: #6f6f6f;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--primary);
  line-height: 1.7;
}

/* ================= TOP BAR ================= */
.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(212, 211, 206, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.top-bar-content {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
}

.top-links a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--primary);
  font-size: 0.95rem;
  position: relative;
}

.top-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

.top-links a:hover::after {
  width: 100%;
}

/* ================= HERO ================= */
header {
  position: relative;
  min-height: 100vh;
  padding-top: 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;

  background-image: url("fundo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transition: opacity 0.3s ease;
}

/* Overlay suave */
header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 246, 243, 0.88);
  z-index: 0;
}

/* Conteúdo acima do fundo */
header * {
  position: relative;
  z-index: 1;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
}

header p {
  max-width: 760px;
  margin: 1.6rem auto 0;
  font-size: 1.2rem;
  color: var(--muted);
}

/* ================= SECTIONS ================= */
section {
  padding: 6rem 8vw;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 1.8rem;
}

.section-text {
  max-width: 820px;
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* ================= ESSÊNCIA ================= */
.essencia-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
}

.essencia-text {
  flex: 1;
}

.essencia-image img {
  max-width: 260px;
  width: 100%;
  border-radius: 6px;
  filter: grayscale(100%);
}

.essencia-caption {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: #777;
  text-align: center;
}

/* ================= SABORES ================= */
.sabores-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.sabores-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.sabores-image img {
  width: 100%;
  display: block;
}

.card {
  background: var(--secondary);
  padding: 2.4rem;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}

.card p {
  margin-top: 0.6rem;
  color: var(--muted);
}

.price {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
}

/* ================= BOTÕES ================= */
.contact-buttons a {
  display: inline-block;
  margin: 1rem 1rem 0 0;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  background: #1c1c1c;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.05rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-buttons a:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ================= SCROLL UP ================= */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #1c1c1c;
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ================= ANIMAÇÃO ================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  header h1 {
    font-size: 2.6rem;
  }

  .sabores-wrapper,
  .essencia-content {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }

  .top-links {
    display: none;
  }
}

/* ================= MENU MOBILE ================= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ================= MOBILE AJUSTES ================= */
@media (max-width: 900px) {

  /* Top bar */
  .menu-toggle {
    display: block;
  }

  .top-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(247, 246, 243, 0.97);
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .top-links a {
    margin: 0.8rem 0;
    font-size: 1.05rem;
  }

  .top-links.active {
    display: flex;
  }

  /* HERO */
  header {
    padding: 6rem 1.5rem 4rem;
    min-height: auto;
  }

  header h1 {
    font-size: 2.4rem;
  }

  header p {
    font-size: 1.05rem;
  }

  /* SECTIONS */
  section {
    padding: 4rem 1.5rem;
  }

  .section-title {
    font-size: 2rem;
    text-align: center;
  }

  .section-text {
    font-size: 1.05rem;
    text-align: center;
  }

  /* ESSÊNCIA */
  .essencia-content {
    flex-direction: column;
    text-align: center;
  }

  /* SABORES */
  .sabores-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card {
    padding: 2rem 1.8rem;
  }

  /* BOTÕES */
  .contact-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-buttons a {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

/* ================= MENU MOBILE ================= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--primary);
}

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

  .menu-toggle {
    display: block;
  }

  .top-links {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: rgba(247, 246, 243, 0.97);
    backdrop-filter: blur(12px);

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

    gap: 2rem;

    transform: translateY(-120%);
    transition: transform 0.4s ease;
    z-index: 999;
  }

  .top-links a {
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
  }

  .top-links.active {
    transform: translateY(0);
  }
}
.logo {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

