/* ============================================================
   Dra. Waleska Paula — Fisioterapia e Pilates
   Visual fiel ao site original (verde, dourado, creme)
   ============================================================ */

:root {
  --primary: hsl(145 64.3% 22%);
  --primary-foreground: hsl(43.6 35.5% 93.9%);
  --accent: hsl(44.2 66.7% 52.9%);
  --accent-foreground: hsl(222.2 84% 4.9%);
  --background: hsl(43.6 35.5% 93.9%);
  --foreground: hsl(222.2 84% 4.9%);
  --muted: hsl(42.4 33.3% 90%);
  --muted-foreground: hsl(176.5 10.1% 33.1%);
  --border: 40.9 22% 80.4%;
  --card: hsl(43.6 35.5% 93.9%);
  --secondary: hsl(210 100% 25.5%);
  --secondary-foreground: hsl(210 40% 98%);
  --ring: 44.2 66.7% 52.9%;
  --radius: 2rem;

  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 16px -4px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 24px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   Reset & base
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--foreground);
  background: var(--background);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--foreground);
  line-height: 1.2;
  font-weight: 600;
}

:focus-visible {
  outline: 3px solid hsl(var(--ring) / 0.55);
  outline-offset: 2px;
  border-radius: 8px;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 3000;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  vertical-align: middle;
}

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

/* ============================================================
   Botões
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 999px;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, color 0.2s ease;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 12px 24px -10px hsl(145 64.3% 22% / 0.35);
}

.btn--primary:hover {
  background: hsl(145 64.3% 22% / 0.9);
}

.btn--accent {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 12px 24px -10px hsl(44.2 66.7% 52.9% / 0.4);
}

.btn--accent:hover {
  background: hsl(44.2 66.7% 52.9% / 0.9);
}

.btn--accent .btn__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, hsla(222, 84%, 5%, 0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.btn--accent > :not(.btn__shimmer) {
  position: relative;
  z-index: 1;
}

.btn--outline {
  background: transparent;
  color: var(--primary-foreground);
  border: 1px solid var(--primary-foreground);
}

.btn--outline:hover {
  background: var(--primary-foreground);
  color: var(--primary);
}

.btn--full {
  width: 100%;
}

.btn--lg {
  padding: 20px 34px;
  font-size: 1rem;
}

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

/* ============================================================
   Header / Navegação
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--background);
  border-bottom: 1px solid hsl(var(--border) / 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  gap: 16px;
}

.header__logo {
  width: 60%;
  max-width: 300px;
  aspect-ratio: 3.38 / 1;
  overflow: hidden;
  flex-shrink: 1;
}

.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 38%;
}

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

.header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__cta .btn {
  white-space: nowrap;
}

.header__link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
  padding: 4px 0;
}

.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.header__link:hover {
  color: var(--primary);
}

.header__link:hover::after {
  width: 100%;
}

.header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  background: var(--card);
  color: var(--foreground);
}

.header__toggle svg {
  width: 22px;
  height: 22px;
}

/* Drawer (menu mobile) */
.drawer__backdrop {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.drawer__backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1600;
  width: min(340px, 88vw);
  background: var(--background);
  border-left: 1px solid hsl(var(--border));
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: hsl(var(--border) / 0.5);
  border-radius: 12px;
  color: var(--foreground);
  margin-bottom: 48px;
}

.drawer__close svg {
  width: 20px;
  height: 20px;
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.drawer__link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
}

.drawer__link:hover {
  color: var(--primary);
}

.drawer__cta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid hsl(var(--border) / 0.5);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ============================================================
   Hero dividido (página de cadastro)
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 100vh;
  overflow-x: clip;
}

.panel {
  position: relative;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  flex-direction: column;
  padding: 48px 28px 80px;
  overflow: hidden;
}

.panel__ring {
  position: absolute;
  top: -240px;
  right: -240px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  border: 32px solid hsl(43.6 35.5% 93.9% / 0.03);
  pointer-events: none;
}

.panel__blob {
  position: absolute;
  bottom: -128px;
  left: -128px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: hsl(43.6 35.5% 93.9% / 0.02);
  filter: blur(60px);
  pointer-events: none;
}

.panel__dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.panel__dot--accent {
  top: 40%;
  right: 15%;
  width: 12px;
  height: 12px;
  background: var(--accent);
  box-shadow: 0 0 15px hsl(var(--ring) / 0.5);
  animation: floatA 6s ease-in-out infinite;
}

.panel__dot--soft {
  top: 60%;
  left: 10%;
  width: 6px;
  height: 6px;
  background: hsl(43.6 35.5% 93.9% / 0.3);
  animation: floatB 8s ease-in-out 1s infinite;
}

.panel__logo {
  align-self: flex-start;
  display: inline-flex;
  background: var(--background);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.25);
  margin-bottom: auto;
}

.panel__logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
}

.panel__body {
  margin: auto 0;
  padding: 48px 0;
}

