/* =========================================================
   CAMILO & PESSANHA ADVOCACIA
   Luxury legal branding — naval blue, antique gold, ivory
   ========================================================= */

:root {
  --navy: #1A2B47;
  --navy-deep: #0D1B2E;
  --navy-soft: #16253F;
  --navy-line: rgba(201, 168, 76, 0.18);
  --gold: #C9A84C;
  --gold-hover: #B8933A;
  --gold-soft: rgba(201, 168, 76, 0.14);
  --ivory: #F5F2EC;
  --ivory-2: #ECE6D8;
  --white: #FFFFFF;
  --red: #C0392B;
  --text: #1d2330;
  --text-soft: #4e5668;
  --text-mute: #8a8f9d;
  --radius: 2px;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 600ms;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
em { font-style: italic; }

.gold { color: var(--gold); }
.gold-italic { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--gold); }
.light { color: var(--ivory); }

/* ---------- Entrance anim ---------- */
[data-anim] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
[data-anim].is-in { opacity: 1; transform: none; }

/* ---------- Eyebrow + section head ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--gold);
  margin: 0 0 24px;
}
.eyebrow.light { color: var(--gold); }
.eyebrow.center { color: var(--gold); justify-content: center; }
.eyebrow__rule {
  width: 32px; height: 1px; background: var(--gold); display: inline-block;
}
.section-head { max-width: 780px; margin: 0 0 56px; }
.section-head.center { margin: 0 auto 56px; text-align: center; }
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--navy-deep);
  text-wrap: balance;
}
.section-title.light { color: var(--ivory); }
.section-sub {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 620px;
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 250ms ease;
  border: 1px solid transparent;
  font-family: var(--sans);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn--gold:hover { background: var(--gold-hover); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(245, 242, 236, 0.35);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--ghost-dark {
  background: transparent;
  color: var(--navy-deep);
  border-color: rgba(13, 27, 46, 0.25);
}
.btn--ghost-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn--block { width: 100%; justify-content: center; padding: 16px; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-deep);
  color: var(--ivory);
  font-size: 12px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.topbar__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 10px 36px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.topbar__left, .topbar__right {
  display: flex; gap: 22px; align-items: center;
}
.topbar__item {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ivory-2);
  transition: color 200ms ease;
}
.topbar__item:hover { color: var(--gold); }
.topbar__item--sep { border-left: 1px solid rgba(201, 168, 76, 0.25); padding-left: 22px; }
.dot-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(201, 168, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--ivory);
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease, padding 300ms ease;
}
.nav.is-scrolled {
  background: rgba(13, 20, 40, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: rgba(201, 168, 76, 0.2);
}
.nav.is-scrolled .nav__links a,
.nav.is-scrolled .nav__wordmark-top,
.nav.is-scrolled .nav__wordmark-bot { color: var(--ivory); }
.nav__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 18px 36px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  margin-right: auto;
}
.nav__mark {
  width: 52px; height: 52px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(13, 27, 46, 0.2);
}
.nav__mark img { width: 100%; height: 100%; object-fit: contain; }
.nav__wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__wordmark-top {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: 0.01em;
  transition: color 300ms ease;
}
.nav__wordmark-top .amp { color: var(--gold); font-style: italic; font-weight: 400; }
/* Accessibility fix: dourado sobre ivory falha WCAG 4.5:1 → navy no estado claro */
.nav__wordmark-bot {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 4px;
  transition: color 300ms ease;
}
.nav.is-scrolled .nav__wordmark-bot { color: var(--ivory); }
.nav__links { display: flex; gap: 32px; }
.nav__links a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--navy-deep);
  padding: 6px 0;
  transition: color 200ms ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 280ms var(--ease);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 12px 18px; font-size: 12px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav__burger span {
  display: block; width: 22px; height: 1.5px; background: var(--navy-deep);
  transition: background 200ms ease;
}
.nav.is-scrolled .nav__burger span { background: var(--ivory); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: var(--ivory);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: calc(100vh - 120px);
  height: auto;
}
.hero__left {
  position: relative;
  padding: clamp(30px, 5vh, 60px) clamp(40px, 6vw, 110px);
  display: flex; align-items: center;
  background:
    radial-gradient(ellipse at top left, rgba(201,168,76,0.06), transparent 60%),
    var(--navy-deep);
}
.hero__gold-line {
  position: absolute;
  left: clamp(24px, 3vw, 50px);
  top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 15%, var(--gold) 85%, transparent);
  transform-origin: top;
  transform: scaleY(0);
  animation: goldLineIn 900ms ease-out 200ms forwards;
}
@keyframes goldLineIn { to { transform: scaleY(1); } }
.hero__left-inner { max-width: 720px; position: relative; }

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 5.5vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--ivory);
  text-wrap: balance;
  animation: heroFadeIn 800ms var(--ease) 100ms both;
}
.hero__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--ivory-2);
}
.hero__title .gold { color: var(--gold); font-style: italic; font-weight: 400; }
.hero__sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245, 242, 236, 0.72);
  max-width: 520px;
  margin: 0 0 28px;
  animation: heroFadeIn 800ms var(--ease) 200ms both;
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; animation: heroFadeIn 800ms var(--ease) 300ms both; }

