/* ============================================================
   RENATA ROSA BEAUTY CONCEPT — Stylesheet
   Paleta: off-white #FAF7F2 | dourado #C9A97A | nude escuro #3D2B1F
   Tipografia: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ============================================================
   BARRA DE URGÊNCIA
   ============================================================ */
/* Container fixo que agrupa urgency bar + navbar */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}

.urgency-bar {
  background: #B07850;
  color: rgba(255,255,255,.95);
  padding: .6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: .78rem;
  letter-spacing: .03em;
  position: relative;
}

.urgency-bar p {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.urgency-bar__dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.3); }
}

.urgency-bar a {
  color: #FFE8C8;
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--transition);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.urgency-bar a:hover { color: var(--white); }

.urgency-bar__close {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  cursor: pointer;
  padding: .2rem .4rem;
  transition: color var(--transition);
}
.urgency-bar__close:hover { color: var(--white); }

.urgency-bar.hidden { display: none; }

:root {
  --gold:      #C9A97A;
  --gold-dark: #A07850;
  --cream:     #FAF7F2;
  --dark:      #3D2B1F;
  --mid:       #7A5C4A;
  --light:     #EDE4D8;
  --white:     #FFFFFF;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', system-ui, sans-serif;
  --transition: 0.3s ease;
  --radius:     4px;
  --shadow:     0 8px 40px rgba(61,43,31,.10);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

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

/* ── Typography helpers ── */
.section__eyebrow {
  font-family: var(--ff-body);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .6rem;
}

.section__title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
}

.section__title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--dark);
}
.btn--primary:hover { background: var(--gold-dark); color: var(--white); }

.btn--outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn--outline:hover { background: var(--gold); color: var(--dark); }

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  font-size: 1rem;
  padding: 1rem 2.2rem;
}
.btn--whatsapp:hover { background: #1ebe5d; }

.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: relative;
  top: auto; left: auto; right: auto;
  z-index: auto;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(250,247,242,.97);
  box-shadow: 0 2px 20px rgba(61,43,31,.08);
  backdrop-filter: blur(8px);
}

.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.navbar__logo-img {
  height: 56px;
  width: auto;
  display: block;
  transition: filter var(--transition);
}

/* Hero agora é nude/claro — logo mantém cor natural */
.navbar:not(.scrolled) .navbar__logo-img {
  filter: none;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__links a {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color var(--transition);
}
.navbar__links a:hover { color: var(--gold-dark); }

/* Hero nude/claro — links em tom escuro natural */
.navbar:not(.scrolled) .navbar__links a {
  color: var(--dark);
}
.navbar:not(.scrolled) .navbar__links a:hover { color: var(--gold-dark); }
.navbar:not(.scrolled) .navbar__links .btn--outline {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.navbar:not(.scrolled) .navbar__hamburger span {
  background: var(--dark);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: all var(--transition);
}

.navbar__mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid var(--light);
}

.navbar__mobile a {
  padding: .65rem 0;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--light);
  color: var(--dark);
}

.navbar__mobile.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #EDD9C2 0%, #F4E8D5 45%, #FAF3EA 80%, #FDF8F2 100%);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5.5rem 3rem 1.5rem;
  display: grid;
  grid-template-columns: 54fr 46fr;
  gap: 2.5rem;
  align-items: center;
}

.hero__content { }

/* ── Decorações geométricas ── */
.hero__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.hero__deco--tl {
  top: 14rem;
  left: 5rem;
  width: 88px;
  opacity: .32;
}
.hero__deco--br {
  bottom: 7rem;
  right: 6rem;
  width: 64px;
  opacity: .22;
}
.hero__deco--ml {
  top: 55%;
  left: 48%;
  width: 44px;
  opacity: .15;
}
@media (max-width: 768px) {
  .hero__deco--tl { top: 9rem; left: 1.5rem; width: 60px; }
  .hero__deco--br { display: none; }
  .hero__deco--ml { display: none; }
}

