/* ===== Bonati — Estratégia & Performance ===== */

:root {
  --wine: #5b0a2d;
  --wine-dark: #3a0620;
  --wine-darker: #2a0417;
  --gold-1: #c9a466;
  --gold-2: #f7d18e;
  --gold-3: #caa467;
  --gold-gradient: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 50%, var(--gold-3) 100%);
  --white: #ffffff;
  --off-white: #fbf8f4;
  --ink: #241017;
  --ink-soft: #6b5b62;
  --border-soft: rgba(91, 10, 45, 0.1);
  --shadow-soft: 0 20px 50px -20px rgba(91, 10, 45, 0.25);
  --shadow-gold: 0 10px 30px -10px rgba(201, 164, 102, 0.55);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

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

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

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  margin: 0 0 .5em;
  line-height: 1.15;
  font-weight: 600;
  color: var(--wine);
}

p { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-3);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold-gradient);
  display: inline-block;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section {
  padding: 100px 0;
  position: relative;
}
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 { font-size: clamp(30px, 4vw, 44px); }
.section-head p { font-size: 17px; }
.section-head.left { margin: 0 0 48px; text-align: left; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: .3px;
  cursor: pointer;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn-gold {
  background: var(--gold-gradient);
  color: var(--wine-darker);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -10px rgba(201,164,102,.7); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.55);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-3px); }
.btn-wine {
  background: var(--wine);
  color: var(--white);
}
.btn-wine:hover { background: var(--wine-dark); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(91,10,45,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo .logo-icon { height: 40px; width: auto; }
.logo .logo-word { height: 19px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--wine);
  position: relative;
  padding: 4px 0;
}
.site-header:not(.scrolled) .nav a { color: #fff; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions .btn { padding: 12px 24px; font-size: 14.5px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-3);
  background: transparent;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display:none; }
.nav-toggle svg { width: 20px; height: 20px; }
.site-header:not(.scrolled) .nav-toggle { border-color: rgba(255,255,255,.6); }
.site-header:not(.scrolled) .nav-toggle svg path { stroke: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 20% 20%, #7a1240 0%, var(--wine) 45%, var(--wine-darker) 100%);
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
}
.hero::before {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--gold-2), transparent 70%);
  top: -180px; right: -160px;
}
.hero::after {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--gold-1), transparent 70%);
  bottom: -140px; left: -100px;
  opacity: .2;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(247,209,142,.4);
  background: rgba(255,255,255,.05);
  color: var(--gold-2);
  font-size: 13.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 26px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-gradient); }
.hero h1 {
  color: #fff;
  font-size: clamp(38px, 5.2vw, 64px);
  max-width: 720px;
}
.hero h1 em { font-style: normal; }
.hero p.lead {
  color: rgba(255,255,255,.78);
  font-size: 18.5px;
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stats .stat span { color: rgba(255,255,255,.65); font-size: 13.5px; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,.08), rgba(255,255,255,0) 60%);
  border: 1px solid rgba(247,209,142,.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge::before {
  content: "";
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  border: 1px dashed rgba(247,209,142,.3);
}
.hero-badge img { width: 46%; }
.hero-badge .float-card {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.5);
}
.hero-badge .float-card svg { width: 20px; height: 20px; flex-shrink: 0; }
.hero-badge .float-card.c1 { top: 6%; left: -6%; }
.hero-badge .float-card.c2 { bottom: 10%; right: -10%; }

/* ---------- Marquee / trust bar ---------- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  padding: 22px 0;
}
.trust-bar .container { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.trust-bar span { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; opacity: .75; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -25px rgba(91,10,45,.35); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .badge-new {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold-gradient);
  color: var(--wine-darker);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.service-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(91,10,45,.06), rgba(201,164,102,.15));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 21px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; margin-bottom: 0; }

/* ---------- Diferenciais ---------- */
.diff-section { background: var(--wine); position: relative; overflow: hidden; }
.diff-section::before {
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 80% 0%, rgba(247,209,142,.12), transparent 55%);
}
.diff-section .section-head h2, .diff-section .section-head p { color: #fff; }
.diff-section .section-head p { color: rgba(255,255,255,.7); }
.diff-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.diff-item {
  background: var(--wine);
  padding: 40px 28px;
  transition: background .3s ease;
}
.diff-item:hover { background: var(--wine-dark); }
.diff-item .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px;
  display: block;
}
.diff-item h4 { color: #fff; font-size: 18px; margin-bottom: 10px; font-family: 'Cormorant Garamond', serif; }
.diff-item p { color: rgba(255,255,255,.65); font-size: 14px; margin: 0; }

/* ---------- Results ---------- */
.results-section {
  background: linear-gradient(180deg, var(--off-white) 0%, #fff 100%);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.result-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.result-card .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
  margin-bottom: 14px;
}
.result-card h4 { color: var(--wine); font-size: 17px; margin-bottom: 8px; }
.result-card p { font-size: 14px; margin: 0; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  position: relative;
  background: var(--wine);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-visual::before {
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at 70% 20%, rgba(247,209,142,.18), transparent 60%);
}
.about-visual img { width: 55%; position: relative; z-index: 1; }
.about-list { list-style: none; padding: 0; margin: 28px 0 34px; }
.about-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.about-list li:last-child { border-bottom: none; }
.about-list li svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }

/* ---------- Final CTA ---------- */
.cta-final {
  background: var(--gold-gradient);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-final .container {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-final h2 { color: var(--wine-darker); font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 8px; }
.cta-final p { color: rgba(58,6,32,.75); margin: 0; font-size: 16px; }
.cta-final .btn-wine:hover { background: var(--wine-darker); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--wine-darker);
  color: rgba(255,255,255,.75);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-grid .logo { margin-bottom: 16px; }
.footer-grid .logo .logo-icon { height: 36px; }
.footer-grid .logo .logo-word { height: 17px; }
.footer-grid p { color: rgba(255,255,255,.55); font-size: 14px; max-width: 280px; }
.footer-col h5 {
  color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 17px;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,.6); transition: color .2s ease; }
.footer-col a:hover { color: var(--gold-2); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.footer-social a:hover { background: var(--gold-gradient); border-color: transparent; }
.footer-social a:hover svg path { fill: var(--wine-darker); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 26px; font-size: 13px; color: rgba(255,255,255,.4);
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 999;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px -8px rgba(201,164,102,.7);
  animation: pulse-ring 2.6s ease-in-out infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; }
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 14px 34px -8px rgba(201,164,102,.7); }
  50% { box-shadow: 0 14px 34px -8px rgba(201,164,102,.7), 0 0 0 12px rgba(201,164,102,.12); }
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 320px; margin: 0 auto 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 360px; margin: 0 auto; }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .nav, .header-actions .btn-outline-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-gold { padding: 10px 18px; font-size: 13.5px; }
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .cta-final .container { flex-direction: column; text-align: center; }
  .hero-stats { justify-content: center; text-align: center; }
  .trust-bar .container { gap: 22px; }
}

@media (max-width: 460px) {
  .header-actions { gap: 10px; }
  .logo { gap: 8px; }
  .logo .logo-icon { height: 32px; }
  .logo .logo-word { display: none; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--wine-darker);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-24px);
  transition: opacity .35s ease, transform .35s ease, visibility 0s linear .35s;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity .35s ease, transform .35s ease;
}
.mobile-nav a { color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 30px; }
.mobile-nav .btn { margin-top: 10px; }
.mobile-nav-close {
  position: absolute;
  top: 26px; right: 26px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.4);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.mobile-nav-close svg { width: 18px; height: 18px; }
