/* =========================================================
   JOSIANI SCHERER — PSICÓLOGA & NEUROPSICÓLOGA
   Design system: "terapêutico-boutique"
   Cream/oliva/dourado + selo Ψ como assinatura visual
========================================================= */

:root {
  --cream: #f6f1e6;
  --cream-2: #fbf8f2;
  --ink: #262f1e;
  --olive: #445536;
  --olive-deep: #303c26;
  --olive-soft: #7c8a5e;
  --gold: #b08a4e;
  --gold-soft: #e6d6af;
  --terracotta: #bd7857;
  --line: rgba(68, 85, 54, 0.14);

  --font-display: "Fraunces", serif;
  --font-script: "Marck Script", cursive;
  --font-body: "Inter", sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 50px -25px rgba(38, 47, 30, 0.35);
  --ease: cubic-bezier(0.22, 0.9, 0.32, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--olive-deep);
  margin: 0;
  font-weight: 600;
}
p {
  margin: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}

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

::selection {
  background: var(--gold-soft);
  color: var(--olive-deep);
}

/* ===== Layout helpers ===== */
.section {
  padding: 110px 0;
  position: relative;
}
.section-container {
  width: min(1180px, 92%);
  margin: 0 auto;
}
.section-header.center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section-lead {
  font-size: 1.08rem;
  color: var(--olive);
  opacity: 0.85;
  margin-top: 16px;
}
.script {
  font-family: var(--font-script);
  color: var(--gold);
  font-weight: 400;
  font-size: 1.08em;
}
.script.light {
  color: var(--gold-soft);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--terracotta);
  margin-bottom: 6px;
}
.eyebrow-light {
  color: var(--gold-soft);
}
.eyebrow-script {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--terracotta);
  display: inline-block;
  margin-bottom: 6px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.7rem;
  margin-bottom: 18px;
}
.section-header.center .section-divider {
  justify-content: center;
}
.about-copy .section-divider,
.approach-copy .section-divider,
.faq-intro .section-divider,
.location-copy .section-divider {
  justify-content: flex-start;
}
.section-divider::before,
.section-divider::after {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--line);
}
.section-divider.light::before,
.section-divider.light::after {
  background: rgba(230, 214, 175, 0.3);
}
.section-divider.light {
  color: var(--gold-soft);
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.18;
}
.section-title.light {
  color: var(--cream-2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.97rem;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-lg {
  padding: 18px 34px;
  font-size: 1.02rem;
}
.btn-primary {
  background: var(--olive);
  color: var(--cream-2);
  box-shadow: 0 14px 30px -12px rgba(68, 85, 54, 0.55);
}
.btn-primary:hover {
  background: var(--olive-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(68, 85, 54, 0.65);
}
.btn-ghost {
  background: transparent;
  border-color: var(--olive);
  color: var(--olive);
}
.btn-ghost:hover {
  background: var(--olive);
  color: var(--cream-2);
  transform: translateY(-2px);
}

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

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(246, 241, 230, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.35s var(--ease);
}
.navbar.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -20px rgba(38, 47, 30, 0.4);
}
.nav-container {
  width: min(1240px, 92%);
  margin: 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-seal {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.4px solid var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-seal .psi {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--olive);
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--olive-deep);
  font-size: 1.08rem;
}
.logo-text small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--olive-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--olive-deep);
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-link:hover::after {
  width: 100%;
}
.nav-cta {
  padding: 12px 22px;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--olive-deep);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Reveal on scroll ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 190px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(
      650px 500px at 88% -10%,
      rgba(230, 214, 175, 0.55),
      transparent 60%
    ),
    var(--cream);
}
.hero-leaf {
  position: absolute;
  opacity: 0.5;
  pointer-events: none;
}
.leaf-a {
  width: 340px;
  height: 340px;
  top: -90px;
  left: -120px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(124, 138, 94, 0.25),
    transparent 65%
  );
  border-radius: 50%;
}
.leaf-b {
  width: 260px;
  height: 260px;
  bottom: -80px;
  right: 6%;
  background: radial-gradient(
    circle at 60% 60%,
    rgba(189, 120, 87, 0.16),
    transparent 65%
  );
  border-radius: 50%;
}
.hero-container {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  line-height: 1.16;
  margin: 6px 0 24px;
  color: var(--olive-deep);
}
.hero-title em {
  font-style: normal;
  color: var(--olive);
  font-weight: 500;
}
.hero-text {
  font-size: 1.08rem;
  color: var(--ink);
  opacity: 0.82;
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  color: var(--olive);
  font-weight: 500;
}
.cred-item i {
  color: var(--gold);
  font-size: 1rem;
}
.cred-divider {
  width: 1px;
  height: 16px;
  background: var(--line);
}

