/* ============================================================
   Caroline Toledo — Psicóloga Online
   style.css — Design system completo
   Digital Bloom © 2025
   ============================================================ */

/* ===== DESIGN TOKENS ===== */
:root {
  --blush:       #f9dfde;
  --blush-light: #fdf0ef;
  --rose:        #d39a8e;
  --dusty:       #d9a79d;
  --rose-dark:   #b87d72;
  --cream:       #faf8f6;
  --warm-white:  #fff9f8;
  --beige:       #f5f0eb;

  --text-dark:   #2e2220;
  --text-mid:    #5c4a47;
  --text-soft:   #8c726e;
  --text-light:  #b89d9a;

  --border:      #ecdcda;
  --border-soft: #f3e8e7;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, -apple-system, sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  --shadow-xs:   0 1px 3px rgba(46,34,32,.06);
  --shadow-sm:   0 4px 16px rgba(46,34,32,.08);
  --shadow-md:   0 8px 32px rgba(46,34,32,.10);
  --shadow-lg:   0 20px 60px rgba(46,34,32,.12);

  --transition:  0.3s cubic-bezier(.4,0,.2,1);
  --transition-slow: 0.5s cubic-bezier(.4,0,.2,1);

  --max-width: 1200px;
  --section-v: clamp(72px, 10vw, 120px);
  --container-h: clamp(20px, 5vw, 48px);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: var(--text-mid);
  background-color: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul { list-style: none; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

button {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-h);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  line-height: 1.15;
  font-weight: 400;
}

h1 { font-size: clamp(42px, 6vw, 72px); letter-spacing: -0.02em; }
h2 { font-size: clamp(32px, 4.5vw, 54px); letter-spacing: -0.02em; }
h3 { font-size: clamp(18px, 2.2vw, 24px); font-weight: 500; }
h4 { font-size: clamp(14px, 1.6vw, 16px); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }

h2 em, h1 em {
  font-style: italic;
  color: var(--rose);
}

p { max-width: 60ch; }

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}

.section-label.light { color: var(--dusty); }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header h2 { margin-bottom: 20px; }
.section-header p { max-width: 52ch; margin: 0 auto; color: var(--text-soft); }

/* ===== BUTTONS ===== */
.btn-primary,
.btn-ghost,
.btn-outline,
.btn-nav,
.btn-submit,
.btn-primary-light,
.footer-wpp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--rose);
  color: #fff;
  padding: 15px 32px;
  box-shadow: 0 4px 20px rgba(211,154,142,.35);
}

.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(211,154,142,.45);
}

.btn-ghost {
  color: var(--text-mid);
  padding: 15px 24px;
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.btn-outline {
  color: var(--rose);
  padding: 13px 28px;
  border: 1.5px solid var(--rose);
}

.btn-outline:hover {
  background: var(--rose);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211,154,142,.3);
}

.btn-nav {
  background: var(--blush);
  color: var(--rose-dark);
  padding: 10px 22px;
  font-size: 13px;
}

.btn-nav:hover {
  background: var(--rose);
  color: #fff;
}

.btn-nav-mobile {
  display: block;
  text-align: center;
  background: var(--rose);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  margin-top: 8px;
}

.btn-primary-light {
  background: #fff;
  color: var(--rose-dark);
  padding: 16px 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}

.btn-primary-light:hover {
  background: var(--blush-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.16);
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: var(--rose);
  color: #fff;
  padding: 17px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(211,154,142,.35);
  transition: all var(--transition);
}

.btn-submit:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(211,154,142,.45);
}

.btn-submit:active { transform: translateY(0); }

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,249,248,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

#site-header.scrolled {
  border-bottom-color: var(--border-soft);
  box-shadow: 0 2px 20px rgba(46,34,32,.06);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-desktop a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.01em;
  position: relative;
}

.nav-desktop a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width var(--transition);
}

.nav-desktop a:not(.btn-nav):hover::after { width: 100%; }
.nav-desktop a:not(.btn-nav):hover { color: var(--rose); }

/* ===== MOBILE MENU TOGGLE ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  background: var(--warm-white);
  border-top: 1px solid var(--border-soft);
  padding: 16px var(--container-h) 24px;
  display: none;
  animation: slideDown 0.25s ease;
}

.mobile-menu.open { display: block; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }

.mobile-menu li a {
  display: block;
  padding: 13px 0;
  font-size: 16px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border-soft);
}

.mobile-menu li:last-child a { border-bottom: none; }
.mobile-menu li a:hover { color: var(--rose); }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  background: var(--cream);
  padding-top: 72px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, var(--blush) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 100px) var(--container-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-dark);
  background: var(--blush);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--rose);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-text h1 {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-credenciais {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.credencial {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-soft);
}

.cred-dot {
  width: 5px;
  height: 5px;
  background: var(--rose);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Hero image */
.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

.hero-image-frame:hover .hero-photo { transform: scale(1.03); }

.hero-image-deco {
  position: absolute;
  border-radius: var(--radius-xl);
  z-index: 1;
}