/* ── Bokeh fairy lights ── */
.hero__bokeh {
  display: none;
}
.hero__bokeh--left {
  left: 0;
  background-image:
    radial-gradient(circle 7px at 20px  6%,  rgba(201,169,122,.85) 0%, transparent 100%),
    radial-gradient(circle 5px at 22px 16%,  rgba(201,169,122,.55) 0%, transparent 100%),
    radial-gradient(circle 9px at 17px 27%,  rgba(201,169,122,.70) 0%, transparent 100%),
    radial-gradient(circle 5px at 21px 38%,  rgba(201,169,122,.50) 0%, transparent 100%),
    radial-gradient(circle 7px at 18px 49%,  rgba(201,169,122,.80) 0%, transparent 100%),
    radial-gradient(circle 5px at 22px 60%,  rgba(201,169,122,.60) 0%, transparent 100%),
    radial-gradient(circle 8px at 16px 71%,  rgba(201,169,122,.75) 0%, transparent 100%),
    radial-gradient(circle 5px at 20px 82%,  rgba(201,169,122,.55) 0%, transparent 100%),
    radial-gradient(circle 7px at 21px 93%,  rgba(201,169,122,.80) 0%, transparent 100%),
    radial-gradient(circle 5px at 55px  3%,  rgba(201,169,122,.60) 0%, transparent 100%),
    radial-gradient(circle 8px at 57px 14%,  rgba(201,169,122,.85) 0%, transparent 100%),
    radial-gradient(circle 5px at 53px 25%,  rgba(201,169,122,.55) 0%, transparent 100%),
    radial-gradient(circle 7px at 56px 36%,  rgba(201,169,122,.75) 0%, transparent 100%),
    radial-gradient(circle 5px at 54px 47%,  rgba(201,169,122,.50) 0%, transparent 100%),
    radial-gradient(circle 9px at 57px 58%,  rgba(201,169,122,.80) 0%, transparent 100%),
    radial-gradient(circle 5px at 53px 69%,  rgba(201,169,122,.60) 0%, transparent 100%),
    radial-gradient(circle 7px at 55px 80%,  rgba(201,169,122,.85) 0%, transparent 100%),
    radial-gradient(circle 5px at 56px 91%,  rgba(201,169,122,.55) 0%, transparent 100%),
    radial-gradient(circle 6px at 95px  9%,  rgba(201,169,122,.65) 0%, transparent 100%),
    radial-gradient(circle 5px at 97px 21%,  rgba(201,169,122,.50) 0%, transparent 100%),
    radial-gradient(circle 8px at 93px 32%,  rgba(201,169,122,.80) 0%, transparent 100%),
    radial-gradient(circle 5px at 96px 44%,  rgba(201,169,122,.60) 0%, transparent 100%),
    radial-gradient(circle 7px at 94px 55%,  rgba(201,169,122,.70) 0%, transparent 100%),
    radial-gradient(circle 5px at 97px 66%,  rgba(201,169,122,.50) 0%, transparent 100%),
    radial-gradient(circle 9px at 92px 77%,  rgba(201,169,122,.85) 0%, transparent 100%),
    radial-gradient(circle 5px at 95px 88%,  rgba(201,169,122,.55) 0%, transparent 100%),
    radial-gradient(circle 7px at 96px 98%,  rgba(201,169,122,.70) 0%, transparent 100%);
}
.hero__bokeh--right {
  right: 0;
  background-image:
    radial-gradient(circle 7px at 65px  6%,  rgba(201,169,122,.80) 0%, transparent 100%),
    radial-gradient(circle 5px at 63px 17%,  rgba(201,169,122,.55) 0%, transparent 100%),
    radial-gradient(circle 9px at 67px 29%,  rgba(201,169,122,.75) 0%, transparent 100%),
    radial-gradient(circle 5px at 64px 41%,  rgba(201,169,122,.50) 0%, transparent 100%),
    radial-gradient(circle 7px at 66px 52%,  rgba(201,169,122,.85) 0%, transparent 100%),
    radial-gradient(circle 5px at 63px 63%,  rgba(201,169,122,.60) 0%, transparent 100%),
    radial-gradient(circle 8px at 67px 74%,  rgba(201,169,122,.70) 0%, transparent 100%),
    radial-gradient(circle 5px at 65px 86%,  rgba(201,169,122,.55) 0%, transparent 100%),
    radial-gradient(circle 7px at 64px 97%,  rgba(201,169,122,.80) 0%, transparent 100%),
    radial-gradient(circle 5px at 105px  4%, rgba(201,169,122,.60) 0%, transparent 100%),
    radial-gradient(circle 8px at 107px 15%, rgba(201,169,122,.85) 0%, transparent 100%),
    radial-gradient(circle 5px at 103px 26%, rgba(201,169,122,.55) 0%, transparent 100%),
    radial-gradient(circle 7px at 106px 38%, rgba(201,169,122,.75) 0%, transparent 100%),
    radial-gradient(circle 5px at 104px 49%, rgba(201,169,122,.50) 0%, transparent 100%),
    radial-gradient(circle 9px at 107px 60%, rgba(201,169,122,.80) 0%, transparent 100%),
    radial-gradient(circle 5px at 103px 71%, rgba(201,169,122,.65) 0%, transparent 100%),
    radial-gradient(circle 7px at 105px 82%, rgba(201,169,122,.85) 0%, transparent 100%),
    radial-gradient(circle 5px at 106px 93%, rgba(201,169,122,.55) 0%, transparent 100%),
    radial-gradient(circle 7px at 140px  8%, rgba(201,169,122,.85) 0%, transparent 100%),
    radial-gradient(circle 5px at 142px 20%, rgba(201,169,122,.55) 0%, transparent 100%),
    radial-gradient(circle 9px at 138px 31%, rgba(201,169,122,.70) 0%, transparent 100%),
    radial-gradient(circle 5px at 141px 43%, rgba(201,169,122,.50) 0%, transparent 100%),
    radial-gradient(circle 7px at 139px 54%, rgba(201,169,122,.80) 0%, transparent 100%),
    radial-gradient(circle 5px at 142px 66%, rgba(201,169,122,.60) 0%, transparent 100%),
    radial-gradient(circle 8px at 138px 77%, rgba(201,169,122,.75) 0%, transparent 100%),
    radial-gradient(circle 5px at 140px 88%, rgba(201,169,122,.55) 0%, transparent 100%),
    radial-gradient(circle 7px at 141px 99%, rgba(201,169,122,.80) 0%, transparent 100%);
}