.panel__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(43.6 35.5% 93.9% / 0.7);
  margin-bottom: 32px;
}

.panel__eyebrow::before {
  content: "";
  width: 48px;
  height: 1px;
  background: hsl(43.6 35.5% 93.9% / 0.3);
}

.panel__title {
  font-size: clamp(2.6rem, 4.6vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--primary-foreground);
  margin-bottom: 32px;
}

.panel__title em {
  font-style: italic;
  color: var(--accent);
}

.panel__text {
  color: hsl(43.6 35.5% 93.9% / 0.8);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 300;
  max-width: 448px;
  line-height: 1.6;
}

.panel__privacy {
  margin-top: auto;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid hsl(43.6 35.5% 93.9% / 0.1);
  max-width: 400px;
  font-size: 0.8rem;
  font-weight: 300;
  color: hsl(43.6 35.5% 93.9% / 0.6);
}

.panel__privacy-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid hsl(43.6 35.5% 93.9% / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.panel__privacy-icon svg {
  width: 14px;
  height: 14px;
  color: hsl(43.6 35.5% 93.9% / 0.6);
}

.form-side {
  position: relative;
  background: var(--background);
  padding: 64px 48px 96px;
}

.form-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, hsl(var(--border)) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.3;
  pointer-events: none;
}

.form-side__inner {
  position: relative;
  max-width: 672px;
  margin: 0 auto;
}

/* ============================================================
   Formulário de cadastro
   ============================================================ */

.form-head {
  margin-bottom: 48px;
}

.form-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 12px;
}

.form-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

.service-pick {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  background: hsl(145 64.3% 22% / 0.07);
  border: 1px solid hsl(145 64.3% 22% / 0.2);
  border-radius: 18px;
  padding: 16px 20px;
  margin-bottom: 28px;
}

.service-pick__label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 4px;
}

.service-pick__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
}

.service-pick__change {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1px solid hsl(145 64.3% 22% / 0.3);
}

.service-pick__change:hover {
  color: var(--primary);
  opacity: 0.8;
}

.step-card {
  border: 1px solid hsl(var(--border) / 0.6);
  border-radius: 24px;
  padding: 32px 40px;
  margin-bottom: 32px;
  background: transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.step-card:hover {
  border-color: hsl(var(--border));
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.step-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

.step-num--accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
}

.step-sub {
  font-size: 0.75rem;
  color: hsl(176.5 10.1% 33.1% / 0.8);
  margin-top: 2px;
  font-family: var(--font-body);
}

.field {
  margin-bottom: 24px;
}

.field__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(176.5 10.1% 33.1% / 0.8);
  margin-bottom: 8px;
}

.field__label small {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.78rem;
  opacity: 0.7;
}

.field__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--foreground);
  background: hsla(0, 0%, 100%, 0.5);
  border: 1px solid hsl(var(--border) / 0.6);
  border-radius: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.input::placeholder {
  color: hsl(176.5 10.1% 33.1% / 0.5);
}

.input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(var(--ring) / 0.25);
  background: #fff;
}

.field__error {
  display: block;
  min-height: 16px;
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 6px;
}

/* Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  text-align: left;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid hsl(var(--border) / 0.8);
  background: transparent;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
}

.chip:hover {
  border-color: hsl(145 64.3% 22% / 0.5);
  color: var(--foreground);
  transform: scale(1.04);
}

.chip:active {
  transform: scale(0.95);
}

.chip.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 6px 16px -6px hsl(145 64.3% 22% / 0.35);
}

.form-status {
  text-align: center;
  font-weight: 600;
  margin-top: 16px;
  min-height: 24px;
}

.form-status.is-success {
  color: var(--primary);
}

.form-status.is-error {
  color: #c0392b;
}

/* Sucesso */
.success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 80px 24px;
  text-align: center;
}

.success__card {
  max-width: 420px;
  background: var(--card);
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 24px 60px -24px hsl(145 64.3% 22% / 0.2);
}

.success__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: hsl(145 64.3% 22% / 0.1);
  border: 1px solid hsl(145 64.3% 22% / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.success__icon svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
}

.success__title {
  font-size: 1.9rem;
  margin-bottom: 16px;
}

.success__text {
  color: var(--muted-foreground);
  margin-bottom: 28px;
}

/* ============================================================
   Hero de apresentação (home)
   ============================================================ */

.hero-mini {
  position: relative;
  background: var(--primary);
  color: var(--primary-foreground);
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 88px 24px;
  overflow: hidden;
}

.hero-mini::before {
  content: "";
  position: absolute;
  top: -96px;
  right: -96px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: hsl(44.2 66.7% 52.9% / 0.18);
  filter: blur(100px);
  pointer-events: none;
}

.hero-mini::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 40%;
  width: 224px;
  height: 224px;
  border-radius: 50%;
  background: hsl(43.6 35.5% 93.9% / 0.1);
  filter: blur(80px);
  pointer-events: none;
}