.hero__meta {
  display: flex;
  align-items: stretch;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  animation: heroFadeIn 800ms var(--ease) 400ms both;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero__meta-item strong {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.hero__meta-item span {
  font-size: 10px;
  color: rgba(245, 242, 236, 0.6);
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.hero__meta-sep { width: 1px; background: rgba(201, 168, 76, 0.2); }

/* Hero photo */
.hero__right {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.hero__photo {
  position: absolute;
  inset: 0;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  animation: clipIn 1400ms var(--ease) forwards;
  opacity: 0;
}
@keyframes clipIn {
  from { opacity: 0; clip-path: polygon(25% 0, 100% 0, 100% 100%, 15% 100%); }
  to { opacity: 1; clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%); }
}
.hero__photo-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
  filter: brightness(0.95) contrast(1.02);
  opacity: 0;
  transition: opacity 1500ms ease-in-out;
}
.hero__photo-slide--active {
  opacity: 1;
  animation: photoIn 1200ms ease-out 400ms both;
}
@keyframes photoIn {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}
.hero__photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    var(--navy-deep) 0%,
    rgba(13, 27, 46, 0.2) 20%,
    rgba(13, 27, 46, 0) 45%,
    rgba(13, 27, 46, 0.1) 100%
  );
  z-index: 1;
}

.hero__badge {
  position: absolute;
  left: 18%;
  bottom: 48px;
  background: var(--ivory);
  color: var(--navy-deep);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border-left: 3px solid var(--gold);
  z-index: 2;
  max-width: 280px;
}
.hero__badge strong {
  display: block; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
}
/* Accessibility fix: text-mute (#8a8f9d) sobre ivory falha 4.5:1 → usar text-soft (#4e5668) */
.hero__badge small {
  display: block; font-size: 11px; color: var(--text-soft); letter-spacing: 0.05em; margin-top: 2px;
}
.hero__badge-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #2ecc71; box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.2);
  animation: pulse-g 1.6s infinite;
}
@keyframes pulse-g {
  0%,100% { box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(46, 204, 113, 0.05); }
}

.hero__vmark {
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  display: flex; gap: 20px;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(245, 242, 236, 0.45);
  text-transform: uppercase;
  z-index: 2;
}
.hero__vmark span::after {
  content: "◆"; margin-left: 20px; color: var(--gold);
}
.hero__vmark span:last-child::after { display: none; }

/* ---------- IMPACT ---------- */
.impact { background: var(--ivory); padding: clamp(80px, 10vh, 140px) 0; }
.impact__inner { max-width: 1360px; margin: 0 auto; padding: 0 36px; }
.impact__label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 40px;
}
.impact__label .rule { width: 32px; height: 1px; background: var(--gold); }
.impact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-top: 1px solid var(--navy-line);
}
.impact__pain, .impact__solve {
  padding: 60px clamp(32px, 5vw, 80px) 60px 0;
}
.impact__solve {
  background: var(--navy-deep);
  color: var(--ivory);
  padding-left: clamp(32px, 5vw, 80px);
  padding-right: clamp(32px, 5vw, 80px);
  position: relative;
  margin-top: -1px;
}
.impact__solve::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 3px; height: 80px;
  background: var(--gold);
}
.impact__kicker {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; font-weight: 400; margin: 0 0 10px;
  color: var(--text-soft);
}
.impact__kicker.gold { color: var(--gold); }
.impact__headline {
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--navy-deep);
  margin: 0 0 20px;
}
.impact__headline.light { color: var(--ivory); }
.impact__headline em {
  font-style: italic; font-weight: 400; color: var(--gold);
}
.impact__body { font-size: 16px; color: var(--text-soft); line-height: 1.7; max-width: 460px; }
.impact__body.light { color: rgba(245,242,236,0.75); }