.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-card {
  position: relative;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 52px 40px 42px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  text-align: center;
}
.hero-seal-big {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring-text {
  position: absolute;
  inset: 0;
  animation: spin 26s linear infinite;
}
.ring-text svg text {
  font-size: 8.6px;
  fill: var(--olive-soft);
  letter-spacing: 1px;
  font-family: var(--font-body);
  font-weight: 600;
}
.psi-big {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--olive);
  border: 1.4px solid var(--gold);
  border-radius: 50%;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.hero-card-quote {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--olive-deep);
  font-size: 1.08rem;
  line-height: 1.5;
  margin-bottom: 18px;
}
.hero-card-divider {
  color: var(--terracotta);
  font-size: 0.75rem;
  margin-bottom: 22px;
}
.hero-card-tags {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-card-tags span {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 0.86rem;
  color: var(--olive);
  background: var(--gold-soft);
  border-radius: 100px;
  padding: 9px 16px;
  font-weight: 500;
}
.hero-card-tags i {
  color: var(--terracotta);
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.about-frame {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 420px;
  margin: 0 auto;
}
.about-blob {
  position: absolute;
  inset: 0;
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  background: linear-gradient(160deg, var(--gold-soft), var(--cream-2) 65%);
  border: 1px solid var(--line);
}
.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(160deg, var(--gold-soft), var(--cream-2) 65%);
}
.about-icon-circle {
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 1.4px solid var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  font-size: 1.7rem;
  color: var(--olive);
}
.about-icon-circle {
  top: 8%;
  left: 6%;
}
.about-icon-circle.secondary {
  top: 56%;
  left: 58%;
  width: 78px;
  height: 78px;
  border-color: var(--terracotta);
  color: var(--terracotta);
  font-size: 1.4rem;
}
.about-icon-circle.tertiary {
  top: 66%;
  left: 6%;
  width: 64px;
  height: 64px;
  border-color: var(--gold);
  color: var(--gold);
  font-size: 1.2rem;
}

.about-text {
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 18px;
  max-width: 560px;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}
.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.highlight-item i {
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 3px;
}
.highlight-item strong {
  display: block;
  font-family: var(--font-display);
  color: var(--olive-deep);
  font-size: 1.05rem;
  margin-bottom: 3px;
}
.highlight-item span {
  font-size: 0.92rem;
  color: var(--olive);
  opacity: 0.85;
}

/* ===== SERVICES ===== */
.services {
  background: var(--cream-2);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 40px 30px 34px;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold);
}
.service-seal {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
}
.service-icon {
  font-size: 2.1rem;
  color: var(--olive);
  margin-bottom: 22px;
  display: block;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--olive);
  opacity: 0.85;
}

/* ===== PARCEIROS DE ESPAÇO ===== */
.partners {
  background: var(--cream-2);
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: stretch;
}
.partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 32px 30px;
  overflow: hidden;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}