/* ── Media col (right — oval frame) ── */
.hero__media-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__media-frame {
  width: min(300px, 38vw);
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201,169,122,.30),
    0 0 25px rgba(201,169,122,.25),
    0 0 60px rgba(201,169,122,.12),
    0 20px 70px rgba(0,0,0,.55);
}

.hero__media-frame .video-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

.hero__media-frame .video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

.hero__media-frame .video-cover__bg {
  background-position: center 10%;
  background-size: cover;
}

/* ── Video cover / poster (shared) ── */
.video-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
  display: inline-flex;
}

.video-wrapper video {
  max-height: 65vh;
  width: auto;
  max-width: 100%;
  display: block;
}

.video-cover {
  position: absolute;
  inset: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-cover__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform .6s ease;
}
.video-cover:hover .video-cover__bg { transform: scale(1.04); }

.video-cover__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 50% 38%, rgba(0,0,0,.05) 0%, rgba(0,0,0,.35) 100%),
    linear-gradient(to bottom,
      rgba(0,0,0,.40) 0%,
      rgba(0,0,0,.05) 25%,
      rgba(0,0,0,.05) 65%,
      rgba(0,0,0,.70) 100%);
}

.video-cover__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1.1rem .9rem;
}

.video-cover__question {
  font-family: var(--ff-display);
  font-size: clamp(.78rem, 1.8vw, 1rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  text-align: center;
  line-height: 1.45;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
  border-radius: 8px;
  padding: .45rem .6rem;
}

.video-cover__play-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-cover__bottom {
  font-family: var(--ff-body);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
}

.video-cover__eyebrow {
  font-family: var(--ff-body);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.video-cover__title {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
}

.video-cover__title em {
  font-style: italic;
  color: var(--gold);
}

.video-cover__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 0 0 0 rgba(201,169,122,.5);
  animation: pulse-play 2.2s ease-in-out infinite;
  transition: background .2s, transform .2s;
}
.video-cover__play:hover {
  background: var(--gold-dark);
  transform: scale(1.08);
}

@keyframes pulse-play {
  0%   { box-shadow: 0 0 0 0    rgba(201,169,122,.5); }
  60%  { box-shadow: 0 0 0 18px rgba(201,169,122,0); }
  100% { box-shadow: 0 0 0 0    rgba(201,169,122,0); }
}

/* ── Hero inline form ── */
.hero__form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  max-width: 480px;
}