.impact__checks {
  list-style: none;
  padding: 32px 0 0; margin: 32px 0 0;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  display: flex; flex-direction: column; gap: 14px;
}
.impact__checks li {
  display: flex; align-items: baseline; gap: 18px;
  font-size: 14px; color: rgba(245, 242, 236, 0.88);
}
.impact__checks li span {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 18px;
  min-width: 32px;
}

/* ---------- AREAS / Accordion ---------- */
.areas { background: var(--ivory); padding: clamp(100px, 12vh, 160px) 0; }
.areas__inner { max-width: 1360px; margin: 0 auto; padding: 0 36px; }

.acc { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--navy-line); }
.acc__item { border-bottom: 1px solid var(--navy-line); transition: background 300ms ease, opacity 500ms ease-out, transform 500ms ease-out; }
/* PageSpeed fix: classe para stagger via JS sem style inline (evita forced reflow) */
.acc__item--hidden { opacity: 0; transform: translateX(-20px); }
.acc__item.is-open { background: var(--white); }
.acc__head {
  width: 100%;
  display: grid;
  grid-template-columns: 80px 60px 1fr 60px;
  align-items: center;
  padding: 24px;
  text-align: left;
  transition: all 300ms ease;
  gap: 20px;
}
.acc__head:hover { background: rgba(201, 168, 76, 0.04); }

.acc__thumb {
  width: 60px;
  height: 40px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.acc__thumb img { width: 100%; height: 100%; object-fit: cover; }

.acc__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  transition: all 300ms ease;
}
.acc__item.is-open .acc__num { font-size: 56px; }

.acc__title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  color: var(--navy-deep);
  display: flex; align-items: center; gap: 14px;
}
.no-scroll {
  overflow: hidden;
}
.acc__tag {
  font-family: var(--sans);
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 9px;
  padding: 4px 10px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  vertical-align: middle;
  border-radius: 2px;
}
.acc__icon {
  width: 32px; height: 32px;
  position: relative;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transition: all 300ms ease;
  justify-self: end;
}
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute; background: var(--gold);
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  transition: transform 300ms ease;
}
.acc__icon::before { width: 12px; height: 1px; }
.acc__icon::after { width: 1px; height: 12px; }
.acc__item.is-open .acc__icon { background: var(--gold); }
.acc__item.is-open .acc__icon::before, .acc__item.is-open .acc__icon::after { background: var(--navy-deep); }
.acc__item.is-open .acc__icon::after { transform: translate(-50%, -50%) scaleY(0); }