.hero-mini__dot {
  position: absolute;
  top: 40px;
  right: 25%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: floatA 7s ease-in-out infinite;
}

.hero-mini__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-mini__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-mini__eyebrow::before,
.hero-mini__eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero-mini__title {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  background: linear-gradient(90deg, var(--primary-foreground), var(--accent), var(--primary-foreground));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradient-x 6s linear infinite;
  margin-bottom: 20px;
}

.hero-mini__text {
  color: hsl(43.6 35.5% 93.9% / 0.85);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto;
}

.hero-mini__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

/* ============================================================
   Apresentação da Dra (home)
   ============================================================ */

.presentation {
  padding: 100px 24px;
  background: var(--background);
}

.presentation__inner {
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.presentation__photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.3);
}

.presentation__photo img {
  width: 100%;
  height: auto;
}

.presentation__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 16px;
}

.presentation__title {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 20px;
}

.presentation__title em {
  font-style: italic;
  color: var(--accent);
}

.presentation__text {
  color: var(--muted-foreground);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.presentation__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================================
   Serviços com valores
   ============================================================ */

.services {
  padding: 100px 24px;
  background: var(--muted);
}

.services__inner {
  max-width: 1152px;
  margin: 0 auto;
}

.services__head {
  text-align: center;
  margin-bottom: 56px;
}

.services__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 12px;
}

.services__title {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
}

.services__sub {
  color: var(--muted-foreground);
  max-width: 560px;
  margin: 16px auto 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, hsl(145 64.3% 22% / 0.3), transparent, hsl(44.2 66.7% 52.9% / 0.3));
}

.service-card__inner {
  background: var(--card);
  border-radius: 27px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-card__inner {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.25);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: hsl(145 64.3% 22% / 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--foreground);
}

.service-card__desc {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px dashed hsl(var(--border) / 0.7);
  margin-top: 4px;
}

.service-card__price-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.service-card__price-unit {
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.service-card__cta {
  margin-top: 12px;
}

/* ============================================================
   CTA
   ============================================================ */

.cta {
  position: relative;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -80px;
  right: 0;
  width: 288px;
  height: 288px;
  border-radius: 50%;
  background: hsl(44.2 66.7% 52.9% / 0.18);
  filter: blur(100px);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.cta__icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin: 0 auto 20px;
}

.cta__title {
  color: var(--primary-foreground);
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 20px;
}

.cta__text {
  color: hsl(43.6 35.5% 93.9% / 0.8);
  margin-bottom: 32px;
  font-weight: 300;
}

/* ============================================================
   Rodapé
   ============================================================ */

.footer {
  background: var(--primary);
  color: var(--primary-foreground);
}

.footer__grid {
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1fr;
  gap: 40px;
  padding: 72px 24px 48px;
}

.footer__logo {
  width: 62%;
  max-width: 280px;
  aspect-ratio: 3.38 / 1;
  overflow: hidden;
  margin-bottom: 20px;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 38%;
}

.footer__tagline {
  font-size: 0.9rem;
  color: hsl(43.6 35.5% 93.9% / 0.75);
  max-width: 300px;
  line-height: 1.6;
}

.footer__title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 0.9rem;
  color: hsl(43.6 35.5% 93.9% / 0.75);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--primary-foreground);
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: hsl(43.6 35.5% 93.9% / 0.75);
}

.footer__contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsl(43.6 35.5% 93.9% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer__social-link:hover {
  background: var(--accent);
  color: var(--accent-foreground);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.75rem;
  color: hsl(43.6 35.5% 93.9% / 0.6);
}

.footer__privacy svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid hsl(43.6 35.5% 93.9% / 0.15);
}

.footer__bottom-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: hsl(43.6 35.5% 93.9% / 0.6);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

/* ============================================================
   Animações de revelação
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay {
  transition-delay: 0.12s;
}

.reveal--delay-2 {
  transition-delay: 0.24s;
}

.reveal--delay-3 {
  transition-delay: 0.36s;
}

@keyframes floatA {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.1);
  }
}

@keyframes floatB {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-150%);
  }
  100% {
    transform: translateX(150%);
  }
}

@keyframes gradient-x {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Responsivo
   ============================================================ */

@media (max-width: 1024px) {
  .split {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 48px 40px 64px;
  }

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

  .presentation__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .presentation__photo {
    max-width: 460px;
  }

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

@media (max-width: 820px) {
  .header__nav,
  .header__cta {
    display: none;
  }

  .header__toggle {
    display: inline-flex;
  }

  .header__inner {
    min-height: 76px;
  }

  .header__logo {
    max-width: 200px;
  }
}

@media (max-width: 640px) {
  .hero-mini {
    padding: 64px 24px;
  }

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

  .field__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step-card {
    padding: 24px 20px;
  }

  .form-side {
    padding: 48px 18px 72px;
  }

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

  .footer__bottom-inner {
    justify-content: center;
    text-align: center;
  }
}