.hero__form .form__group label {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  color: rgba(255,255,255,.60);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.hero__form .form__group input,
.hero__form .form__group select {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: .6rem .9rem;
  font-family: var(--ff-body);
  font-size: .88rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.hero__form .form__group input::placeholder { color: rgba(255,255,255,.35); }

.hero__form .form__group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,.5)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.hero__form .form__group select option { background: #1a1510; color: var(--white); }

.hero__form .form__group input:focus,
.hero__form .form__group select:focus {
  border-color: var(--gold);
  background: rgba(201,169,122,.08);
}

.btn--hero-cta {
  display: inline-block;
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: var(--radius);
  padding: .78rem 1.5rem;
  font-family: var(--ff-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  text-align: center;
  transition: background var(--transition), transform .15s;
  margin-top: .15rem;
}
.btn--hero-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.hero__form-note {
  font-size: .7rem;
  color: rgba(61,43,31,.5);
  text-align: center;
  margin-top: .6rem;
}

/* ── Trust badges ── */
.trust__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.5rem 0 2rem;
}

.trust__badge {
  font-size: .75rem;
  font-weight: 500;
  color: var(--gold-dark);
  background: rgba(201,169,122,.08);
  border: 1px solid rgba(201,169,122,.25);
  border-radius: 99px;
  padding: .35rem .9rem;
  letter-spacing: .03em;
}

.hero__eyebrow {
  font-family: var(--ff-body);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .7rem;
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: .65rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-dark);
}

.hero__subtitle {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--mid);
  margin-bottom: .9rem;
  line-height: 1.65;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}


/* ============================================================
   NUMBERS
   ============================================================ */
.numbers {
  background: var(--dark);
  padding: 4rem 2rem;
}

.numbers__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.numbers__item p {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: .4rem;
}

.numbers__value {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--gold);
}

.numbers__plus {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--gold);
  vertical-align: super;
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.sobre__image-col { position: relative; }

.sobre__image-wrap {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sobre__image-wrap img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  display: block;
}

.sobre__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--dark);
  padding: 1.5rem;
  border-radius: 2px;
  text-align: center;
  box-shadow: var(--shadow);
}

.badge__number {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
}

.badge__text {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.5;
}

.sobre__content { padding-top: 2rem; }

/* ── Seção de vídeo / reel ── */
/* ── Hero objection line ── */
.hero__objection {
  display: block;
  margin-top: .6rem;
  font-weight: 400;
  font-size: .9rem;
  color: var(--gold);
  font-style: italic;
}