.acc__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 500ms var(--ease);
}
.acc__item.is-open .acc__body { grid-template-rows: 1fr; }
.acc__body > div { overflow: hidden; }
.acc__grid {
  display: grid;
  grid-template-columns: 100px 1fr 0.8fr 1fr;
  padding: 0 24px 40px;
  gap: 30px;
  align-items: center;
}
.acc__grid > *:first-child { grid-column-start: 2; }
.acc__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 420px;
}
.acc__list {
  list-style: none; margin: 0; padding: 0;
  columns: 1;
  font-size: 14px;
}
.acc__list li {
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px dotted rgba(13, 27, 46, 0.1);
  color: var(--navy-deep);
}
.acc__list li::before {
  content: "◆";
  position: absolute; left: 0; top: 8px;
  color: var(--gold); font-size: 10px;
}
.acc__media {
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  opacity: 0;
  transform: scale(1.1);
  transition: all 800ms var(--ease) 200ms;
}
.acc__item.is-open .acc__media { opacity: 1; transform: scale(1); }
.acc__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--navy-deep);
  color: var(--gold);
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}
.marquee__track {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__dot { color: var(--gold); opacity: 0.5; font-size: 14px; display: flex; align-items: center; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- DELIGHT ---------- */
.delight { background: var(--ivory); padding: clamp(80px, 10vh, 130px) 0; }
.delight__inner { max-width: 1360px; margin: 0 auto; padding: 0 36px; }
.delight__head { text-align: left; margin-bottom: 48px; }
.delight__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.delight__card {
  position: relative;
  margin: 0;
  overflow: hidden;
  grid-column: span 2;
  grid-row: span 1;
}
.delight__card--tall { grid-column: span 2; grid-row: span 2; }
.delight__card--wide { grid-column: span 4; grid-row: span 1; }
.delight__card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 900ms var(--ease);
}
.delight__card:hover img { transform: scale(1.05); }
.delight__card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 46, 0.85), transparent 55%);
  pointer-events: none;
}
.delight__card figcaption {
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  color: var(--ivory);
  z-index: 2;
  font-size: 14px;
  line-height: 1.4;
}
.delight__tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--navy-deep);
  color: var(--ivory);
  padding: clamp(100px, 12vh, 160px) 0;
  position: relative;
}
.about__inner {
  max-width: 1360px; margin: 0 auto; padding: 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: flex-start;
}
.about__media { position: relative; }
.about__media-sticky { position: sticky; top: 100px; }
.about__stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about__portrait {
  margin: 0;
  background: var(--navy);
  overflow: hidden;
  position: relative;
}
.about__portrait img {
  width: 100%; height: 440px; object-fit: cover; object-position: center 18%;
}
.about__portrait--a { margin-top: 30px; }
.about__portrait--b { margin-top: 0; }
.about__portrait figcaption {
  padding: 18px 20px;
  background: var(--navy);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
}
.about__portrait figcaption strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
}
.about__portrait figcaption span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.6);
}


.about__gold-line {
  position: absolute;
  left: -20px; top: 60px; bottom: 60px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.about__monogram {
  position: absolute;
  right: -10px; top: -40px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 100px;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.08);
  letter-spacing: -0.03em;
  pointer-events: none;
  z-index: 0;
}

.about__text { padding-top: 20px; }
.about__body p {
  font-size: 16px; line-height: 1.75;
  color: rgba(245, 242, 236, 0.78);
  margin: 0 0 16px;
  max-width: 520px;
}
.about__body strong { color: var(--ivory); font-weight: 500; }



/* ---------- REVIEWS ---------- */
.reviews {
  background: var(--navy);
  color: var(--ivory);
  padding: clamp(100px, 12vh, 160px) 0;
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: "“";
  position: absolute;
  left: -30px; top: -80px;
  font-family: var(--serif);
  font-size: 500px;
  color: rgba(201, 168, 76, 0.06);
  font-weight: 400;
  pointer-events: none;
  line-height: 1;
}
.reviews__inner { max-width: 1160px; margin: 0 auto; padding: 0 36px; position: relative; }
.reviews__google {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 22px;
  background: var(--navy-deep);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 40px;
  margin-top: 20px;
}
.reviews__google strong {
  font-family: var(--serif); font-size: 26px; color: var(--gold); line-height: 1;
}
.reviews__stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.reviews__count { font-size: 12px; color: rgba(245, 242, 236, 0.7); letter-spacing: 0.05em; }

.reviews__stage {
  position: relative;
  min-height: 450px;
  margin: 60px 0 32px;
}
.review-card {
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 40px clamp(30px, 5vw, 60px);
  display: flex; flex-direction: column;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 700ms ease-in-out, transform 700ms ease-in-out;
  pointer-events: none;
}
.review-card.is-active { opacity: 1; transform: none; pointer-events: auto; }
.review-card__stars {
  color: var(--gold); font-size: 18px; letter-spacing: 3px; margin-bottom: 20px;
}
.review-card__text {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ivory);
  margin: 0 0 32px;
  font-style: italic;
  max-width: 720px;
  text-wrap: pretty;
}
.review-card__text::before { content: "“"; color: var(--gold); font-size: 1.4em; margin-right: 4px; }
.review-card__text::after { content: "”"; color: var(--gold); font-size: 1.4em; margin-left: 2px; }
.review-card__meta {
  margin-top: auto;
  display: flex; align-items: center; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
}
.review-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 600; font-size: 18px;
}
.review-card__who {
  display: flex; flex-direction: column; gap: 2px;
}
.review-card__name { font-weight: 500; font-size: 15px; color: var(--ivory); }
.review-card__time { font-size: 12px; color: rgba(245, 242, 236, 0.5); }
.review-card__g {
  margin-left: auto;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,242,236,0.6);
}

