﻿/* ============================================================
   DESIGN TOKENS â€” IntrÃ©cci ClÃ­nica de Psicologia
   Paleta retirada das logos: rose-gold, nude, preto profundo
   ============================================================ */
:root {
  --clr-black:      #0f0d0d;
  --clr-ink:        #1a1614;
  --clr-dark:       #2a2220;
  --clr-rose:       #c9967e;        /* rose-gold principal */
  --clr-rose-light: #ddb49d;        /* tom mais claro */
  --clr-nude:       #e8cfc2;        /* nude suave */
  --clr-cream:      #f5ece7;        /* fundo quente */
  --clr-white:      #fdf9f7;
  --clr-text:       #3a2e2a;
  --clr-muted:      #7a6760;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Nunito Sans', sans-serif;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 8px 40px rgba(15,13,13,0.10);
  --shadow-card: 0 2px 20px rgba(15,13,13,0.08);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--clr-white);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--clr-ink);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-rose);
  display: block;
  margin-bottom: 0.75rem;
}

/* ============================================================
   UTILITÃRIOS
   ============================================================ */
.container {
  width: 90%;
  max-width: 1160px;
  margin-inline: auto;
}
.section-pad { padding-block: clamp(4rem, 8vw, 7rem); }
.text-center { text-align: center; }
.italic { font-style: italic; }

/* ============================================================
   BOTÃ•ES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--clr-rose);
  color: var(--clr-white);
}
.btn-primary:hover {
  background: var(--clr-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,150,126,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--clr-rose);
  border: 1.5px solid var(--clr-rose);
}
.btn-outline:hover {
  background: var(--clr-rose);
  color: var(--clr-white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--clr-ink);
  color: var(--clr-white);
}
.btn-dark:hover {
  background: var(--clr-rose);
  transform: translateY(-2px);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: var(--transition);
}
/* Barra de admin do WP (classe admin-bar fica no body, não no html) */
body.admin-bar .nav,
body.admin-bar #mainNav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .nav,
  body.admin-bar #mainNav {
    top: 46px;
  }
}
.nav.scrolled {
  background: rgba(253,249,247,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(15,13,13,0.08);
  padding: 0.7rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  flex-shrink: 0;
  display: inline-flex;
}
.nav-logo img,
.nav-logo-img,
img.nav-logo-img.is-svg {
  height: 85px;
  width: 225px;
  min-width: 225px;
  min-height: 85px;
  max-width: 225px;
  max-height: 85px;
  object-fit: contain;
  transition: var(--transition);
}
/* Apenas o SVG padrão do tema no hero (fundo escuro) */
.nav:not(.scrolled) .nav-logo-img.is-theme-default {
  filter: brightness(0) invert(1);
}
.nav.scrolled .nav-logo-img.is-theme-default,
.nav-logo-img.is-custom {
  filter: none;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253,249,247,0.85);
  transition: var(--transition);
}
.nav.scrolled .nav-links a { color: var(--clr-text); }
.nav-links a:hover { color: var(--clr-rose); }
.nav-cta { display: none; }

@media (min-width: 768px) {
  .nav-cta { display: flex; }
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.nav.scrolled .hamburger span { background: var(--clr-ink); }

@media (min-width: 900px) {
  .hamburger { display: none; }
  .nav-links { display: flex; }
}
@media (max-width: 899px) {
  .nav-links { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--clr-black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,150,126,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,150,126,0.10) 0%, transparent 55%);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.28;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 10rem 5rem;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-rose-light);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 2rem; height: 1px;
  background: var(--clr-rose);
}
.hero h1 {
  color: var(--clr-white);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--clr-rose-light);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(253,249,247,0.72);
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(253,249,247,0.55);
  margin-top: 0.5rem;
}
.hero-badge svg { width: 14px; height: 14px; }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(253,249,247,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-hint span { display: block; width: 1px; height: 36px; background: rgba(201,150,126,0.4); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--clr-rose);
  padding: 1.1rem 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-white);
  white-space: nowrap;
}
.trust-item .intrecci-fa-icon { font-size: 1rem; opacity: 0.9; line-height: 1; }

/* ============================================================
   QUEM SOMOS
   ============================================================ */