/* ── Promessa (copa mãe) ── */
.promessa {
  background: var(--dark);
  padding: 5rem 2rem;
  text-align: center;
}
.promessa__inner {
  max-width: 800px;
  margin: 0 auto;
}
.promessa .section__eyebrow { color: var(--gold); }
.promessa .section__title   { color: var(--white); margin-bottom: 2rem; }
.promessa .section__title em { color: var(--gold); }
.promessa__body p {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.promessa__body strong { color: var(--gold); }
.promessa .btn--primary { margin-top: 1.5rem; }

/* ── Benefícios ── */
.beneficios {
  background: var(--cream);
  padding: 5rem 2rem;
}
.beneficios .section__header { margin-bottom: 3rem; }
.beneficios__list {
  max-width: 780px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.beneficio__item {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}
.beneficio__icon {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: .15rem;
}
.beneficio__item strong {
  display: block;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: .3rem;
}
.beneficio__item p {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.7;
  margin: 0;
}
.beneficios__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Para quem é ── */
.para-quem {
  background: var(--light);
  padding: 5rem 2rem;
}
.para-quem .section__header { margin-bottom: 3rem; }
.para-quem__grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.para-quem__col {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(61,43,31,.06);
}
.para-quem__col h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.para-quem__col--sim h3 span { color: var(--gold-dark); font-size: 1.1rem; }
.para-quem__col--nao h3 span { color: #C0392B; font-size: 1.1rem; }
.para-quem__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.para-quem__col--sim li::before { content: '✓ '; color: var(--gold-dark); font-weight: 700; }
.para-quem__col--nao li::before { content: '✗ '; color: #C0392B; font-weight: 700; }
.para-quem__col li { font-size: .88rem; color: var(--mid); line-height: 1.5; }
.para-quem__cta { text-align: center; margin-top: 2.5rem; }

/* ── Sobre — credenciais ── */
.sobre__credenciais {
  display: flex;
  gap: 1.5rem;
  margin: 1.8rem 0 2rem;
  flex-wrap: wrap;
}
.credencial {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.credencial strong {
  font-size: 1.6rem;
  font-family: var(--ff-display);
  color: var(--gold-dark);
  line-height: 1;
}
.credencial span {
  font-size: .75rem;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── KEEP existing video-reel below ── */
.video-reel {
  background: var(--cream);
  padding: 5rem 1.5rem;
}

.video-reel__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.video-reel__embed {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.video-reel__embed video {
  max-width: 360px;
  max-height: 65vh;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(61,43,31,.12);
  display: block;
}

.video-reel__cta {
  margin-top: 2rem;
  text-align: center;
}

.sobre__content p {
  margin-bottom: 1.2rem;
  color: var(--mid);
  font-size: .95rem;
}

.sobre__content strong { color: var(--dark); }

.sobre__list {
  list-style: none;
  margin: 1.8rem 0 2.2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.sobre__list li {
  font-size: .88rem;
  letter-spacing: .03em;
  padding-left: 1.4rem;
  position: relative;
  color: var(--dark);
}

.sobre__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .65rem;
  top: .2rem;
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.servicos {
  background: var(--dark);
  padding: 7rem 2rem;
}

.servicos .section__eyebrow { color: var(--gold); }
.servicos .section__title { color: var(--white); }
.servicos .section__title em { color: var(--gold); }

.servicos__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.servico__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,122,.2);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
}

.servico__card:hover {
  background: rgba(201,169,122,.08);
  border-color: rgba(201,169,122,.5);
  transform: translateY(-4px);
}

.servico__card--featured {
  background: rgba(201,169,122,.1);
  border-color: rgba(201,169,122,.4);
}

.servico__icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.servico__card h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .8rem;
}

.servico__card p {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
}

.servico__tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: .25rem .7rem;
  border-radius: 99px;
}

.servicos__note {
  max-width: 1200px;
  margin: 2rem auto 0;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  font-style: italic;
}
.servicos__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   PROCESSO
   ============================================================ */
.processo {
  padding: 7rem 2rem;
  background: var(--light);
}

.processo__steps {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.processo__step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.step__number {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .8rem;
}

.processo__step h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: .6rem;
  color: var(--dark);
}

.processo__step p {
  font-size: .85rem;
  color: var(--mid);
  line-height: 1.75;
}

.processo__connector {
  width: 60px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 1.8rem;
  opacity: .5;
}

/* ============================================================
   PORTFÓLIO
   ============================================================ */
.portfolio {
  padding: 7rem 2rem;
}

.section__subtitle {
  margin-top: .8rem;
  color: var(--mid);
  font-size: .95rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.portfolio__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}

@media (max-width: 900px) {
  .portfolio__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
}

.portfolio__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.portfolio__item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .6s ease;
}

.portfolio__item:hover img { transform: scale(1.05); }

.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,43,31,.55);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio__item:hover .portfolio__overlay { opacity: 1; }

.portfolio__overlay span {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: .03em;
}


.portfolio__cta {
  text-align: center;
  margin-top: 3.5rem;
}

.portfolio__cta p {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--mid);
  margin-bottom: 1.2rem;
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais {
  background: var(--cream);
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
  padding: 7rem 2rem;
}

.diferenciais__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.diferencial__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.diferencial__item h4 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: .6rem;
  color: var(--dark);
}

.diferencial__item p {
  font-size: .85rem;
  color: var(--mid);
  line-height: 1.75;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos {
  background: var(--dark);
  padding: 7rem 2rem;
}

.depoimentos .section__eyebrow { color: var(--gold); }
.depoimentos .section__title { color: var(--white); }
.depoimentos .section__title em { color: var(--gold); }

.depoimentos__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.depoimento__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,169,122,.15);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.depoimento__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: .1em;
  margin-bottom: 1.2rem;
}