.reviews__nav {
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.reviews__btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50%;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: all 250ms ease;
}
.reviews__btn:hover { background: var(--gold); color: var(--navy-deep); }
/* Accessibility fix: touch target mínimo 44x44px via padding para não alterar visual */
.reviews__dots { display: flex; gap: 4px; }
.reviews__dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(201, 168, 76, 0.3);
  transition: all 250ms ease;
  padding: 18px 10px;
  background-clip: content-box;
}
.reviews__dots button.is-active {
  background: var(--gold);
  background-clip: content-box;
  width: 24px;
  border-radius: 4px;
}

/* ---------- FAQ ---------- */
.faq { background: var(--ivory); padding: clamp(100px, 12vh, 160px) 0; }
.faq__inner { max-width: 1060px; margin: 0 auto; padding: 0 36px; }
.faq__list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--navy-line); }
.faq__item { border-bottom: 1px solid var(--navy-line); }
.faq__head {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px;
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  color: var(--navy-deep);
  text-align: left;
  transition: color 200ms ease;
}
.faq__head:hover { color: var(--gold); }
.faq__icon {
  width: 24px; height: 24px;
  position: relative; flex-shrink: 0;
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--gold);
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  transition: transform 300ms ease;
}
.faq__icon::before { width: 14px; height: 1px; }
.faq__icon::after { width: 1px; height: 14px; }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq__body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 400ms var(--ease);
}
.faq__item.is-open .faq__body { grid-template-rows: 1fr; }
.faq__body > p { overflow: hidden; margin: 0; padding: 0 4px 28px; color: var(--text-soft); line-height: 1.7; max-width: 720px; }

/* ---------- LOCATION ---------- */
.location { background: var(--ivory-2); padding: clamp(80px, 10vh, 130px) 0; }
.location__inner {
  max-width: 1360px; margin: 0 auto; padding: 0 36px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.location__addr {
  font-family: var(--serif); font-style: italic;
  font-size: 20px; line-height: 1.5;
  color: var(--navy-deep);
  margin: 24px 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}
.location__info {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  margin: 0 0 32px;
}
.location__info > div { display: flex; flex-direction: column; gap: 4px; }
/* Accessibility fix: dourado sobre ivory falha WCAG 4.5:1 em fonte 11px → navy */
.location__info dt {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy); font-weight: 600;
}
.location__info dd { margin: 0; font-size: 14px; color: var(--navy-deep); line-height: 1.5; }
.location__info a:hover { color: var(--gold); }
.location__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.location__map {
  position: relative;
  aspect-ratio: 4/3.2;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(13, 27, 46, 0.4);
}
.location__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.1) contrast(1.02); }
.location__map-badge {
  position: absolute;
  left: 24px; bottom: 24px;
  background: var(--navy-deep);
  color: var(--ivory);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 12px;
  border-left: 3px solid var(--gold);
}
.location__map-badge span { color: var(--gold); font-size: 22px; }
.location__map-badge strong { display: block; font-family: var(--serif); font-size: 15px; }
.location__map-badge small { font-size: 11px; color: rgba(245,242,236,0.7); letter-spacing: 0.05em; }

/* ---------- CTA + Form ---------- */
.cta { background: var(--navy-deep); color: var(--ivory); padding: clamp(100px, 12vh, 160px) 0; }
.cta__inner {
  max-width: 1260px; margin: 0 auto; padding: 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: flex-start;
}
.cta__pitch { padding-top: 20px; }
.cta__body {
  font-size: 16px; line-height: 1.7;
  color: rgba(245, 242, 236, 0.75);
  margin: 20px 0 36px;
  max-width: 520px;
}
.cta__lines { display: flex; flex-direction: column; border-top: 1px solid rgba(201, 168, 76, 0.2); }
.cta__line {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: all 250ms ease;
}
.cta__line:hover { padding-left: 10px; background: rgba(201, 168, 76, 0.04); }
.cta__line-lbl {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}
.cta__line-val {
  font-family: var(--serif); font-size: 20px; color: var(--ivory); font-weight: 500;
}