.about {
  background: var(--clr-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.about-images {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 52%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 4px solid var(--clr-white);
}
.about-deco {
  position: absolute;
  top: -1.5rem; right: 12%;
  width: 80px; height: 80px;
  background: var(--clr-nude);
  border-radius: 50%;
  z-index: -1;
}
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p {
  color: var(--clr-muted);
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--clr-nude);
}
.stat-item strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.2rem;
  color: var(--clr-rose);
  line-height: 1;
}
.stat-item span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--clr-muted);
  text-transform: uppercase;
}

/* ============================================================
   DOR / IDENTIFICAÃ‡ÃƒO
   ============================================================ */
.pain {
  background: var(--clr-ink);
  position: relative;
  overflow: hidden;
}
.pain::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,150,126,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
}
.pain-content .eyebrow { color: var(--clr-rose-light); }
.pain-content h2 { color: var(--clr-white); margin-bottom: 1.25rem; }
.pain-content p { color: rgba(253,249,247,0.65); font-weight: 300; margin-bottom: 1rem; }
.pain-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(253,249,247,0.75);
  font-size: 0.95rem;
}
.pain-list li::before {
  content: '';
  width: 6px; height: 6px;
  min-width: 6px;
  background: var(--clr-rose);
  border-radius: 50%;
  margin-top: 0.55rem;
}
.pain-image {
  position: relative;
}
.pain-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  opacity: 0.85;
}
.pain-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--clr-rose);
  color: var(--clr-white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  max-width: 220px;
  box-shadow: var(--shadow-soft);
}
.pain-card p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(253,249,247,0.9) !important;
}
.pain-card strong {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.3rem;
}

/* ============================================================
   SERVIÃ‡OS
   ============================================================ */
.services {
  background: var(--clr-cream);
}
.services-header {
  text-align: center;
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.services-header p {
  color: var(--clr-muted);
  margin-top: 0.75rem;
  font-weight: 300;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
}
.service-card:hover {
  border-color: var(--clr-rose);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--clr-cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--clr-rose);
}
.service-icon .intrecci-fa-icon { font-size: 1.35rem; color: var(--clr-rose); transition: var(--transition); }
.service-card:hover .service-icon .intrecci-fa-icon { color: var(--clr-white); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.service-card p { color: var(--clr-muted); font-size: 0.9rem; font-weight: 300; line-height: 1.65; }
.service-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-rose);
}

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.how {
  background: var(--clr-white);
}
.how-header {
  text-align: center;
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 4rem;
}
.how-header p { color: var(--clr-muted); margin-top: 0.75rem; font-weight: 300; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 2rem; right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-nude), transparent);
}
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps::before { display: none; }
}
.step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.step-number {
  width: 4rem; height: 4rem;
  background: var(--clr-cream);
  border: 2px solid var(--clr-nude);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--clr-rose);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step:hover .step-number {
  background: var(--clr-rose);
  color: var(--clr-white);
  border-color: var(--clr-rose);
}
.step h4 {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--clr-ink);
  margin-bottom: 0.4rem;
}
.step p { font-size: 0.82rem; color: var(--clr-muted); font-weight: 300; }

/* ============================================================
   EQUIPE
   ============================================================ */
