/* ==========================================================================
   Maria Helena da Costa — Sexóloga e Psicóloga Clínica
   Desenvolvido por GNR Tech — thegnrtech.com.br
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Work+Sans:wght@300;400;500;600;700&family=Caveat:wght@500;600&display=swap");

:root {
  --teal-deep: #173c36;
  --teal-deep-2: #0f2b27;
  --teal-mid: #2e6b5c;
  --teal-soft: #dce7e1;
  --cream: #f4eee1;
  --cream-soft: #e9e0cc;
  --ink: #1b1917;
  --ink-soft: #4a453d;
  --wine: #7a2a2d;
  --wine-light: #9c3e3c;
  --white: #ffffff;
  --whatsapp: #25d366;

  --font-display: "Fraunces", serif;
  --font-body: "Work Sans", sans-serif;
  --font-script: "Caveat", cursive;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --container: 1180px;
  --shadow-soft: 0 20px 50px -25px rgba(15, 43, 39, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

section {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--wine);
  display: inline-block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-bottom: 16px;
}
h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.script {
  font-family: var(--font-script);
  font-weight: 600;
  color: var(--wine);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  white-space: nowrap;
}

.btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1.05em;
  color: inherit;
}

.btn-primary {
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 14px 30px -14px rgba(122, 42, 45, 0.65);
}
.btn-primary:hover {
  background: var(--wine-light);
  transform: translateY(-2px);
}
.btn-primary:focus-visible {
  outline: 3px solid var(--teal-mid);
  outline-offset: 3px;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid currentColor;
  color: var(--cream);
}
.btn-outline:hover {
  background: rgba(244, 238, 225, 0.1);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--teal-soft);
  color: var(--teal-deep);
}
.btn-ghost:hover {
  background: #cfe0d8;
}

.btn-sm {
  padding: 11px 22px;
  font-size: 0.88rem;
}

/* ---------- Scroll progress ---------- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--wine), var(--teal-mid));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 16px 0;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(244, 238, 225, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -20px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  transition: color 0.35s ease;
}

.site-header.is-scrolled .brand {
  color: var(--teal-deep);
}

.brand img {
  height: 42px;
  width: 42px;
}

.brand-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
}
.brand-text span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream);
  position: relative;
  padding: 4px 0;
  transition: color 0.35s ease;
}

.site-header.is-scrolled .nav-links a {
  color: var(--ink);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--wine);
  transition: width 0.25s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease;
}
.site-header.is-scrolled .menu-toggle span {
  background: var(--ink);
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(46, 107, 92, 0.55),
      transparent 55%
    ),
    linear-gradient(160deg, var(--teal-deep) 0%, var(--teal-deep-2) 100%);
  color: var(--cream);
  padding: 170px 0 120px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(244, 238, 225, 0.05) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(244, 238, 225, 0.1);
  border: 1px solid rgba(244, 238, 225, 0.25);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero h1 {
  color: var(--cream);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 500;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: #e6b9a6;
}

.hero p.lead {
  font-size: 1.15rem;
  color: rgba(244, 238, 225, 0.82);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 38px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.85rem;
  color: rgba(244, 238, 225, 0.75);
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust i {
  color: #e6b9a6;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.blob-frame {
  position: relative;
  width: 100%;
  max-width: 390px;
  aspect-ratio: 4/5;
  border-radius: 48% 52% 58% 42% / 46% 42% 58% 54%;
  background: linear-gradient(145deg, var(--teal-mid), var(--teal-deep-2));
  padding: 8px;
  box-shadow: var(--shadow-soft);
  animation: blob-float 9s ease-in-out infinite;
}

.blob-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 48% 52% 58% 42% / 46% 42% 58% 54%;
}

@keyframes blob-float {
  0%,
  100% {
    border-radius: 48% 52% 58% 42% / 46% 42% 58% 54%;
  }
  50% {
    border-radius: 58% 42% 46% 54% / 54% 58% 42% 46%;
  }
}

.hero-badge {
  position: absolute;
  bottom: -14px;
  left: -10px;
  background: var(--cream);
  color: var(--ink);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
}
.hero-badge i {
  font-size: 1.4rem;
  color: var(--wine);
}
.hero-badge strong {
  display: block;
  font-size: 0.95rem;
}
.hero-badge span {
  font-size: 0.76rem;
  color: var(--ink-soft);
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 238, 225, 0.6);
}
.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: rgba(244, 238, 225, 0.4);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cream);
  animation: scroll-cue-move 1.8s ease-in-out infinite;
}
@keyframes scroll-cue-move {
  0% {
    top: -100%;
  }
  60% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}

/* ---------- Wave divider ---------- */
.wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  margin-bottom: -2px;
}
.wave-divider svg {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: top;
  transform: scale(1.01);
}

/* ---------- Statement band ---------- */
.statement {
  background: var(--teal-deep);
  color: var(--cream);
  padding: 90px 0;
  text-align: center;
  position: relative;
}
.statement blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.35;
}
.statement cite {
  display: block;
  margin-top: 24px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e6b9a6;
}