.cta__form {
  background: var(--navy);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: clamp(28px, 4vw, 42px);
  display: flex; flex-direction: column; gap: 18px;
}
.cta__form-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 20px; margin-bottom: 4px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.cta__form-head h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 500;
  margin: 0; color: var(--ivory);
}
.cta__form-head span { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }

.field, .field-row { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 500;
}
.field input, .field select, .field textarea {
  background: var(--navy-deep);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--ivory);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 14px;
  transition: border 200ms ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(245,242,236,0.35); }
.field textarea { resize: vertical; min-height: 96px; }
.field-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; color: rgba(245, 242, 236, 0.65); line-height: 1.4;
}
.field-check input { accent-color: var(--gold); margin-top: 3px; }
.cta__form-note {
  color: var(--gold); font-size: 13px; margin: 8px 0 0; text-align: center;
}

/* ---------- FOOTER ---------- */
.footer { background: #08121f; color: var(--ivory); padding: 60px 0 0; }
.footer__inner {
  max-width: 1360px; margin: 0 auto; padding: 0 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: rgba(245, 242, 236, 0.7); transition: color 200ms ease; }
.footer__col a:hover { color: var(--gold); }
.footer__brand {
  display: block; width: 130px; margin-bottom: 12px;
  border-radius: 2px; overflow: hidden;
}
.footer__brand img { width: 100%; height: auto; display: block; }

.footer__tag {
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: rgba(245, 242, 236, 0.7); line-height: 1.4; margin: 0;
}
.footer__contact a { display: inline-flex; align-items: center; gap: 10px; }

/* ---------- FOOTER BOTTOM (Créditos AG5) ---------- */
.footer-bottom {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer-bottom .footer-credits-left, 
.footer-bottom .footer-credits-right {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 36px;
}

/* Reajuste para o container principal do bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
  padding: 20px 36px;
}

.footer-credits-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Accessibility fix: contraste WCAG 4.5:1 mínimo sobre navy-deep (#0D1B2E) */
.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
}

/* Accessibility fix: touch target mínimo via padding */
.footer-legal-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 8px 0;
  display: inline-block;
}

.footer-legal-links a:hover {
  color: var(--gold);
}

.legal-sep {
  margin: 0 10px;
  opacity: 0.3;
}

.footer-credits-right {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.footer-credits-right a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-credits-right a:hover {
  color: var(--gold-hover);
}

/* COOKIE TOGGLE - Estilo iOS Minimalista */
/* Accessibility fix: touch target mínimo via padding vertical */
#ck-prefs-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  padding: 8px 0;
}

.cookie-toggle {
  display: inline-flex;
  align-items: center;
  width: 28px;
  height: 14px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  font-size: 8px;
  font-weight: bold;
}

.cookie-toggle__check {
  color: #86EFAC;
  margin-left: 2px;
}

.cookie-toggle__x {
  color: #FCA5A5;
  margin-left: auto;
  margin-right: 2px;
}

.cookie-toggle__dot {
  position: absolute;
  left: 15px;
  width: 10px;
  height: 10px;
  background: #C49A3C;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  transition: left 0.2s ease, background 0.2s ease;
}

/* Estados do Toggle */
.cookie-toggle.active .cookie-toggle__dot {
  left: 15px;
  background: #C49A3C;
}

.cookie-toggle.inactive .cookie-toggle__dot {
  left: 2px;
  background: #888;
}

#ck-prefs-link:hover .cookie-toggle {
  border-color: rgba(255, 255, 255, 0.4);
}

#ck-prefs-link:hover .cookie-toggle__dot {
  box-shadow: 0 0 8px rgba(196, 154, 60, 0.5);
}

/* ---------- WA Float ---------- */
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 50;
  background: #25D366;
  color: var(--white);
  padding: 14px 20px 14px 16px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.4);
  transition: transform 250ms ease;
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float span {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
}

