/* ==========================================================================
   ROSÂNGELA SILVEIRA — PSICÓLOGA CLÍNICA
   Design tokens
   ========================================================================== */
:root {
  /* Color */
  --sand: #f2e4d8; /* base background */
  --sand-deep: #e8d3bf; /* alt section background */
  --cream-card: #fbf5ec; /* card surface */
  --ink: #34251c; /* primary text */
  --ink-soft: #6b5347; /* secondary text */
  --terracotta: #b15a3a; /* primary accent */
  --terracotta-deep: #8f4429;
  --terracotta-light: #d98a63;
  --gold: #b08d57; /* secondary accent */
  --gold-light: #d6bc8c;
  --sage: #7a8b6f; /* tertiary / calm accent */
  --dark: #241a13; /* dark section background (warm espresso, not pure black) */
  --dark-card: #382920;
  --whatsapp: #25d366;

  /* Type */
  --font-display: "Fraunces", serif;
  --font-body: "Work Sans", sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 45px -20px rgba(52, 37, 28, 0.28);
  --shadow-lift: 0 30px 60px -24px rgba(52, 37, 28, 0.35);
  --ease-out: cubic-bezier(0.16, 0.84, 0.44, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  position: relative;
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 40;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

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

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 0.9em;
}
.eyebrow--light {
  color: var(--gold-light);
}

.h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-variation-settings: "opsz" 60;
}
.h2--light {
  color: var(--cream-card);
}

.section__head {
  max-width: 640px;
  margin-bottom: 3.2rem;
}
.section__head--light {
  max-width: 640px;
  margin: 0 auto 3.2rem;
  text-align: center;
}
.section__lead {
  font-size: 1.05rem;
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Focus visibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  z-index: 2000;
  transition: top 0.2s var(--ease-out);
  font-size: 0.9rem;
  font-weight: 600;
}
.skip-link:focus {
  top: 16px;
}