.depoimento__text {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  margin-bottom: 1.8rem;
}

.depoimento__author {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.author__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.depoimento__author strong {
  display: block;
  font-weight: 500;
  font-size: .9rem;
  color: var(--white);
}

.depoimento__author span {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .05em;
}

/* ── Google Rating summary ── */
.google__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: 1rem;
  color: var(--white);
  font-size: .9rem;
}

.google__rating .rating__score {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.google__rating .rating__stars { color: var(--gold); letter-spacing: .05em; }

.google__rating .rating__total { color: rgba(255,255,255,.5); font-size: .8rem; }

.reviews__loading {
  color: rgba(255,255,255,.4);
  text-align: center;
  padding: 2rem;
  font-style: italic;
  font-size: .9rem;
  grid-column: 1 / -1;
}

/* author photo from Google */
.author__photo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.depoimentos__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.depoimentos .btn--outline {
  border-color: rgba(201,169,122,.5);
  color: var(--gold);
}

.depoimentos .btn--outline:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ============================================================
   CONTATO
   ============================================================ */
.contato {
  padding: 7rem 2rem;
  background: var(--cream);
}

.contato__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contato__content p {
  color: var(--mid);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contato__info {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.info__item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .88rem;
  color: var(--mid);
  line-height: 1.6;
}

.contato__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contato__form h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.8rem;
  color: var(--dark);
}

.form__group {
  margin-bottom: 1.2rem;
}

.form__group label {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: .4rem;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--light);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--gold);
}

.form__note {
  font-size: .75rem;
  color: var(--mid);
  text-align: center;
  margin-top: .8rem;
  font-style: italic;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #241810;
  padding: 4rem 2rem 1.5rem;
  color: rgba(255,255,255,.7);
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: .5rem;
}

.footer__brand p {
  margin-top: 1rem;
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
}

.footer__links h5,
.footer__social h5 {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__links,
.footer__social {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer__links a,
.footer__social a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.footer__links a:hover,
.footer__social a:hover { color: var(--gold); }

.footer__social-icons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: .25rem;
}

.footer__social-icons a {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.footer__social-icons a:hover { color: var(--gold); }

.footer__bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .75rem;
  color: rgba(255,255,255,.3);
}

.footer__bottom a { transition: color var(--transition); }
.footer__bottom a:hover { color: var(--gold); }
.footer__legal { display: flex; align-items: center; gap: .5rem; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { padding: 5rem 2rem 1.5rem; gap: 2rem; }
  .hero__media-frame { width: min(260px, 36vw); }

  .sobre { grid-template-columns: 1fr; gap: 3rem; }
  .sobre__image-wrap img { height: 420px; }
  .sobre__badge { right: 1rem; }

  .servicos__grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .depoimentos__grid { grid-template-columns: 1fr; max-width: 600px; }
  .contato__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 5.5rem 1.5rem 1.5rem;
    gap: 1rem;
  }
  .hero__media-col { order: -1; }
  .hero__media-frame { width: min(200px, 52vw); }
  .hero__bokeh { width: 70px; }
  .hero__title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .hero__subtitle { font-size: .82rem; }

  .numbers__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

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

  .processo__steps { flex-direction: column; align-items: center; }
  .processo__connector { width: 1px; height: 40px; margin: 0; }

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

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

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .portfolio__grid { grid-template-columns: 1fr; }
  .diferenciais__grid { grid-template-columns: 1fr; }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__title { font-size: clamp(1.5rem, 7vw, 1.9rem); }
  .hero__form-note { font-size: .62rem; }
}

