/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:    #1d6b6b;
  --teal-lt: #2a9090;
  --teal-dk: #0b3d3d;
  --caprison: #e8a020;
  --cream:   #faf7f3;
  --ink:     #1e1e1e;
  --muted:   #6b7280;
  --white:   #ffffff;
  --radius:  14px;
  --t:       0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }
em { font-style: italic; color: var(--teal); }

/* ─── Nav ────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(250,247,243,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.logo {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
}
.logo-img-wrap {
  width: 42px; height: 42px;
  border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 2px solid rgba(29,107,107,0.2);
}
.logo-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}

.back-link {
  font-size: 1.1rem; color: var(--teal); text-decoration: none;
  line-height: 1; opacity: 0.7; transition: opacity 0.2s;
}
.back-link:hover { opacity: 1; }

.nav-links { display: flex; gap: 1.75rem; }
.nav-links a {
  font-size: 0.88rem; color: var(--muted);
  text-decoration: none; transition: color var(--t);
}
.nav-links a:hover { color: var(--teal); }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background-image: url('imgs/logoBannerBranco.png');
  background-size: cover;
  background-position: center;
}

.hero-bg {
  position: absolute; inset: 0;
  background: rgba(10, 40, 40, 0.72);
}

.waves { position: absolute; bottom: 0; left: 0; right: 0; height: 160px; }
.wave {
  position: absolute; bottom: 0; left: -200px; right: -200px; height: 110px;
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
}
.wave1 { background: var(--white); opacity: 0.12; animation: wave 7s ease-in-out infinite; }
.wave2 { background: var(--white); opacity: 0.08; bottom: 18px; animation: wave 9s ease-in-out infinite reverse; }
.wave3 { background: var(--white); opacity: 0.05; bottom: 36px; animation: wave 11s ease-in-out infinite; }
@keyframes wave {
  0%,100% { transform: translateX(0) scaleY(1); }
  50%      { transform: translateX(70px) scaleY(1.08); }
}

.hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 80px;
  background: var(--cream); clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: 6rem 1.5rem 5rem; max-width: 660px;
}

.hero-label {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 1.25rem;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.15; font-weight: 400; margin-bottom: 1.4rem;
}
.hero-content h1 em { color: #a8dada; }

.hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.72); margin-bottom: 2.25rem;
}

.hero-cta {
  display: inline-block; padding: 0.75rem 2.2rem;
  border: 1.5px solid rgba(255,255,255,0.4); border-radius: 2rem;
  color: rgba(255,255,255,0.9); text-decoration: none; font-size: 0.88rem;
  letter-spacing: 0.06em; transition: background var(--t), border-color var(--t);
}
.hero-cta:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }

.scroll-hint {
  position: absolute; bottom: 95px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.35); font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; animation: float 2.5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ─── About ──────────────────────────────────────────────────── */
.about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1100px; margin: 0 auto; padding: 7rem 2rem;
}

.about-img { border-radius: 2rem; overflow: hidden; aspect-ratio: 4/5; }
.about-photo { width: 150%; height: 100%; object-fit: cover; object-position: right center; display: block; }

.section-tag {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.75rem; font-weight: 700;
}

.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400; line-height: 1.2; margin-bottom: 1.4rem;
}
.about-text p {
  font-size: 1rem; line-height: 1.85; color: var(--muted); margin-bottom: 1rem;
}

/* ─── Menu ───────────────────────────────────────────────────── */
.menu-section {
  background: linear-gradient(180deg, var(--cream) 0%, #edf5f5 100%);
  padding: 7rem 2rem;
}
.menu-header { text-align: center; margin-bottom: 3.5rem; }
.menu-header h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 400; margin-bottom: 0.5rem; }
.menu-subtitle { font-size: 0.9rem; color: var(--muted); font-style: italic; }

.menu-blocos {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 3rem; max-width: 720px; margin: 0 auto 2.5rem;
}

.menu-bloco-titulo {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--teal); font-weight: 700; margin-bottom: 1.5rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid rgba(29,107,107,0.15);
}

.menu-item { margin-bottom: 1.5rem; }
.menu-item-topo {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 0.5rem; margin-bottom: 0.2rem;
}
.menu-item-name {
  font-family: 'Playfair Display', serif; font-size: 0.98rem; font-weight: 600;
}
.menu-item-price { font-size: 0.88rem; color: var(--teal); white-space: nowrap; }
.menu-item-desc { font-size: 0.83rem; line-height: 1.65; color: var(--muted); }

