/* ===== TOKENS ===== */
:root {
  --gold: #B88922;           /* dourado principal (botões) */
  --gold-dark: #8A6418;      /* dourado escuro (textos/links) */
  --gold-hover: #9C711C;     /* dourado hover */
  --gold-light: #D8B766;     /* dourado claro (decorativo) */
  --white: #FFFFFF;
  --beige: #F8F4EC;
  --text: #2F2F2F;
  --text-soft: #666666;
  --footer-bg: #1F1B14;
  --border: #e7ddca;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 6px 20px rgba(138, 100, 24, 0.08);
  --shadow: 0 18px 50px rgba(138, 100, 24, 0.14);
  --maxw: 1160px;
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Segoe UI", system-ui, sans-serif;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .98rem;
  font-weight: 500;
  letter-spacing: .3px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  text-align: center;
  line-height: 1.2;
}
.btn--sm { padding: 11px 20px; font-size: .9rem; }
.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(138, 100, 24, 0.28);
}
.btn--gold:hover { background: var(--gold-hover); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(138, 100, 24, 0.36); }
.btn--outline {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold-dark);
  font-weight: 600;
}
.btn--outline:hover { background: var(--gold-dark); color: var(--white); border-color: var(--gold-dark); transform: translateY(-3px); }
.ico { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand__logo { height: 52px; width: auto; object-fit: contain; }
.brand__name { display: none; font-family: var(--font-head); font-weight: 600; font-size: 1.35rem; color: var(--gold-dark); letter-spacing: .5px; }
.nav { display: flex; gap: 30px; }
.nav__link { font-size: .96rem; color: var(--text); position: relative; padding: 4px 0; transition: color .2s ease; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width .3s ease;
}
.nav__link:hover { color: var(--gold-dark); }
.nav__link:hover::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 12px; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--gold-dark); border-radius: 2px; transition: .3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 8px 24px 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.nav-mobile.is-open { max-height: 320px; }
.nav-mobile__link { padding: 13px 4px; border-bottom: 1px solid var(--border); font-size: 1rem; }
.nav-mobile__link:last-child { border-bottom: 0; }
.nav-mobile__link--wpp { color: var(--gold-dark); font-weight: 600; }

/* ===== HERO ===== */
.hero { position: relative; padding: 72px 0 84px; background: linear-gradient(180deg, #fffdf9 0%, var(--beige) 100%); overflow: hidden; }
.hero__glow {
  position: absolute; top: -120px; right: -120px; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 174, 95, 0.22), transparent 70%);
  pointer-events: none;
}
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; position: relative; }
.eyebrow {
  display: inline-block; font-size: .78rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 500; margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-head); font-weight: 600; line-height: 1.05;
  font-size: clamp(2.6rem, 6vw, 4.4rem); color: var(--text); letter-spacing: -.5px;
}
.hero__subtitle { margin: 22px 0 32px; font-size: 1.12rem; color: var(--text-soft); max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.hero__badges li {
  font-size: .84rem; color: var(--gold-dark); background: var(--white);
  border: 1px solid var(--border); padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
}

.hero__visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 360px; }
.hero__card {
  position: relative; z-index: 2; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 44px 40px; text-align: center; border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: 340px; width: 100%;
}
.hero__logo { width: 190px; height: auto; }
.hero__slogan { font-family: var(--font-head); font-size: 1.5rem; color: var(--gold-dark); font-weight: 600; }
.hero__blob { position: absolute; border-radius: 50%; z-index: 1; }
.hero__blob--1 { width: 220px; height: 220px; background: rgba(210, 174, 95, 0.18); top: -20px; left: 0; }
.hero__blob--2 { width: 160px; height: 160px; background: rgba(166, 126, 40, 0.12); bottom: -10px; right: 10px; }

/* ===== SECTIONS ===== */
.section { padding: 86px 0; }
.section--soft { background: var(--beige); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section__title { font-family: var(--font-head); font-weight: 600; font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.1; }
.section__lead { margin-top: 18px; color: var(--text-soft); font-size: 1.06rem; }

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

/* ===== CARDS ===== */
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.card__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(210,174,95,.16), rgba(166,126,40,.12));
}
.card__icon svg { width: 28px; height: 28px; fill: none; stroke: var(--gold-dark); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card__title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; }
.card__text { color: var(--text-soft); font-size: .96rem; flex: 1; }
.card__link { color: var(--gold-dark); font-weight: 600; font-size: .92rem; transition: gap .2s ease, color .2s ease; }
.card__link:hover { color: var(--gold-hover); text-decoration: underline; }