/* ---------- Drawer (Mobile Menu) ---------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 46, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms var(--ease);
}
.drawer-overlay.is-active { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 100%; max-width: 380px;
  height: 100%;
  background: var(--navy-deep);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: right 600ms var(--ease);
  box-shadow: -10px 0 50px rgba(0,0,0,0.5);
  padding: 40px 30px;
}
.drawer.is-active { right: 0; }

.drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.drawer__logo { width: 140px; border-radius: 2px; overflow: hidden; }
.drawer__logo img { width: 100%; height: auto; }
.drawer__close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  transition: all 300ms ease;
}
.drawer__close:hover { background: var(--gold); color: var(--navy-deep); }

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: auto;
}
.drawer__link {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ivory);
  opacity: 0.7;
  transition: all 300ms var(--ease);
  display: block;
}
.drawer__link:hover { opacity: 1; color: var(--gold); transform: translateX(10px); }

.drawer__footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.drawer__contact {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.drawer__contact span:first-child {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold);
}
.drawer__contact span:last-child {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.5);
}

body.no-scroll { overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .topbar__inner { flex-direction: column; gap: 6px; padding: 10px 20px; }
  .topbar__item--sep { border-left: 0; padding-left: 0; }
  .nav__inner { padding: 14px 20px; gap: 12px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: 60px 24px 40px; }
  .hero__right { min-height: 420px; }
  .hero__photo { clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%); animation: none; opacity: 1; }
  .hero__photo img { animation: none; opacity: 1; }
  .hero__vmark { display: none; }
  .hero__badge { bottom: 20px; left: 20px; }
  .hero__meta { flex-wrap: wrap; gap: 16px; }
  .hero__meta-sep { display: none; }

  .impact__grid, .about__inner, .cta__inner, .location__inner { grid-template-columns: 1fr; }
  .impact__pain, .impact__solve { padding: 40px 20px; }
  .impact__solve::before { display: none; }
  .about__media-sticky { position: static; }
  .about__portrait img { height: 320px; }
  .about__commitments { display: none; }

  .acc__head { grid-template-columns: 50px 1fr 40px; padding: 18px 12px; gap: 10px; }
  .acc__thumb { display: none; }
  .acc__item.is-open .acc__num { font-size: 32px; }
  .acc__grid { grid-template-columns: 1fr; padding: 0 14px 28px; }
  .acc__grid > *:first-child { grid-column-start: 1; }
  .acc__media { height: 180px; transform: none; transition: opacity 500ms ease; }

  .delight__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .delight__card, .delight__card--tall, .delight__card--wide { grid-column: span 2; grid-row: span 1; }
  .delight__card--tall { grid-row: span 2; }

  .about__info-grid { grid-template-columns: 1fr; gap: 48px; margin-top: 40px; padding-top: 40px; }
  .values { padding-left: 0; border-left: none; gap: 24px; }
  .values__item { padding-left: 36px; }
  .values__num { font-size: 16px; }
  .counter__num { font-size: 48px; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 1rem; 
  }

  .marquee__track { font-size: 20px; }

  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .footer__inner { grid-template-columns: 1fr; }
  .location__info { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 32px; }
}

/* WhatsApp Floating Bubble (Premium Look) */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

#whatsapp-message {
    width: 280px;
    position: absolute;
    bottom: 75px;
    right: 0px;
    padding: 16px 24px 16px 16px;
    background: #ffffff;
    color: #1a1a1b;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 10002;
}

#whatsapp-message.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

#whatsapp-message::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 25px;
    width: 12px;
    height: 12px;
    background: inherit;
    transform: rotate(45deg);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.close-whatsapp-bubble {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    color: #bbb;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    transition: all 0.2s ease;
    padding: 4px;
}
.close-whatsapp-bubble:hover { color: #666; transform: scale(1.1); }

.whatsapp-logo-bubble {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #25d366;
    background-color: #fff;
    padding: 2px;
    object-fit: contain;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none !important;
    position: relative;
    z-index: 10001;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
}
.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-notify {
    position: absolute;
    top: -2px; right: -2px;
    background-color: #ff3b30;
    color: white;
    width: 20px; height: 20px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-notify.show { opacity: 1; transform: scale(1); }

@media (max-width: 640px) {
    .whatsapp-container { bottom: 20px; right: 20px; }
    .whatsapp-float { width: 54px; height: 54px; font-size: 28px; }
    #whatsapp-message { width: 240px; font-size: 13px; bottom: 70px; }
}

/* Responsividade Depoimentos */
@media (max-width: 1024px) {
    .reviews__stage { min-height: 480px; }
}

@media (max-width: 768px) {
    .reviews__stage { min-height: 540px; }
    .review-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
    .reviews__stage { min-height: 620px; }
}