.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold);
}
.partner-card:hover::before {
  transform: scaleX(1);
}
.partner-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.partner-avatar {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.4px solid var(--gold);
  background: var(--gold-soft);
  color: var(--olive-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.partner-heading {
  min-width: 0;
}
.partner-heading h3 {
  font-size: 1.12rem;
  line-height: 1.25;
  margin-bottom: 3px;
}
.partner-role {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.partner-approach {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--olive-deep);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.partner-approach i {
  color: var(--gold);
  margin-top: 2px;
}
.partner-focus {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0 0 20px;
}
.partner-focus li {
  position: relative;
  padding-left: 17px;
  font-size: 0.87rem;
  line-height: 1.45;
  color: var(--olive);
  opacity: 0.92;
}
.partner-focus li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1.5px;
  background: var(--gold);
}
.partner-audience {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--olive-deep);
  background: var(--gold-soft);
  border-radius: 100px;
  padding: 8px 16px;
  margin-bottom: 22px;
}
.partner-audience i {
  margin-top: 2px;
  color: var(--gold);
}
.partner-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: transparent;
  color: var(--olive-deep);
  border: 1.4px solid var(--olive-deep);
  padding: 12px 18px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.35s var(--ease);
}
.partner-wa-btn i {
  color: #25d366;
  font-size: 1.05rem;
  transition: color 0.35s var(--ease);
}
.partner-wa-btn:hover {
  background: var(--olive-deep);
  color: var(--cream);
  border-color: var(--olive-deep);
  box-shadow: var(--shadow-soft);
}
.partner-wa-btn:hover i {
  color: #4be08a;
}
.partners-note {
  text-align: center;
  max-width: 560px;
  margin: 44px auto 0;
  font-size: 0.88rem;
  color: var(--olive);
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ===== APPROACH ===== */
.approach {
  background: var(--olive-deep);
  overflow: hidden;
}
.approach-leaf {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  top: -160px;
  right: -160px;
  background: radial-gradient(
    circle,
    rgba(176, 138, 78, 0.22),
    transparent 65%
  );
}
.approach-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.approach-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 34px;
}
.approach-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: var(--cream-2);
  opacity: 0.92;
}
.approach-list i {
  color: var(--gold-soft);
  font-size: 1.2rem;
  margin-top: 3px;
}
.approach-card {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 48px 38px;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
}
.approach-quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-soft);
  line-height: 1;
}
.approach-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--olive-deep);
  line-height: 1.5;
  margin: 6px 0 22px;
}
.approach-signature {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--terracotta);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--cream);
  overflow: hidden;
}
.marquee-wrap {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.marquee-track {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.testimonial-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}
.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 14px;
  display: flex;
  gap: 4px;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 18px;
  line-height: 1.6;
}
.testimonial-name {
  font-family: var(--font-display);
  color: var(--olive-deep);
  font-weight: 600;
  font-size: 0.95rem;
}
.testimonials-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--olive-soft);
  margin-top: 30px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.testimonials-note i {
  color: #4285f4;
}
.testimonials-note a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.testimonials-note a:hover {
  color: var(--terracotta);
}

/* ===== FAQ ===== */
.faq {
  background: var(--cream-2);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.faq-intro .section-lead {
  margin-bottom: 30px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.faq-item.active {
  border-color: var(--gold);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--olive-deep);
}
.faq-question i {
  color: var(--gold);
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.active .faq-answer {
  max-height: 260px;
}
.faq-answer p {
  padding: 0 26px 24px;
  font-size: 0.93rem;
  color: var(--olive);
  opacity: 0.85;
  line-height: 1.65;
}

/* ===== LOCATION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0 34px;
}
.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--olive);
}
.info-row i {
  color: var(--gold);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3.4;
  border: 1px solid var(--line);
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: var(--olive-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 130px 0;
}
.cta-leaf {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  bottom: -260px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(176, 138, 78, 0.18),
    transparent 65%
  );
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.psi-cta {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-soft);
  border: 1.4px solid var(--gold-soft);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
}
.cta-title {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  color: var(--cream-2);
  margin-bottom: 20px;
}
.cta-text {
  color: var(--cream-2);
  opacity: 0.82;
  margin-bottom: 38px;
  font-size: 1.05rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: var(--cream-2);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p {
  color: rgba(251, 248, 242, 0.65);
  font-size: 0.9rem;
  margin: 18px 0 22px;
  max-width: 320px;
}
.footer .logo-seal {
  border-color: var(--gold-soft);
}
.footer .logo-seal .psi {
  color: var(--gold-soft);
}
.footer .logo-text {
  color: var(--cream-2);
}
.footer .logo-text small {
  color: rgba(251, 248, 242, 0.55);
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.footer-col h4 {
  color: var(--gold-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a,
.footer-col span {
  font-size: 0.9rem;
  color: rgba(251, 248, 242, 0.72);
  display: flex;
  align-items: center;
  gap: 9px;
  transition: color 0.3s;
}
.footer-col a:hover {
  color: var(--gold-soft);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 26px 0;
  width: min(1180px, 92%);
  margin: 0 auto;
  font-size: 0.8rem;
  color: rgba(251, 248, 242, 0.55);
}
.footer-bottom a {
  color: var(--gold-soft);
  font-weight: 600;
}

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6);
  z-index: 998;
  animation: pulse-wa 2.4s infinite;
}
@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .hero-container,
  .about-grid,
  .approach-grid,
  .faq-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    margin-top: 50px;
  }
  .about-visual {
    order: 2;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--cream-2);
    flex-direction: column;
    align-items: stretch;
    padding: 26px 24px 34px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    opacity: 0;
    transition: all 0.4s var(--ease);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-cta {
    justify-content: center;
  }
  .hamburger {
    display: flex;
  }
  .section {
    padding: 80px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .partners-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 150px 0 80px;
  }
  .hero-card {
    padding: 40px 26px 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-credentials {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .cred-divider {
    display: none;
  }
  .whatsapp-float {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    bottom: 18px;
    right: 18px;
  }
}