.hero-deco-1 {
  width: 85%;
  height: 85%;
  background: var(--blush);
  top: -5%;
  right: -5%;
  opacity: 0.7;
}

.hero-deco-2 {
  width: 55%;
  height: 55%;
  background: var(--dusty);
  bottom: -4%;
  left: -4%;
  opacity: 0.3;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ===== SOBRE ===== */
.sobre {
  padding: var(--section-v) 0;
  background: var(--warm-white);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.sobre-image-col {
  position: relative; /* badge se posiciona relativo à coluna */
}

.sobre-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}

.sobre-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

.sobre-image-wrap:hover img { transform: scale(1.04); }

.sobre-image-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  z-index: 10;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.04em;
}

.badge-icon {
  color: var(--rose);
  font-size: 14px;
}

.sobre-content-col { }

.sobre-content-col h2 {
  margin-bottom: 28px;
}

.sobre-content-col p {
  color: var(--text-soft);
  margin-bottom: 20px;
  max-width: 52ch;
}

.sobre-content-col p strong { color: var(--text-dark); font-weight: 500; }

.sobre-filosofia {
  border-left: 2px solid var(--rose);
  padding-left: 20px;
  margin: 32px 0;
}

.sobre-filosofia p {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 21px);
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

.sobre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.tag {
  font-size: 12px;
  font-weight: 400;
  color: var(--rose-dark);
  background: var(--blush-light);
  border: 1px solid var(--blush);
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

/* ===== ESPECIALIDADES ===== */
.especialidades {
  padding: var(--section-v) 0;
  background: var(--cream);
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--rose) 30%, var(--rose) 70%, transparent 100%);
  opacity: 0.25;
  max-width: calc(var(--max-width) - 2 * 96px);
  margin: 0 auto;
}

/* ===== ESPECIALIDADES ===== */
.especialidades-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.espec-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 220px;
  background: var(--warm-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.espec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blush), var(--rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.espec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.espec-card:hover::before { transform: scaleX(1); }

.espec-icon {
  width: 48px;
  height: 48px;
  background: var(--blush-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--rose);
  transition: background var(--transition);
}

.espec-card:hover .espec-icon { background: var(--blush); }

.espec-card h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.espec-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: none;
}

/* ===== ONLINE ===== */
.online-section {
  padding: var(--section-v) 0;
  background: var(--warm-white);
}

.online-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.online-content h2 { margin-bottom: 24px; }
.online-content > p { color: var(--text-soft); margin-bottom: 20px; max-width: 52ch; }

.online-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 36px 0 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
}

.benefit-dot {
  width: 6px;
  height: 6px;
  background: var(--rose);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Online Photo */
.online-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.online-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-lg);
}

.online-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

.online-photo-wrap:hover img { transform: scale(1.03); }

/* ===== DIFERENCIAIS ===== */
.diferenciais {
  padding: var(--section-v) 0;
  background: var(--text-dark);
}

.diferenciais .section-header { margin-bottom: clamp(48px, 6vw, 72px); }

.diferenciais .section-label { color: var(--dusty); }

.diferenciais h2 {
  color: #fff;
}

.diferenciais-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
  background: #2e2220;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.dif-item {
  flex: 0 0 calc(33.333% - 1px);
  background: var(--text-dark);
  padding: clamp(28px, 4vw, 48px);
  transition: background var(--transition);
}

.dif-item:hover {
  background: rgba(255,255,255,.04);
}

.dif-number {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--rose);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.dif-item h3 {
  font-size: clamp(16px, 1.8vw, 20px);
  color: #fff;
  margin-bottom: 12px;
  font-weight: 500;
}

.dif-item p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: none;
}

/* ===== PARA QUEM ===== */
.para-quem {
  padding: var(--section-v) 0;
  background: var(--blush-light);
}

.para-quem-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.para-quem-header h2 { margin-bottom: 20px; }
.para-quem-header p { color: var(--text-soft); margin-bottom: 36px; max-width: 44ch; }

.para-quem-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
}

.pq-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.pq-item:last-child { border-bottom: none; }

.pq-item:hover { padding-left: 4px; }

.pq-icon {
  color: var(--rose);
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.5;
  transition: transform var(--transition);
}

.pq-item:hover .pq-icon { transform: translateX(4px); }

.pq-item p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: none;
  margin: 0;
}

/* ===== CTA MID ===== */
.cta-mid {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--warm-white);
}

.cta-mid-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-mid-content h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 20px;
  max-width: none;
}

.cta-mid-content p {
  font-size: 17px;
  color: var(--text-soft);
  margin: 0 auto 36px;
  max-width: 48ch;
}

/* ===== FAQ ===== */
.faq {
  padding: var(--section-v) 0;
  background: var(--cream);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--rose); }

.faq-icon {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  color: var(--rose);
  line-height: 1;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding-bottom: 20px;
  padding-right: 48px;
  overflow: hidden;
}

.faq-answer[hidden] { display: none; }

.faq-answer p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 60ch;
}