/* Grain texture overlay — adds tactile premium depth */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Scroll reveal system
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
  transition-delay: var(--r-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal--left {
  transform: translate(-32px, 12px);
}
.reveal--left.is-visible {
  transform: none;
}
.reveal--right {
  transform: translate(32px, 12px);
}
.reveal--right.is-visible {
  transform: none;
}

.stagger .reveal {
  transition-delay: calc(var(--i, 0) * 80ms);
}

/* ==========================================================================
   Progress bar
   ========================================================================== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  z-index: 1200;
  transition: width 0.1s ease-out;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.85em 1.6em;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    background 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(
    135deg,
    var(--terracotta) 0%,
    var(--terracotta-deep) 100%
  );
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(177, 90, 58, 0.55);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px -14px rgba(177, 90, 58, 0.65);
}
.btn--primary:active {
  transform: translateY(-1px);
}
.btn--light {
  background: #fff;
  color: var(--terracotta-deep);
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.35);
}
.btn--light:hover {
  background: var(--sand);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(52, 37, 28, 0.22);
}
.btn--ghost:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
}
.btn--ghost .btn__icon {
  transition: transform 0.35s var(--ease-out);
}
.btn--ghost:hover .btn__icon {
  transform: translateY(3px);
}

.btn--lg {
  padding: 1.05em 2em;
  font-size: 1.05rem;
}
.btn--sm {
  padding: 0.6em 1.3em;
  font-size: 0.9rem;
}

.btn--magnetic {
  will-change: transform;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(242, 228, 216, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(52, 37, 28, 0.08);
  transition:
    box-shadow 0.3s ease,
    padding 0.3s ease;
}
.header.is-scrolled {
  box-shadow: 0 8px 30px -18px rgba(52, 37, 28, 0.45);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.header__logo img {
  width: 42px;
  height: 42px;
  transition: transform 0.4s var(--ease-out);
}
.header__logo:hover img {
  transform: rotate(-8deg);
}

.nav {
  display: flex;
  gap: 30px;
  margin: 0 auto;
}
.nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.nav a span {
  position: relative;
  display: inline-block;
}
.nav a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav a:hover {
  color: var(--terracotta);
}
.nav a:hover span::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__cta {
  flex-shrink: 0;
}

.nav__cta {
  display: none;
}

.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(36, 26, 19, 0.35);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}
.nav-scrim.is-visible {
  opacity: 1;
  pointer-events: auto;
}

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

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 76px 0 0;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.hero__glow--1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(177, 90, 58, 0.22), transparent 70%);
  top: -180px;
  right: -120px;
}
.hero__glow--2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.2), transparent 70%);
  bottom: -160px;
  left: -140px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 56px;
  position: relative;
  z-index: 1;
}
.hero__title {
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  line-height: 1.16;
  font-variation-settings: "opsz" 90;
}
.squiggle-wrap {
  position: relative;
  color: var(--terracotta-deep);
  display: inline-block;
}
.squiggle {
  position: absolute;
  left: 0;
  bottom: -0.12em;
  width: 100%;
  height: 0.3em;
  overflow: visible;
}
.squiggle path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  transition: stroke-dashoffset 1.1s var(--ease-out) 0.5s;
}
.reveal.is-visible .squiggle path {
  stroke-dashoffset: 0;
}

.hero__subtitle {
  font-size: 1.12rem;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 1.6em 0 1.9em;
}
.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__trust-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--terracotta-deep);
  width: fit-content;
}
.hero__trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  position: relative;
  flex-shrink: 0;
}
.hero__trust-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--sage);
  animation: liveDot 2.2s infinite ease-out;
}
@keyframes liveDot {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
.hero__trust-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.hero__trust-items strong {
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 1.05em;
}
.hero__trust-items .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-soft);
  opacity: 0.5;
}

/* Signature element: the breathing motif */
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.breathe {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-out);
}
.breathe__ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--terracotta);
  opacity: 0.35;
  animation: breathe 6s ease-in-out infinite;
}
.breathe__ring--1 {
  width: 100%;
  height: 100%;
  animation-delay: 0s;
  border-color: var(--terracotta);
}
.breathe__ring--2 {
  width: 74%;
  height: 74%;
  animation-delay: 0.6s;
  border-color: var(--gold);
}
.breathe__ring--3 {
  width: 48%;
  height: 48%;
  animation-delay: 1.2s;
  border-color: var(--sage);
}
.breathe__core {
  width: 26%;
  height: 26%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  animation: breatheCore 6s ease-in-out infinite;
  box-shadow: 0 0 70px rgba(177, 90, 58, 0.4);
}
@keyframes breathe {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.25;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.55;
  }
}
@keyframes breatheCore {
  0%,
  100% {
    transform: scale(0.94);
  }
  50% {
    transform: scale(1.08);
  }
}
.breathe__label {
  margin-top: 30px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.hero__wave {
  display: block;
  width: 100%;
  height: 70px;
  position: relative;
  z-index: 1;
}
.hero__wave path {
  fill: var(--sand-deep);
  opacity: 0.55;
}

/* ==========================================================================
   Section spacing
   ========================================================================== */
.section {
  padding: 100px 0;
  position: relative;
}
.section--alt {
  background: var(--sand-deep);
}
.section--dark {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section--dark .eyebrow {
  color: var(--gold-light);
}
.hero__glow--dark {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 90, 58, 0.18), transparent 70%);
  filter: blur(80px);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

/* ==========================================================================
   About / Quem sou eu
   ========================================================================== */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.about__media {
  position: relative;
  padding: 10px 30px 30px 0;
}
.about__frame-back {
  position: absolute;
  top: 24px;
  left: 24px;
  right: -6px;
  bottom: 6px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.about__frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 6px solid var(--cream-card);
  transform: rotate(-2deg);
  transition: transform 0.5s var(--ease-out);
}
.about__media:hover .about__frame {
  transform: rotate(0deg);
}
.about__frame img {
  width: 100%;
  height: auto;
}
.about__badge {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    var(--terracotta),
    var(--terracotta-deep)
  );
  color: #fff;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transform: rotate(3deg);
}
.about__badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}
.about__badge-text {
  font-size: 0.75rem;
  line-height: 1.3;
}

.about__role {
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 1em;
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 1.6em 0 0;
  display: grid;
  gap: 15px;
}
.timeline li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--ink);
  transition: transform 0.3s var(--ease-out);
}
.timeline li:hover {
  transform: translateX(6px);
}
.timeline i {
  color: var(--terracotta);
  width: 20px;
  text-align: center;
}

/* ==========================================================================
   Grids / Cards
   ========================================================================== */
.grid {
  display: grid;
  gap: 24px;
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--cream-card);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out);
  border: 1px solid rgba(52, 37, 28, 0.06);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(177, 90, 58, 0.25);
}
.card__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(177, 90, 58, 0.12),
    rgba(176, 141, 87, 0.16)
  );
  margin-bottom: 1em;
  transition:
    transform 0.4s var(--ease-out),
    background 0.4s var(--ease-out);
}
.card:hover .card__icon-wrap {
  transform: rotate(-8deg) scale(1.08);
  background: linear-gradient(
    135deg,
    rgba(177, 90, 58, 0.2),
    rgba(176, 141, 87, 0.26)
  );
}
.card__icon {
  font-size: 1.35rem;
  color: var(--terracotta);
}
.card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.4em;
}
.card p {
  font-size: 0.92rem;
  margin: 0;
}