/* ===== FEATURES ===== */
.feature {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 28px 22px; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature__num { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--gold-dark); margin-bottom: 10px; }
.feature__title { font-size: 1.08rem; font-weight: 500; margin-bottom: 8px; color: var(--text); }
.feature__text { color: var(--text-soft); font-size: .92rem; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--beige), #f2e8d3);
  padding: 74px 0; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-band__inner { max-width: 720px; margin: 0 auto; }
.cta-band__title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 600; margin-bottom: 18px; }
.cta-band__text { color: var(--text-soft); font-size: 1.08rem; margin-bottom: 30px; }

/* ===== ABOUT / SEO LOCAL ===== */
.about { background: var(--white); }
.about__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.about__title { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.12; margin-bottom: 20px; }
.about__text { color: var(--text-soft); font-size: 1.08rem; margin-bottom: 30px; }
.about__text strong { color: var(--gold-dark); font-weight: 600; }

/* ===== CONTACT ===== */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.contact__list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 30px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ico {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(210,174,95,.16), rgba(166,126,40,.12));
}
.contact__ico svg { width: 24px; height: 24px; fill: none; stroke: var(--gold-dark); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact__list strong { display: block; font-weight: 500; margin-bottom: 2px; }
.contact__list p { color: var(--text-soft); font-size: .98rem; }
.contact__list a:hover { color: var(--gold-dark); }
.contact__buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.contact__map {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border);
  min-height: 340px;
}
.contact__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ===== FOOTER ===== */
.footer { background: var(--footer-bg); color: #ece5d6; padding: 54px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 34px; align-items: start; padding-bottom: 44px; }
.footer__logo { height: 60px; width: auto; background: var(--white); border-radius: 14px; padding: 8px 12px; margin-bottom: 12px; }
.footer__name { font-family: var(--font-head); font-weight: 600; font-size: 1.35rem; color: var(--gold-light); display: block; margin-bottom: 4px; }
.footer__slogan { font-family: var(--font-head); color: var(--gold-light); font-size: 1.15rem; }
.footer__col strong { display: block; color: var(--white); margin-bottom: 12px; font-weight: 600; }
.footer__col p { color: #cfc6b2; font-size: .94rem; margin-bottom: 6px; }
.footer__col a { color: #ece5d6; }
.footer__col a:hover { color: var(--gold-light); text-decoration: underline; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 24px; text-align: center; }
.footer__bottom p { font-size: .88rem; color: #b8af9b; }
.footer__bottom a { color: var(--gold-light); font-weight: 600; text-decoration: underline; }
.footer__bottom a:hover { color: var(--white); }

/* ===== FLOATING WHATSAPP ===== */
.float-wpp {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--white);
  padding: 14px 22px; border-radius: 999px; font-weight: 500; font-size: .95rem;
  box-shadow: 0 12px 30px rgba(166, 126, 40, 0.4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.float-wpp:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 38px rgba(166, 126, 40, 0.5); }
.float-wpp .ico { width: 24px; height: 24px; }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__visual { order: -1; min-height: auto; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav__toggle { display: flex; }
  .nav-mobile { display: flex; }

  /* Header compacto: logo pequena + nome + hamburger */
  .header__inner { height: 66px; }
  .brand__logo { height: 32px; }
  .brand__name { display: inline-block; font-size: 1.2rem; }
  .header__cta { display: none; }

  /* Primeira dobra: conteúdo textual primeiro, sem card/logo gigante */
  .hero { padding: 30px 0 44px; }
  .hero__inner { gap: 0; }
  .hero__visual { display: none; }
  .hero__content { text-align: left; }
  .hero__title { font-size: clamp(2rem, 8.5vw, 2.4rem); line-height: 1.1; }
  .hero__subtitle { margin: 16px 0 24px; font-size: 1.02rem; }
  .hero__actions { gap: 12px; margin-bottom: 24px; }
  .hero__actions .btn { width: 100%; min-height: 48px; }
  .hero__badges { gap: 8px; }

  .section { padding: 56px 0; }

  /* Rodapé em blocos verticais claros */
  .footer__inner { grid-template-columns: 1fr; gap: 30px; text-align: center; padding-bottom: 38px; }
  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .footer__col p { font-size: 1rem; line-height: 1.7; }
  .footer__bottom p { line-height: 1.8; }

  /* WhatsApp flutuante compacto (apenas ícone) */
  .float-wpp__text { display: none; }
  .float-wpp { padding: 15px; right: 16px; bottom: 16px; }
  .float-wpp .ico { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .grid--4, .grid--5 { grid-template-columns: 1fr; }
  .contact__buttons .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
