/* ===================== VARIÁVEIS ===================== */
:root {
  --bg:           #fbf8f4;
  --bg-alt:       #f4ede3;
  --surface:      #ffffff;
  --ink:          #2b211b;
  --ink-soft:     #6b5d51;
  --gold:         #b8893c;
  --gold-dark:    #976d2a;
  --terra:        #7d5a3c;
  --terra-deep:   #4a3526;
  --line:         #e7ddcf;
  --shadow-sm:    0 4px 14px rgba(74, 53, 38, .08);
  --shadow-md:    0 14px 40px rgba(74, 53, 38, .14);
  --radius:       18px;
  --radius-lg:    26px;
  --max:          1140px;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', system-ui, sans-serif;
  --ease:         cubic-bezier(.22, .61, .36, 1);
}

/* ===================== RESET ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ===================== TIPOGRAFIA ===================== */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.12; letter-spacing: .2px; }
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(2rem, 4.5vw, 3.1rem); color: var(--terra-deep); }
.section-text { color: var(--ink-soft); font-size: 1.08rem; margin-top: 18px; max-width: 56ch; }

/* ===================== BOTÕES ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 500; font-size: .98rem;
  padding: 13px 26px; border-radius: 999px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--terra-deep); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-map { background: var(--terra-deep); color: #fff; }
.btn-map:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 244, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  display: grid; place-items: center; gap: 1px;
  width: 50px; height: 50px; border-radius: 12px;
  background: #0c0c0c; color: #fff; line-height: 1;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(184, 137, 60, .35);
}
.brand-logo strong { font-family: var(--font-sans); font-weight: 300; font-size: .5rem; letter-spacing: .22em; }
.brand-logo span { font-family: var(--font-serif); font-weight: 600; font-size: 1.05rem; letter-spacing: .08em; }
.brand-logo--dark { border-color: rgba(255, 255, 255, .25); }
.brand-name { font-family: var(--font-serif); font-weight: 600; font-size: 1.2rem; color: var(--terra-deep); line-height: 1; letter-spacing: .04em; }
.brand-name small { display: block; font-family: var(--font-sans); font-size: .64rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-dark); margin-top: 4px; font-weight: 400; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav-link { font-weight: 400; color: var(--ink-soft); position: relative; transition: color .2s; }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold); transition: width .25s var(--ease); }
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }
.nav-cta { color: #fff; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { width: 26px; height: 2px; background: var(--terra-deep); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 9vw, 100px) 0; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 85% 15%, rgba(184, 137, 60, .14), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(125, 90, 60, .12), transparent 50%),
    var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; }
.hero-title { font-size: clamp(2.6rem, 6vw, 4.3rem); color: var(--terra-deep); margin-bottom: 22px; }
.hero-subtitle { font-size: 1.18rem; color: var(--ink-soft); max-width: 50ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-md);
}
.status-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #e8f3ea; color: #2f7d46; font-size: .82rem; font-weight: 500;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #2f7d46; box-shadow: 0 0 0 4px rgba(47, 125, 70, .18); }
.card-name { font-size: 1.7rem; color: var(--terra-deep); margin-bottom: 14px; }
.card-line { color: var(--ink-soft); font-size: .98rem; margin-bottom: 8px; }
.card-line a { color: var(--gold-dark); font-weight: 500; }
.card-rating { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 18px 0 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.rating-number { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 700; color: var(--terra-deep); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.stars-lg { font-size: 1.6rem; }
.rating-count { color: var(--ink-soft); font-size: .9rem; }

/* ===================== SEÇÕES ===================== */
.section { padding: clamp(60px, 9vw, 110px) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 54px; }
.section-head .section-text { margin-left: auto; margin-right: auto; }

.sobre-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: center; }
.stats { display: grid; gap: 18px; }
.stat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 28px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-number { display: block; font-family: var(--font-serif); font-size: 2.6rem; font-weight: 700; color: var(--gold-dark); line-height: 1; }
.stat-label { color: var(--ink-soft); font-size: .92rem; letter-spacing: .04em; }

/* ===================== CARDS ===================== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.card-icon { font-size: 2.3rem; display: block; margin-bottom: 16px; }
.card h3 { font-size: 1.5rem; color: var(--terra-deep); margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* ===================== AVALIAÇÕES ===================== */
.rating-highlight {
  display: flex; align-items: center; gap: 24px; justify-content: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 40px; max-width: 480px; margin: 0 auto 48px; box-shadow: var(--shadow-sm);
}
.rating-big { font-family: var(--font-serif); font-size: 4rem; font-weight: 700; color: var(--gold-dark); line-height: 1; }
.rating-sub { color: var(--ink-soft); font-size: .92rem; margin-top: 4px; }
.review {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review p { font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; color: var(--ink); margin: 14px 0; }
.review-author { color: var(--ink-soft); font-size: .88rem; font-weight: 500; }

/* ===================== CONTATO ===================== */
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contact-list { list-style: none; margin: 26px 0 30px; }
.contact-list li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 1rem; }
.contact-list li span:first-child { font-size: 1.2rem; }
.contact-list a { color: var(--gold-dark); font-weight: 500; }
.map-wrap { height: 420px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 100%; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--terra-deep); color: #e9ddcf; padding: 56px 0 26px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand strong { font-family: var(--font-serif); font-size: 1.25rem; color: #fff; }
.footer-brand p { font-size: .85rem; color: #c4b39f; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-nav a { color: #d8c8b4; font-size: .95rem; transition: color .2s; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: .85rem; color: #b6a48f; }

/* ===================== FAB ===================== */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff;
  box-shadow: var(--shadow-md);
  animation: pulse 2.2s infinite;
  transition: transform .25s var(--ease);
}
.fab:hover { transform: scale(1.08); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(184, 137, 60, .55), var(--shadow-md); }
  70%  { box-shadow: 0 0 0 18px rgba(184, 137, 60, 0), var(--shadow-md); }
  100% { box-shadow: 0 0 0 0 rgba(184, 137, 60, 0), var(--shadow-md); }
}

/* ===================== REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ===================== RESPONSIVO ===================== */
@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 10px 24px 24px;
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform .35s var(--ease), opacity .3s;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; box-shadow: var(--shadow-md); }
  .nav-link { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-link::after { display: none; }
  .nav-cta { margin-top: 14px; text-align: center; }
  .hamburger { display: flex; }

  .hero-grid,
  .sobre-grid,
  .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { order: -1; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .brand-name { font-size: 1rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-actions .btn,
  .contato-grid .btn { width: 100%; }
  .rating-highlight { flex-direction: column; text-align: center; padding: 26px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .map-wrap { height: 320px; }
}

/* ===================== MOVIMENTO REDUZIDO ===================== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
