:root {
  --lavanda: #c9a8d4;
  --lavanda-lt: #e8d6f0;
  --lavanda-pal: #f5eef9;
  --rosa: #e8a0b4;
  --rosa-lt: #f9dde6;
  --cream: #fdf9f5;
  --warm: #f5ede4;
  --ink: #2d2033;
  --ink-soft: #6b5c73;
  --white: #ffffff;
  --green-soft: #8fba8f;
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: rgba(253, 249, 245, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 212, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--ink);
}

.nav-logo-text span {
  color: var(--lavanda);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--lavanda);
}

.nav-cta {
  background: var(--lavanda) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(201, 168, 212, .4);
  transition: background .2s, transform .15s !important;
}

.nav-cta:hover {
  background: #b090c0 !important;
  transform: translateY(-1px);
}

/* HERO */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  background: linear-gradient(135deg, var(--lavanda-pal) 0%, var(--cream) 60%);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 72px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rosa-lt);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  width: fit-content;
  animation: fadeUp .7s ease both;
}

.hero-tag::before {
  content: '🕊️';
  font-size: 14px;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  animation: fadeUp .7s .12s ease both;
}

.hero-h1 em {
  font-style: italic;
  color: var(--lavanda);
}

.hero-frase {
  margin-top: 24px;
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 420px;
  border-left: 3px solid var(--lavanda);
  padding-left: 16px;
  animation: fadeUp .7s .22s ease both;
}

.hero-sub {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 440px;
  animation: fadeUp .7s .3s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeUp .7s .42s ease both;
}

.btn-primary {
  background: var(--lavanda);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(201, 168, 212, .45);
  transition: background .2s, transform .15s;
}

.btn-primary:hover {
  background: #b090c0;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  padding: 15px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid rgba(201, 168, 212, .6);
  transition: border-color .2s, color .2s;
}

.btn-outline:hover {
  border-color: var(--lavanda);
  color: var(--lavanda);
}

.hero-right {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(160deg, var(--lavanda-lt) 0%, var(--lavanda-pal) 100%);
  animation: fadeIn 1s .2s ease both;
}

.hero-photo {
  width: 75%;
  height: 75%;
  object-fit: contain;
  object-position: bottom center;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(100, 60, 130, .15));
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  left: 36px;
  z-index: 3;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
  animation: slideUp .9s .5s ease both;
}

.hero-badge-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.hero-badge-crp {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.hero-blob {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(201, 168, 212, .18);
  animation: float 7s ease-in-out infinite;
}

.hero-blob2 {
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(232, 160, 180, .14);
}

/* NÚMEROS */
#numeros {
  background: var(--ink);
  padding: 40px 72px;
  display: flex;
  justify-content: center;
  gap: 0;
}

.num-item {
  flex: 1;
  text-align: center;
  padding: 16px 0;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.num-item:last-child {
  border-right: none;
}

.num-val {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--lavanda-lt);
  line-height: 1;
}

.num-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-top: 6px;
}

/* SEÇÃO COMUM */
section {
  padding: 90px 72px;
}

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lavanda);
  margin-bottom: 14px;
}

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
}

.section-h2 em {
  font-style: italic;
  color: var(--lavanda);
}

.section-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 500px;
  margin-top: 14px;
}

/* SOBRE */
#sobre {
  background: var(--warm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-img-wrap {
  position: relative;
}

.sobre-img {
  width: 70%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(100, 60, 130, .15);
}

.sobre-logo {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
}

.sobre-abordagem {
  margin-top: 32px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  border-left: 4px solid var(--lavanda);
}

.sobre-abordagem h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}

.sobre-abordagem p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-soft);
}

.crp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lavanda-pal);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-top: 24px;
  border: 1px solid rgba(201, 168, 212, .4);
}

/* ESPECIALIDADES */
#especialidades {
  background: var(--cream);
}

.espec-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.espec-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(201, 168, 212, .18);
  transition: transform .22s, box-shadow .22s;
  position: relative;
  overflow: hidden;
}