/* ---------- Sobre ---------- */
.sobre {
  padding: 120px 0 100px;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.sobre-photo {
  position: relative;
}
.sobre-photo .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3/4;
}
.sobre-photo .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-stamp {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--wine);
  color: var(--cream);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.62rem;
  line-height: 1.25;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-soft);
  animation: spin-slow 22s linear infinite;
}
@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.credential-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}
.credential-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.96rem;
}
.credential-list i {
  color: var(--wine);
  margin-top: 4px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.pill {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---------- Especialidades ---------- */
.especialidades {
  padding: 100px 0;
  background: var(--cream-soft);
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.spec-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.spec-card:hover {
  transform: translateY(-6px);
}
.spec-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--teal-deep);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 22px;
}
.spec-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.spec-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* ---------- Benefícios ---------- */
.beneficios {
  padding: 110px 0;
}
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}
.beneficio-item {
  display: flex;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(27, 25, 23, 0.1);
}
.beneficio-item .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--wine);
  min-width: 44px;
}
.beneficio-item h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.beneficio-item p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* ---------- Atendimento (dual CTA) ---------- */
.atendimento {
  padding: 100px 0;
  background: var(--teal-deep);
  color: var(--cream);
}
.atendimento .section-head p {
  color: rgba(244, 238, 225, 0.78);
}
.atendimento .section-head .eyebrow {
  color: #e6b9a6;
}
.atendimento .section-head .eyebrow::before {
  background: #e6b9a6;
}

.atendimento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.atendimento-card {
  background: rgba(244, 238, 225, 0.06);
  border: 1px solid rgba(244, 238, 225, 0.18);
  border-radius: var(--radius-md);
  padding: 36px 30px;
}
.atendimento-card > i {
  font-size: 1.6rem;
  color: #e6b9a6;
  margin-bottom: 18px;
  display: block;
}
.atendimento-card h3 {
  color: var(--cream);
  margin-bottom: 10px;
}
.atendimento-card p {
  color: rgba(244, 238, 225, 0.78);
  font-size: 0.94rem;
  margin-bottom: 22px;
}

/* ---------- Prova / Credibilidade ---------- */
.prova {
  padding: 110px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 70px;
}
.stat {
  text-align: center;
  padding: 30px 20px;
  background: var(--cream-soft);
  border-radius: var(--radius-md);
}
.stat strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  display: block;
  color: var(--teal-deep);
}
.stat span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Marquee de depoimentos ---------- */
.reviews-marquee {
  position: relative;
  overflow: hidden;
  margin: 0 -8px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 60px,
    #000 calc(100% - 60px),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 60px,
    #000 calc(100% - 60px),
    transparent 100%
  );
}
.reviews-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: reviews-scroll 46s linear infinite;
}
.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}
@keyframes reviews-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
  width: 340px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
}
.review-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  overflow: hidden;
}
.review-meta strong {
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-meta span {
  font-size: 0.74rem;
  color: var(--ink-soft);
}
.review-google {
  margin-left: auto;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  opacity: 0.9;
}
.review-direct {
  margin-left: auto;
  color: var(--wine);
  font-size: 0.95rem;
  opacity: 0.85;
}
.review-rating {
  margin-bottom: 12px;
}
.review-stars {
  color: var(--wine);
  font-size: 0.78rem;
}
.review-text {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- Objeções ---------- */
.objecoes {
  padding: 100px 0;
  background: var(--cream-soft);
}
.obj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.obj-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border-left: 3px solid var(--wine);
}
.obj-card .obj-q {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.obj-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ---------- FAQ ---------- */
.faq {
  padding: 110px 0;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid rgba(27, 25, 23, 0.12);
}
.faq-item {
  border-bottom: 1px solid rgba(27, 25, 23, 0.12);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.faq-question i {
  color: var(--wine);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding: 0 4px 24px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  max-width: 680px;
}

/* ---------- Localização ---------- */
.localizacao {
  padding: 100px 0;
  background: var(--cream-soft);
}
.loc-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}
.loc-info {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.loc-info .item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.loc-info .item i {
  color: var(--wine);
  margin-top: 3px;
}
.loc-info strong {
  display: block;
  font-size: 0.95rem;
}
.loc-info span {
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 340px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

/* ---------- CTA final ---------- */
.cta-final {
  padding: 110px 0;
  background: linear-gradient(160deg, var(--teal-deep), var(--teal-deep-2));
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 22rem;
  color: rgba(244, 238, 225, 0.04);
  line-height: 1;
  pointer-events: none;
}
.cta-final .eyebrow {
  color: #e6b9a6;
  justify-content: center;
}
.cta-final .eyebrow::before {
  background: #e6b9a6;
}
.cta-final h2 {
  color: var(--cream);
  max-width: 720px;
  margin: 18px auto 20px;
}
.cta-final p {
  color: rgba(244, 238, 225, 0.8);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}
.cta-final .actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(244, 238, 225, 0.75);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(244, 238, 225, 0.12);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand img {
  height: 38px;
}
.footer-brand strong {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 0.9rem;
  transition: color 0.25s ease;
}
.footer-col a:hover {
  color: var(--cream);
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(244, 238, 225, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.footer-social a:hover {
  background: rgba(244, 238, 225, 0.12);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.82rem;
}
.footer-bottom a {
  font-weight: 600;
  color: rgba(244, 238, 225, 0.9);
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, 0.65);
  z-index: 800;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: pulse-wa 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes pulse-wa {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

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

/* ---------- Focus visibility ---------- */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--wine);
  outline-offset: 3px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero p.lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
    margin-bottom: 10px;
  }
  .sobre-grid {
    grid-template-columns: 1fr;
  }
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .beneficios-grid {
    grid-template-columns: 1fr;
  }
  .atendimento-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .review-card {
    width: 280px;
  }
  .obj-grid {
    grid-template-columns: 1fr;
  }
  .loc-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--teal-deep);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 950;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    color: var(--cream) !important;
    font-size: 1.1rem;
  }
  .menu-toggle {
    display: flex;
    z-index: 960;
  }
  .header-cta .btn-sm {
    display: none;
  }
  .header-cta {
    gap: 8px;
  }
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 18px;
    right: 18px;
  }
}
