:root {
  --bege: #F5EFEA;
  --offwhite: #FBF9F7;
  --marrom: #6B4F3A;
  --marrom-escuro: #3E2C23;
  --nude: #E8DAD0;
  --dourado: #C6A97E;
  --cinza: #B8ADA4;
  --branco: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--offwhite);
  color: var(--marrom-escuro);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--marrom-escuro);
  color: var(--offwhite);
  text-align: center;
  padding: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 79, 58, 0.12);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  letter-spacing: 0.22em;
  color: var(--marrom-escuro);
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.52em;
  color: var(--marrom);
  margin-left: 4px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.menu a {
  position: relative;
}

.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--marrom);
  transition: 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

.menu-cta {
  background: var(--marrom-escuro);
  color: var(--offwhite);
  padding: 11px 18px;
  border-radius: 999px;
}

.menu-cta::after {
  display: none;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.8rem;
  color: var(--marrom-escuro);
  cursor: pointer;
}

.hero {
  min-height: calc(100vh - 116px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(198, 169, 126, 0.28), transparent 34%),
    linear-gradient(135deg, var(--offwhite), var(--bege));
  padding: 70px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--marrom);
  margin-bottom: 14px;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--marrom-escuro);
}

.hero h1 {
  font-size: clamp(3.3rem, 7vw, 6.5rem);
  line-height: 0.95;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.05rem;
  max-width: 560px;
  color: rgba(62, 44, 35, 0.78);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--marrom-escuro);
  color: var(--offwhite);
  border: 1px solid var(--marrom-escuro);
}

.btn-primary:hover {
  background: var(--marrom);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--marrom-escuro);
  border: 1px solid var(--marrom);
}

.btn-outline:hover {
  background: var(--marrom-escuro);
  color: var(--offwhite);
  transform: translateY(-2px);
}

.hero-card {
  min-height: 590px;
  border-radius: 32px;
  background:
    linear-gradient(to top, rgba(62, 44, 35, 0.42), transparent 60%),
    url('https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1000&q=80') center/cover;
  position: relative;
  box-shadow: 0 28px 70px rgba(62, 44, 35, 0.16);
}

.hero-card span {
  position: absolute;
  left: 26px;
  bottom: 26px;
  right: 26px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(251, 249, 247, 0.84);
  backdrop-filter: blur(14px);
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 600;
}

section {
  padding: 92px 0;
}

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
}

.section-title h2,
.about-text h2,
.cta h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-title p,
.about-text p,
.cta p {
  color: rgba(62, 44, 35, 0.72);
}

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

.card {
  background: var(--branco);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(107, 79, 58, 0.1);
  box-shadow: 0 16px 38px rgba(62, 44, 35, 0.08);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  height: 420px;
  object-fit: cover;
}

.card-content {
  padding: 24px;
}

.card-content h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.about {
  background: var(--bege);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: center;
}

.about-image {
  min-height: 540px;
  border-radius: 32px;
  background:
    linear-gradient(to top, rgba(62, 44, 35, 0.18), transparent 55%),
    url('https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=1000&q=80') center/cover;
  box-shadow: 0 28px 70px rgba(62, 44, 35, 0.12);
}

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

.benefits div {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(107, 79, 58, 0.12);
  border-radius: 20px;
  padding: 20px;
}

.benefits strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--marrom);
}

.benefits span {
  font-size: 0.9rem;
}

.instagram {
  background: var(--offwhite);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 34px;
}

.insta-grid div {
  aspect-ratio: 1;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--bege), var(--nude));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--marrom-escuro);
  border: 1px solid rgba(107, 79, 58, 0.1);
}

.center {
  text-align: center;
}

.cta {
  background: linear-gradient(135deg, var(--marrom-escuro), var(--marrom));
  color: var(--offwhite);
}

.cta-box {
  text-align: center;
  max-width: 820px;
}

.cta h2,
.cta p,
.cta .tag {
  color: var(--offwhite);
}

.center-actions {
  justify-content: center;
  margin-top: 28px;
}

.cta .btn-outline {
  border-color: var(--offwhite);
  color: var(--offwhite);
}

.cta .btn-outline:hover {
  background: var(--offwhite);
  color: var(--marrom-escuro);
}

.cta .btn-primary {
  background: var(--offwhite);
  color: var(--marrom-escuro);
  border-color: var(--offwhite);
}

footer {
  background: var(--offwhite);
  border-top: 1px solid rgba(107, 79, 58, 0.12);
  padding: 36px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-content strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.footer-content span {
  font-size: 0.65rem;
  letter-spacing: 0.5em;
}

.footer-content p {
  font-size: 0.9rem;
  color: rgba(62, 44, 35, 0.68);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .menu {
    position: absolute;
    top: 78px;
    right: 4%;
    left: 4%;
    flex-direction: column;
    align-items: stretch;
    background: var(--offwhite);
    border: 1px solid rgba(107, 79, 58, 0.12);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 18px 45px rgba(62, 44, 35, 0.12);
    display: none;
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    padding: 10px 0;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 50px 0;
  }

  .hero-card {
    min-height: 470px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .logo-name {
    font-size: 1.55rem;
  }

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

  section {
    padding: 68px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .card img {
    height: 350px;
  }
}