.benefit {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.benefit__icon {
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 0.5em;
  transition: transform 0.4s var(--ease-out);
}
.benefit:hover .benefit__icon {
  transform: translateY(-4px) scale(1.05);
}
.benefit h3 {
  font-size: 1.12rem;
  margin-bottom: 0.2em;
}
.benefit p {
  font-size: 0.94rem;
}

/* ==========================================================================
   Stats + Testimonials (dark section)
   ========================================================================== */
.stats {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 5.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  background: var(--dark-card);
  border: 1px solid rgba(251, 245, 236, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.6rem 2rem;
}
.stat {
  text-align: center;
  flex: 1;
  min-width: 160px;
  padding: 0 1.2rem;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(251, 245, 236, 0.1);
}
.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--gold-light);
  line-height: 1;
  font-variation-settings: "opsz" 90;
}
.stat__label {
  display: block;
  margin-top: 12px;
  color: rgba(251, 245, 236, 0.68);
  font-size: 0.92rem;
}

.testimonial {
  position: relative;
  background: var(--dark-card);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  color: rgba(251, 245, 236, 0.85);
  border: 1px solid rgba(251, 245, 236, 0.06);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out);
}
.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(176, 141, 87, 0.35);
}
.testimonial::after {
  content: "\201D";
  position: absolute;
  top: -30px;
  right: 6px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(251, 245, 236, 0.04);
  line-height: 1;
}
.testimonial__mark {
  color: var(--terracotta-light);
  font-size: 1.3rem;
  margin-bottom: 0.6em;
  position: relative;
}
.testimonial p {
  color: rgba(251, 245, 236, 0.85);
  font-style: italic;
  font-size: 0.95rem;
  position: relative;
}
.testimonial__author {
  display: block;
  margin-top: 1em;
  font-weight: 600;
  color: var(--gold-light);
  font-size: 0.88rem;
  position: relative;
}

/* ==========================================================================
   Marquee de depoimentos (Google Reviews)
   ========================================================================== */
.mq-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: -2.8rem auto 2.6rem;
  color: rgba(251, 245, 236, 0.75);
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
}
.mq-rating__stars {
  color: var(--gold-light);
  letter-spacing: 2px;
  font-size: 0.85rem;
}
.mq-rating__text strong {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.marquee {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 1rem;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}
.marquee__row {
  overflow: hidden;
  width: 100%;
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: mq-scroll var(--mq-duration, 60s) linear infinite;
}
.marquee__track--reverse {
  animation-direction: reverse;
}
.marquee__row:hover .marquee__track {
  animation-play-state: paused;
}
@keyframes mq-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.mq-card {
  flex: 0 0 auto;
  width: min(340px, 82vw);
  background: var(--dark-card);
  border: 1px solid rgba(251, 245, 236, 0.06);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition:
    transform 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out);
}
.mq-card:hover {
  transform: translateY(-4px);
  border-color: rgba(176, 141, 87, 0.35);
}
.mq-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.mq-card__avatar {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--av-bg, var(--terracotta));
  color: var(--cream-card);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.mq-card__who {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}
.mq-card__name {
  color: rgba(251, 245, 236, 0.92);
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 190px;
}
.mq-card__stars {
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 1px;
}
.mq-card__google {
  margin-left: auto;
  color: rgba(251, 245, 236, 0.28);
  font-size: 0.95rem;
}
.mq-card__text {
  color: rgba(251, 245, 236, 0.82);
  font-size: 0.9rem;
  line-height: 1.55;
}

.mq-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.8rem;
}
.btn--ghost-dark {
  border-color: rgba(251, 245, 236, 0.3);
  color: var(--cream-card);
}
.btn--ghost-dark:hover {
  border-color: var(--gold-light);
  background: rgba(251, 245, 236, 0.06);
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
  .marquee__row {
    overflow-x: auto;
    scrollbar-width: thin;
  }
}
@media (max-width: 640px) {
  .mq-rating {
    flex-direction: column;
    gap: 4px;
    margin-top: -1.5rem;
  }
}

/* ==========================================================================
   Objections
   ========================================================================== */
.objections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.objection {
  background: var(--cream-card);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 30px;
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}
.objection:hover {
  transform: translateX(6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
}
.objection h3 {
  font-size: 1.02rem;
  font-family: var(--font-body);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5em;
}
.objection h3 i {
  color: var(--terracotta);
}
.objection p {
  font-size: 0.94rem;
  margin: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 780px;
}
.faq__item {
  background: var(--cream-card);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(52, 37, 28, 0.06);
  transition: border-color 0.3s ease;
}
.faq__item.is-open {
  border-color: rgba(177, 90, 58, 0.3);
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  text-align: left;
  gap: 16px;
}
.faq__question i {
  transition: transform 0.35s var(--ease-out);
  color: var(--terracotta);
  flex-shrink: 0;
}
.faq__item.is-open .faq__question i {
  transform: rotate(180deg);
}

/* grid-rows trick: reliable, no fixed max-height guessing */
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-soft);
}
.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}
.faq__answer-inner {
  overflow: hidden;
  min-height: 0;
}
.faq__answer-inner p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 0.94rem;
}