.menu-item.destaque .menu-item-name { color: var(--teal-dk); }
.menu-item.destaque .menu-item-desc { color: #4b5563; }

.menu-item-badge {
  display: inline-block; margin-left: 0.5rem;
  background: var(--caprison); color: #fff;
  font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.15rem 0.5rem; border-radius: 2rem; vertical-align: middle;
  font-family: 'Lato', sans-serif; font-weight: 700;
}

.menu-nota {
  text-align: center; font-size: 0.8rem; color: var(--muted);
  font-style: italic; line-height: 1.8;
  max-width: 600px; margin: 0 auto;
  padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.06);
}

/* ─── Testemunhos ────────────────────────────────────────────── */
.testemunhos {
  padding: 7rem 2rem;
  background: var(--teal-dk);
  color: var(--white);
}

.testemunhos-header { text-align: center; margin-bottom: 3.5rem; }
.testemunhos-header .section-tag { color: #a8dada; }
.testemunhos-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 400; color: var(--white);
}

.testemunhos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 1050px; margin: 0 auto;
}

.review-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 1.75rem 1.5rem;
  transition: background var(--t);
}
.review-card:hover { background: rgba(255,255,255,0.11); }

.review-stars { color: var(--caprison); font-size: 0.95rem; margin-bottom: 0.85rem; letter-spacing: 0.1em; }
.review-text {
  font-size: 0.92rem; line-height: 1.75;
  color: rgba(255,255,255,0.72); margin-bottom: 1.1rem;
  font-style: italic;
}
.review-autor {
  font-size: 0.75rem; color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
}

/* ─── Visita-nos ─────────────────────────────────────────────── */
.visita {
  padding: 7rem 2rem; text-align: center;
  background: var(--cream);
}
.visita-inner { max-width: 500px; margin: 0 auto; }
.visita-inner h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 400; margin-bottom: 1rem;
}
.visita-addr {
  font-size: 1rem; line-height: 1.9; color: var(--muted);
  margin-bottom: 2.5rem;
}
.visita-addr em { color: var(--caprison); font-style: italic; }

.horario { text-align: left; display: inline-flex; flex-direction: column; gap: 0; min-width: 300px; }
.horario-item {
  display: flex; justify-content: space-between; gap: 2rem;
  font-size: 0.88rem; padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  color: var(--muted);
}
.horario-item span:first-child { color: var(--ink); font-weight: 600; }

/* ─── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--teal-dk); color: rgba(255,255,255,0.55);
  padding: 3rem 2rem; text-align: center;
}
.footer-inner { max-width: 600px; margin: 0 auto; }
.footer-logo {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  color: rgba(255,255,255,0.85); margin-bottom: 0.6rem;
}
.footer-tagline { font-size: 0.85rem; margin-bottom: 0.75rem; }
.footer-caprison { font-size: 1.4rem; margin-bottom: 1.25rem; letter-spacing: 0.3rem; }
.footer-copy { font-size: 0.72rem; opacity: 0.3; }

/* ─── Responsive — tablet ─────────────────────────────────────── */
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 2.5rem; padding: 5rem 2rem; }
  .about-img { order: -1; aspect-ratio: 3/2; border-radius: 1.5rem; }
  .about-photo { width: 100%; object-position: center top; }
  .menu-blocos { grid-template-columns: 1fr; gap: 2.5rem; }
  .testemunhos-grid { grid-template-columns: 1fr; }
  .menu-section, .testemunhos, .visita { padding: 5rem 2rem; }
}

/* ─── Responsive — mobile ─────────────────────────────────────── */
@media (max-width: 640px) {
  nav { padding: 0.9rem 1.1rem; }
  .logo-text { font-size: 0.95rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.8rem; }

  .hero-content { padding: 5.5rem 1.25rem 5rem; }
  .hero-content h1 { font-size: 2.3rem; }
  .hero-sub { font-size: 0.92rem; }
  .scroll-hint { bottom: 88px; }

  .about { padding: 3.5rem 1.25rem; }
  .menu-section, .testemunhos, .visita { padding: 3.5rem 1.25rem; }
  footer { padding: 2.5rem 1.25rem; }
}