/* ===== CONTATO ===== */
.contato {
  padding: var(--section-v) 0;
  background: var(--warm-white);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.contato-info h2 { margin-bottom: 20px; }
.contato-info > p { color: var(--text-soft); margin-bottom: 16px; max-width: 44ch; }

.contato-channels {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}

.channel-item.channel-static { cursor: default; }

.channel-item:not(.channel-static):hover { padding-left: 6px; }

.channel-icon {
  width: 40px;
  height: 40px;
  background: var(--blush-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  flex-shrink: 0;
  transition: background var(--transition);
}

.channel-item:not(.channel-static):hover .channel-icon { background: var(--blush); }

.channel-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}

.channel-value {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

/* ===== FORM ===== */
.contact-form {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.label-optional {
  font-weight: 400;
  color: var(--text-light);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(211,154,142,.15);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e57373;
  box-shadow: 0 0 0 3px rgba(229,115,115,.12);
}

.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.form-error {
  font-size: 12px;
  color: #c0392b;
  min-height: 16px;
}

.form-disclaimer {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  max-width: none;
}

/* ===== CTA FINAL ===== */
.cta-final {
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,.12) 0%, transparent 60%);
}

.cta-final-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-final-quote {
  font-family: var(--font-serif);
  font-size: 80px;
  color: rgba(255,255,255,.25);
  line-height: 0.6;
  margin-bottom: 8px;
}

.cta-final-content h2 {
  color: #fff;
  font-size: clamp(28px, 4.5vw, 52px);
  margin-bottom: 20px;
  max-width: none;
}

.cta-final-content p {
  color: rgba(255,255,255,.8);
  font-size: 17px;
  margin: 0 auto 40px;
  max-width: 50ch;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.6);
  padding: clamp(56px, 7vw, 96px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
  max-width: 36ch;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer-links a,
.footer-contact a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--rose); }

.footer-wpp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: var(--rose);
  padding: 10px 20px;
  border-radius: 100px;
  margin-top: 20px;
  transition: all var(--transition);
}

.footer-wpp:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 0;
}

.footer-copy,
.footer-dev {
  font-size: 13px;
  color: rgba(255,255,255,.3);
  max-width: none;
}

.footer-dev a {
  color: var(--rose);
  transition: color var(--transition);
}

.footer-dev a:hover { color: var(--dusty); }

/* ===== ANIMATIONS / REVEAL ===== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up    { transform: translateY(28px); }
.reveal-left  { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.especialidades-grid .espec-card:nth-child(2)  { transition-delay: .08s; }
.especialidades-grid .espec-card:nth-child(3)  { transition-delay: .16s; }
.especialidades-grid .espec-card:nth-child(4)  { transition-delay: .06s; }
.especialidades-grid .espec-card:nth-child(5)  { transition-delay: .14s; }
.especialidades-grid .espec-card:nth-child(6)  { transition-delay: .22s; }
.especialidades-grid .espec-card:nth-child(7)  { transition-delay: .04s; }
.especialidades-grid .espec-card:nth-child(8)  { transition-delay: .12s; }
.especialidades-grid .espec-card:nth-child(9)  { transition-delay: .20s; }
.especialidades-grid .espec-card:nth-child(10) { transition-delay: .10s; }

.diferenciais-grid .dif-item:nth-child(2) { transition-delay: .10s; }
.diferenciais-grid .dif-item:nth-child(3) { transition-delay: .20s; }
.diferenciais-grid .dif-item:nth-child(4) { transition-delay: .05s; }
.diferenciais-grid .dif-item:nth-child(5) { transition-delay: .15s; }
.diferenciais-grid .dif-item:nth-child(6) { transition-delay: .25s; }

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

/* Mobile Large */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-desktop { display: none; }

  /* Section divider responsive */
  .section-divider { max-width: calc(100% - 40px); }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 36px;
  }

  /* Hero image: mesmo tamanho da foto sobre (4/5) */
  .hero-image-wrapper {
    order: -1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-image-frame {
    aspect-ratio: 4/5;
    max-width: 100%;
  }

  .hero-deco-1 { display: none; }
  .hero-deco-2 { display: none; }

  .sobre-grid,
  .contato-grid,
  .para-quem-grid {
    grid-template-columns: 1fr;
  }

  /* Online: foto acima do texto, mesmo tamanho do sobre */
  .online-grid {
    grid-template-columns: 1fr;
  }

  .online-visual {
    order: -1; /* foto acima do texto */
  }

  .online-photo-wrap {
    aspect-ratio: 4/5;
    max-width: 100%;
  }

  .sobre-image-badge {
    bottom: 12px;
    right: 12px;
  }

  /* Especialidades: 2 colunas em tablet */
  .espec-card {
    flex: 0 0 calc(50% - 12px);
  }

  .diferenciais-grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  :root { --container-h: 20px; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-primary {
    justify-content: center;
    text-align: center;
  }

  /* Especialidades: 1 coluna em mobile pequeno */
  .espec-card {
    flex: 0 0 100%;
    min-width: unset;
  }

  .contact-form { padding: 24px 20px; }

  .contato-grid { gap: 40px; }

  .sobre-image-badge {
    bottom: 12px;
    right: 12px;
  }

  .sobre-image-col { display: flex; flex-direction: column; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}