.team {
  background: var(--clr-cream);
}
.team-header {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.team-header p { color: var(--clr-muted); margin-top: 0.75rem; font-weight: 300; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.team-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.team-img-wrap {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.team-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.04); }
.team-info {
  padding: 1.5rem;
}
.team-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.team-crp {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-rose);
  display: block;
  margin-bottom: 0.6rem;
}
.team-info p { font-size: 0.85rem; color: var(--clr-muted); font-weight: 300; line-height: 1.6; }
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.team-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  background: var(--clr-cream);
  color: var(--clr-rose);
  border-radius: 100px;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials {
  background: var(--clr-ink);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,150,126,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials .eyebrow { color: var(--clr-rose-light); }
.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.testimonials-header h2 { color: var(--clr-white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,150,126,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.testi-card:hover {
  background: rgba(201,150,126,0.08);
  border-color: rgba(201,150,126,0.4);
}
.testi-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}
.testi-stars svg { width: 14px; height: 14px; color: var(--clr-rose); fill: currentColor; }
.testi-card blockquote {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(253,249,247,0.85);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-avatar {
  width: 40px; height: 40px;
  background: var(--clr-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--clr-white);
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-white);
  display: block;
}
.testi-meta {
  font-size: 0.72rem;
  color: rgba(253,249,247,0.45);
  display: block;
  margin-top: 0.1rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--clr-white);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 768px) {
  .faq-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
.faq-side h2 { margin-bottom: 1rem; }
.faq-side p { color: var(--clr-muted); font-weight: 300; margin-bottom: 2rem; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid var(--clr-nude);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--clr-rose); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-ink);
  transition: var(--transition);
}
.faq-question:hover { color: var(--clr-rose); }
.faq-item.open .faq-question { color: var(--clr-rose); }
.faq-icon {
  width: 24px; height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--clr-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--clr-rose);
  transform: rotate(45deg);
}
.faq-icon svg { width: 12px; height: 12px; color: var(--clr-rose); transition: var(--transition); }
.faq-item.open .faq-icon svg { color: var(--clr-white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--clr-rose);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.cta-banner-inner { position: relative; z-index: 2; max-width: 600px; margin-inline: auto; }
.cta-banner .eyebrow { color: rgba(255,255,255,0.7); }
.cta-banner h2 { color: var(--clr-white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.82); font-weight: 300; margin-bottom: 2rem; }
.cta-banner .btn-dark { background: var(--clr-ink); }
.cta-banner .btn-dark:hover { background: var(--clr-dark); }
.cta-privacy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.cta-privacy svg { width: 12px; height: 12px; }

/* ============================================================
   CONTATO / FORMULÃRIO
   ============================================================ */
.contact {
  background: var(--clr-cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--clr-muted); font-weight: 300; margin-bottom: 2rem; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--clr-text);
}
.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--clr-rose);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; color: var(--clr-white); }
.contact-form-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}
.form-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--clr-ink);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--clr-ink);
  background: var(--clr-cream);
  border: 1.5px solid var(--clr-nude);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  width: 100%;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-rose);
  background: var(--clr-white);
  box-shadow: 0 0 0 3px rgba(201,150,126,0.15);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-privacy {
  font-size: 0.75rem;
  color: var(--clr-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.form-privacy a { color: var(--clr-rose); text-decoration: underline; }
.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-ink);
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-logo { height: 36px; margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(253,249,247,0.45);
  font-weight: 300;
  max-width: 260px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link:hover { background: var(--clr-rose); }
.social-link svg { width: 16px; height: 16px; color: rgba(253,249,247,0.6); transition: var(--transition); }
.social-link:hover svg { color: var(--clr-white); }
.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-rose);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(253,249,247,0.55);
  transition: var(--transition);
  font-weight: 300;
}
.footer-col ul li a:hover { color: var(--clr-rose-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(253,249,247,0.3);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.72rem;
  color: rgba(253,249,247,0.3);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--clr-rose); }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 90;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.whatsapp-fab svg { width: 26px; height: 26px; color: white; }

/* ============================================================
   ANIMAÃ‡Ã•ES DE ENTRADA
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVIDADE MOBILE
   ============================================================ */
@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .about-images { height: 320px; }
  .about-img-main { width: 80%; height: 75%; }
  .about-img-accent { width: 55%; height: 50%; }
  .trust-bar-inner { gap: 1.25rem; }
  .trust-item { font-size: 0.7rem; }
}

/* ============================================================
   SVG / WebP (biblioteca de mídia)
   ============================================================ */
.intrecci-media,
img.is-svg:not(.nav-logo-img),
img.is-webp,
img.is-raster {
  max-width: 100%;
  height: auto;
}
.hero-img.is-raster,
.hero-img.is-webp,
.hero-img.is-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-images .intrecci-media.is-svg,
.pain-image .intrecci-media.is-svg,
.team-img-wrap .intrecci-media.is-svg {
  object-fit: contain;
}
/* Logos SVG personalizados: sem filtro (cores originais) */
.nav-logo-img.is-svg.is-custom {
  filter: none;
}