.espec-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lavanda), var(--rosa));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.espec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(100, 60, 130, .1);
}

.espec-card:hover::before {
  transform: scaleX(1);
}

.espec-icon {
  font-size: 38px;
  margin-bottom: 16px;
}

.espec-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.espec-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* FOTO SESSÃO */
#sessao-foto {
  background: var(--lavanda-pal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sessao-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 20px 56px rgba(100, 60, 130, .15);
}

.sessao-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavanda), var(--rosa));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.step-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* MODALIDADES */
#modalidades {
  background: var(--warm);
}

.modal-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.modal-card {
  background: var(--white);
  border-radius: 22px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(201, 168, 212, .2);
  transition: transform .2s, box-shadow .2s;
}

.modal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(100, 60, 130, .1);
}

.modal-icon {
  font-size: 44px;
  margin-bottom: 18px;
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-soft);
}

.modal-badge {
  display: inline-block;
  margin-top: 18px;
  background: var(--lavanda-pal);
  color: var(--lavanda);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

/* CITAÇÃO */
#citacao {
  background: linear-gradient(135deg, #3d2b4a, #5c3d6e);
  padding: 90px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  justify-items: center;
}

.cit-left {
  justify-self: start;
}

.cit-left {}

.cit-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.8vw, 40px);
  font-style: italic;
  font-weight: 400;
  color: var(--lavanda-lt);
  line-height: 1.45;
  position: relative;
}

.cit-quote::before {
  content: '"';
  font-size: 120px;
  font-style: italic;
  position: absolute;
  top: -40px;
  left: -20px;
  color: rgba(201, 168, 212, .2);
  line-height: 1;
  pointer-events: none;
}

.cit-author {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cit-img {
  width: 100%;
  aspect-ratio: 4 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .3);
  object-fit: cover;
  max-height: 460px;
}

/* CONTATO */
#contato {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  border: 1px solid rgba(201, 168, 212, .2);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, transform .2s;
}

.contato-item:hover {
  border-color: var(--lavanda);
  transform: translateX(4px);
}

.contato-item-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contato-item-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lavanda);
  margin-bottom: 3px;
}

.contato-item-val {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.contato-form-box {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 40px;
  border: 1px solid rgba(201, 168, 212, .25);
  box-shadow: 0 12px 48px rgba(100, 60, 130, .08);
}

.contato-form-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.contato-form-box p {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(201, 168, 212, .35);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color .2s;
}

.form-input:focus {
  border-color: var(--lavanda);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.btn-form {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  background: var(--lavanda);
  color: var(--white);
  border: none;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(201, 168, 212, .45);
  transition: background .2s, transform .15s;
}

.btn-form:hover {
  background: #b090c0;
  transform: translateY(-1px);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  background: #25D366;
  color: var(--white);
  border: none;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  margin-top: 12px;
  transition: background .2s, transform .15s;
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
}

/* FOOTER */
footer {
  background: #2d2033;
  color: rgba(255, 255, 255, .7);
  padding: 52px 72px 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
}

.footer-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
}

.footer-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--lavanda-lt);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
}

/* WA FLOAT */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .45);
  transition: transform .2s;
  animation: pulse 2.8s ease infinite;
}

.wa-float:hover {
  transform: scale(1.12);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 8px 28px rgba(37, 211, 102, .45);
  }

  50% {
    box-shadow: 0 8px 44px rgba(37, 211, 102, .7);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  #hero,
  #sobre,
  #sessao-foto,
  #citacao,
  #contato {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 60px 24px 40px;
  }

  .hero-right {
    min-height: 360px;
  }

  section {
    padding: 64px 24px;
  }

  #numeros {
    padding: 36px 20px;
    flex-wrap: wrap;
  }

  .num-item {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 14px 0;
  }

  .espec-grid,
  .modal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  #citacao {
    padding: 64px 24px;
  }
}

@media (max-width: 540px) {

  .espec-grid,
  .modal-grid {
    grid-template-columns: 1fr;
  }
}