#duvidas .section__head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#duvidas .faq {
  margin: 0 auto;
}

/* ==========================================================================
   Location
   ========================================================================== */
.location-block {
  margin-bottom: 56px;
}
.location-block:last-of-type {
  margin-bottom: 40px;
}
.location {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: stretch;
}
.location--reverse {
  grid-template-columns: 1.1fr 0.9fr;
}
.location--reverse .location__info {
  order: 2;
}
.location--reverse .location__map {
  order: 1;
}
.location__city-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(177, 90, 58, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.location__online {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.location__online i {
  color: var(--terracotta);
}
.location__list {
  list-style: none;
  padding: 0;
  margin: 1.4em 0 1.8em;
  display: grid;
  gap: 12px;
}
.location__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
}
.location__list i {
  color: var(--terracotta);
  width: 20px;
  text-align: center;
}
.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--cream-card);
}

/* ==========================================================================
   CTA Final
   ========================================================================== */
.cta-final {
  background: linear-gradient(
    135deg,
    var(--terracotta) 0%,
    var(--terracotta-deep) 100%
  );
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.cta-final__ring {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  top: -260px;
  right: -180px;
}
.cta-final__ring--2 {
  width: 340px;
  height: 340px;
  top: auto;
  right: auto;
  bottom: -180px;
  left: -120px;
}
.cta-final__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-final__title {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  font-variation-settings: "opsz" 70;
}
.cta-final__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 1.9em;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--dark);
  color: rgba(251, 245, 236, 0.75);
  padding: 76px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__brand img {
  width: 46px;
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 0.92rem;
  color: rgba(251, 245, 236, 0.6);
}
.footer__crp {
  font-size: 0.8rem;
  color: rgba(251, 245, 236, 0.45);
}
.footer__col h4 {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2em;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.92rem;
}
.footer__col a {
  transition:
    color 0.25s ease,
    transform 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}
.footer__col a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}
.footer__col i {
  width: 18px;
  color: var(--gold-light);
}
.footer__col span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__bottom {
  border-top: 1px solid rgba(251, 245, 236, 0.1);
  padding: 22px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(251, 245, 236, 0.5);
}
.footer__bottom-inner p {
  margin: 0;
}
.footer__bottom-inner a {
  color: var(--gold-light);
  font-weight: 600;
}

/* ==========================================================================
   WhatsApp Float
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.6);
  z-index: 900;
  transition: transform 0.3s var(--ease-out);
}
.whatsapp-float:hover {
  transform: scale(1.08);
}
.whatsapp-float__ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: pulse-wa 2.4s infinite;
}
@keyframes pulse-wa {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .header__cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sand);
    padding: 22px 24px 30px;
    gap: 20px;
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid rgba(52, 37, 28, 0.08);
  }
  .nav.is-open a {
    font-size: 1.05rem;
  }
  .nav.is-open .nav__cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 8px;
    font-size: 0.95rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__trust {
    align-items: center;
  }
  .hero__visual {
    order: -1;
    margin-bottom: 24px;
  }
  .breathe {
    width: 240px;
    height: 240px;
  }

  .about {
    grid-template-columns: 1fr;
  }
  .about__media {
    max-width: 380px;
    margin: 0 auto;
    padding: 10px 20px 20px 0;
  }

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

  .objections {
    grid-template-columns: 1fr;
  }
  .location {
    grid-template-columns: 1fr;
  }
  .location--reverse .location__info,
  .location--reverse .location__map {
    order: initial;
  }
  .location__map {
    min-height: 300px;
  }
  .location-block {
    margin-bottom: 44px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .header__logo span {
    font-size: 0.92rem;
  }
  .section {
    padding: 68px 0;
  }
  .grid--4,
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .stats {
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  .stat {
    padding: 26px 20px;
  }
  .stat + .stat {
    border-top: 1px solid rgba(251, 245, 236, 0.08);
  }
  .stat + .stat::before {
    display: none;
  }
  .cta-final {
    padding: 76px 0;
  }
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 18px;
    right: 18px;
    font-size: 1.5rem;
  }
  .about__badge {
    padding: 14px 18px;
  }
  .about__badge-number {
    font-size: 1.7rem;
  }

  .hero__actions .btn {
    white-space: normal;
    text-align: center;
    flex: 1 1 auto;
    max-width: 100%;
  }
}
