:root {
  --maroon: #7a1f1f;
  --maroon-dark: #5c1616;
  --gold: #e0a53c;
  --gold-light: #f3c977;
  --cream: #fff8ec;
  --cream-alt: #fbeed9;
  --text: #3a1c12;
  --text-soft: #6b4a3a;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(122, 31, 31, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--maroon);
}

a {
  color: inherit;
}

/* Navbar */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  box-shadow: 0 0 0 rgba(122, 31, 31, 0);
  transition: box-shadow 0.25s ease;
}

.navbar--scrolled {
  box-shadow: 0 8px 24px rgba(122, 31, 31, 0.14);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  transition: padding 0.25s ease;
}

.navbar--scrolled .navbar-inner {
  padding-top: 9px;
  padding-bottom: 9px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--maroon);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
}

.navbar-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  transition: width 0.25s ease, height 0.25s ease;
}

.navbar--scrolled .navbar-logo {
  width: 34px;
  height: 34px;
}

.navbar-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.navbar-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--maroon);
}

.navbar-links a.active {
  font-weight: 700;
}

.navbar-cta {
  background: var(--maroon);
  color: var(--cream);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease;
}

.navbar-cta:hover {
  background: var(--maroon-dark);
  transform: translateY(-2px);
}

/* Hero */

.hero {
  position: relative;
  background-image: url('assets/produtos/foto1.jpg');
  background-size: cover;
  background-position: center;
  padding: 90px 0 80px;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(92, 22, 22, 0.78), rgba(92, 22, 22, 0.9));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 4px solid var(--cream);
  margin-bottom: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 8px;
}

.tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 460px;
  font-size: 1.02rem;
  color: var(--cream-alt);
  margin-bottom: 32px;
}

/* CTA button */

.cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--maroon-dark);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 18px 44px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(224, 165, 60, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(224, 165, 60, 0.5);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 999px;
  border: 2px solid var(--cream-alt);
  transition: background 0.15s ease, color 0.15s ease;
}

.cta-secondary:hover {
  background: var(--cream);
  color: var(--maroon-dark);
}

.cta-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--cream-alt);
  opacity: 0.85;
}

.rating-badge {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

#sobre,
#galeria,
#atendimento,
#depoimentos {
  scroll-margin-top: 84px;
}

/* Sobre */

.sobre {
  padding: 56px 0;
  text-align: center;
}

.sobre h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.sobre p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1.05rem;
}

/* Galeria */

.galeria {
  padding: 56px 0;
}

.galeria h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 32px;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.galeria-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(224, 165, 60, 0.25);
}

/* Destaques */

.destaques {
  background: var(--cream-alt);
  padding: 56px 0;
}

.destaques h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 32px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(224, 165, 60, 0.25);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* Atendimento */

.atendimento {
  padding: 56px 0;
  text-align: center;
}

.atendimento h2 {
  font-size: 1.8rem;
  margin-bottom: 32px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.info-item h3 {
  font-size: 1rem;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
}

.info-item p {
  color: var(--text-soft);
}

.info-item a {
  text-decoration: none;
  color: var(--maroon);
  font-weight: 600;
}

.info-item a:hover {
  text-decoration: underline;
}

/* Depoimentos */

.depoimentos {
  padding: 56px 0;
  text-align: center;
}

.depoimentos h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.depoimentos-nota {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}

.depoimento {
  background: var(--cream-alt);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(224, 165, 60, 0.25);
  display: flex;
  flex-direction: column;
}

.depoimento .estrelas {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.depoimento-texto {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 14px;
  flex-grow: 1;
}

.depoimento-autor {
  color: var(--text-soft);
  font-size: 0.85rem;
  font-weight: 600;
}

/* CTA final */

.cta-final {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--cream);
  padding: 64px 0;
  text-align: center;
}

.cta-final h2 {
  color: var(--cream);
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-final p {
  color: var(--gold-light);
  margin-bottom: 28px;
}

/* Footer */

footer {
  background: var(--maroon-dark);
  color: var(--cream-alt);
  padding: 40px 0;
  text-align: center;
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Responsive */

@media (max-width: 700px) {
  .cards,
  .info-grid,
  .galeria-grid,
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .cta,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }

  .navbar-links {
    display: none;
  }

  .navbar-inner {
    gap: 10px;
    padding: 12px 16px;
  }

  .navbar-brand {
    gap: 8px;
    font-size: 0.85rem;
  }

  .navbar-logo {
    width: 32px;
    height: 32px;
  }

  .navbar--scrolled .navbar-logo {
    width: 28px;
    height: 28px;
  }

  .navbar-cta {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
}

@media (max-width: 900px) and (min-width: 701px) {
  .galeria-grid,
  .info-grid,
  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