/* ============================================================
   FUNIL MULTI-ETAPA
   ============================================================ */
.funnel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(5px);
}
.funnel-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.funnel-modal {
  position: relative;
  background: #18130E;
  border: 1px solid rgba(201,169,122,.22);
  border-radius: 18px;
  width: min(480px, 94vw);
  padding: 2.2rem 2rem;
  box-shadow: 0 24px 80px rgba(0,0,0,.65);
  overflow: hidden;
}

.funnel__close {
  position: absolute;
  top: .9rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,.35);
  font-size: 1.1rem;
  cursor: pointer;
  padding: .3rem .5rem;
  transition: color .2s;
  line-height: 1;
}
.funnel__close:hover { color: var(--white); }

.funnel__progress-wrap {
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 99px;
  margin-bottom: 1.8rem;
  overflow: hidden;
}
.funnel__progress-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 99px;
  width: 0%;
  transition: width .5s ease;
}

/* Garante que [hidden] não seja sobrescrito pelo display:flex */
.funnel__step[hidden] { display: none !important; }

.funnel__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .9rem;
  animation: fStepIn .35s ease both;
}
@keyframes fStepIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.funnel__icon {
  font-size: 2rem;
  line-height: 1;
}

.funnel__title {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.22;
}
.funnel__title em { font-style: italic; color: var(--gold); }

.funnel__copy {
  font-size: .92rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 360px;
}
.funnel__copy strong { color: var(--white); }

.funnel__input {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: .88rem 1rem;
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--white);
  outline: none;
  transition: border-color .25s, background .25s;
  text-align: center;
}
.funnel__input:focus {
  border-color: var(--gold);
  background: rgba(201,169,122,.07);
}
.funnel__input::placeholder { color: rgba(255,255,255,.32); }

select.funnel__input { appearance: none; -webkit-appearance: none; }
select.funnel__input option { background: #18130E; }

.funnel__textarea {
  resize: vertical;
  min-height: 88px;
  text-align: left;
  font-size: .85rem;
  line-height: 1.6;
}

.funnel__btn {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: var(--radius);
  padding: 1rem;
  font-family: var(--ff-body);
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.funnel__btn:hover { background: var(--gold-dark); transform: translateY(-2px); }
.funnel__btn--submit { background: var(--gold); }

.funnel__hint {
  font-size: .7rem;
  color: rgba(255,255,255,.38);
  margin-top: -.3rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 7rem 2rem;
  background: var(--light);
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,169,122,.15);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
  transition: background var(--transition);
}

.faq__question:hover { background: rgba(201,169,122,.06); }
.faq__question[aria-expanded="true"] { color: var(--gold-dark); }

.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}

.faq__answer.open {
  max-height: 300px;
}

.faq__answer p {
  padding: 0 1.6rem 1.4rem;
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.8;
  border-top: 1px solid rgba(201,169,122,.1);
  padding-top: 1rem;
}

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: .85rem 1.4rem .85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--transition);
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 500;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}

.whatsapp-float__label { white-space: nowrap; }

@media (max-width: 480px) {
  .whatsapp-float { bottom: 1.2rem; right: 1.2rem; padding: .85rem; border-radius: 50%; }
  .whatsapp-float__label { display: none; }
  .hero__cta-group { align-items: stretch; }
}
