/* ============================================================
   NAYARA HOME — CSS COMPLETO
   Todos os 8 blocos da página principal
   ============================================================ */

/* ── UTILITÁRIOS ── */
.nr-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.nr-section {
  padding: 100px 0;
}

.nr-section--alt {
  background: var(--cream);
}

.nr-section--dark {
  background: var(--text);
}

.nr-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: 16px;
}

.nr-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.nr-title em {
  font-style: italic;
  color: var(--rose-dk);
}

.nr-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
  max-width: 560px;
}

/* ── BOTÕES ── */
.nr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 100px;
  padding: 16px 32px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  min-height: 52px;
  min-width: 44px;
  white-space: nowrap;
}

.nr-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.3);
}

.nr-btn--wa {
  background: var(--green-wa);
  color: var(--white);
}

.nr-btn--wa:hover {
  background: var(--green-wa-dk);
}

.nr-btn--outline {
  background: transparent;
  color: var(--rose-dk);
  border: 1.5px solid var(--rose-dk);
  box-shadow: none;
}

.nr-btn--outline:hover {
  background: var(--rose-lt);
  box-shadow: none;
  transform: translateY(-1px);
}

/* ============================================================
   BLOCO 1 — HERO
   ============================================================ */
.nr-hero {
  background: var(--cream);
  padding: 120px 0 80px;
  overflow: hidden;
  position: relative;
}

.nr-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,123,132,.12) 0%, transparent 70%);
  pointer-events: none;
}

.nr-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.nr-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose-dk);
  background: var(--rose-lt);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.nr-hero__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  display: inline-block;
}

.nr-hero__headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}

.nr-hero__headline em {
  font-style: italic;
  color: var(--rose-dk);
}

.nr-hero__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 480px;
}

.nr-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.nr-hero__location {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.nr-hero__location-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Coluna da foto */
.nr-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.nr-hero__photo-wrap {
  position: relative;
  width: 420px;
  height: 520px;
  border-radius: 200px 200px 140px 140px;
  overflow: hidden;
  background: var(--rose-lt);
}

.nr-hero__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Placeholder quando não há foto */
.nr-hero__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--rose);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  padding: 40px;
}

.nr-hero__photo-placeholder svg {
  opacity: .4;
}

/* Selo flutuante */
.nr-hero__badge {
  position: absolute;
  bottom: 32px;
  left: -20px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.nr-hero__badge-icon {
  font-size: 24px;
  line-height: 1;
}

.nr-hero__badge-text {
  font-family: 'DM Sans', sans-serif;
}

.nr-hero__badge-text strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.nr-hero__badge-text span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

/* ============================================================
   BLOCO 2 — IDENTIFICAÇÃO EMOCIONAL
   ============================================================ */
.nr-ident {
  background: var(--white);
  padding: 90px 0;
}

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

.nr-ident__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.nr-ident__card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .2s;
  cursor: default;
}

.nr-ident__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
}

.nr-ident__card-icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}

.nr-ident__card-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-lt);
  font-weight: 300;
}

.nr-ident__card-text strong {
  color: var(--text);
  font-weight: 500;
}

.nr-ident__close {
  background: var(--rose-lt);
  border-radius: var(--radius);
  padding: 36px 48px;
  text-align: center;
}

.nr-ident__close-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 8px;
}

.nr-ident__close-text em {
  font-style: italic;
  color: var(--rose-dk);
}

.nr-ident__close-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
}

/* ============================================================
   BLOCO 3 — APRESENTAÇÃO
   ============================================================ */
.nr-about {
  background: var(--cream);
  padding: 100px 0;
}

.nr-about__inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 60px;
  align-items: start;
}

.nr-about__divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  min-height: 300px;
}

.nr-about__quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 3px solid var(--rose);
}

.nr-about__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 16px;
}

.nr-about__creds {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.nr-about__cred-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.nr-about__cred-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  margin-top: 8px;
}

.nr-about__cred-text strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}

.nr-about__cred-text span {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
}

/* ============================================================
   BLOCO 4 — SERVIÇOS
   ============================================================ */
.nr-services {
  background: var(--white);
  padding: 100px 0;
}

.nr-services__header {
  text-align: center;
  margin-bottom: 60px;
}

.nr-services__subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--muted);
  margin-top: 12px;
}

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

.nr-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .2s;
  position: relative;
  overflow: hidden;
}

.nr-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose);
}

/* Card destaque — Saúde Sexual */
.nr-service-card--featured {
  background: linear-gradient(135deg, var(--text) 0%, #3d2a27 100%);
  border-color: transparent;
  color: var(--white);
}

.nr-service-card--featured .nr-service-card__title {
  color: var(--white);
}

.nr-service-card--featured .nr-service-card__desc {
  color: rgba(255,255,255,.65);
}

.nr-service-card--featured .nr-service-card__link {
  color: var(--rose);
}

.nr-service-card--featured::before {
  content: 'DESTAQUE';
  position: absolute;
  top: 20px;
  right: -28px;
  background: var(--rose);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .14em;
  padding: 4px 36px;
  transform: rotate(45deg);
}

.nr-service-card__icon {
  font-size: 32px;
  margin-bottom: 18px;
  line-height: 1;
}

.nr-service-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}

.nr-service-card__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 20px;
}

.nr-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--rose-dk);
  transition: gap .2s var(--ease);
}

.nr-service-card:hover .nr-service-card__link {
  gap: 10px;
}

/* ============================================================
   BLOCO 5 — QUEBRA DE OBJEÇÕES (FAQ)
   ============================================================ */
.nr-faq {
  background: var(--cream);
  padding: 100px 0;
}

.nr-faq__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.nr-faq__sticky {
  position: sticky;
  top: 100px;
}

.nr-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nr-faq__item {
  border-bottom: 1px solid var(--border);
}

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

.nr-faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
}

.nr-faq__question:hover {
  color: var(--rose-dk);
}

.nr-faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--rose-dk);
  transition: transform .3s var(--ease), background .2s, border-color .2s;
}

.nr-faq__item.open .nr-faq__icon {
  transform: rotate(45deg);
  background: var(--rose-lt);
  border-color: var(--rose);
}

.nr-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}

.nr-faq__answer-inner {
  padding: 0 0 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
}

.nr-faq__item.open .nr-faq__answer {
  max-height: 200px;
}

/* ============================================================
   BLOCO 6 — PROVA SOCIAL
   ============================================================ */
.nr-social {
  background: var(--white);
  padding: 100px 0;
}

.nr-social__header {
  text-align: center;
  margin-bottom: 60px;
}

.nr-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 64px;
  box-shadow: var(--shadow-sm);
}

.nr-stat {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
}

.nr-stat__number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--rose-dk);
  line-height: 1;
  margin-bottom: 8px;
}

.nr-stat__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.4;
}

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

.nr-testimonial {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
}

.nr-testimonial__stars {
  color: var(--rose);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.nr-testimonial__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-lt);
  margin-bottom: 20px;
}

.nr-testimonial__author {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.nr-testimonial__role {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  margin-top: 2px;
}

/* ============================================================
   BLOCO 7 — LEAD MAGNET
   ============================================================ */
.nr-lead {
  background: linear-gradient(135deg, var(--text) 0%, #3d2a27 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.nr-lead::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,123,132,.15) 0%, transparent 70%);
  pointer-events: none;
}

.nr-lead__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.nr-lead__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
  display: block;
}

.nr-lead__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.nr-lead__title em {
  font-style: italic;
  color: var(--rose);
}

.nr-lead__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.65);
  font-weight: 300;
}

/* Formulário */
.nr-lead__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

.nr-lead__form-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.nr-lead__form-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 28px;
}

.nr-form-group {
  margin-bottom: 16px;
}

.nr-form-group label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.nr-form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.nr-form-group input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201,123,132,.12);
}

.nr-form-group input::placeholder {
  color: var(--border);
}

.nr-lead__form .nr-btn {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}

.nr-form-privacy {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  font-weight: 300;
}

/* ============================================================
   BLOCO 8 — CTA FINAL
   ============================================================ */
.nr-cta-final {
  background: var(--rose-lt);
  padding: 100px 0;
  text-align: center;
}

.nr-cta-final__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.nr-cta-final__title em {
  font-style: italic;
  color: var(--rose-dk);
}

.nr-cta-final__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 40px;
}

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================================ */
.nr-float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  transition: transform .25s var(--ease), box-shadow .25s;
  text-decoration: none;
}

.nr-float-wa:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 36px rgba(37,211,102,.5);
}

.nr-float-wa svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* ============================================================
   RESPONSIVO — TABLET ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .nr-container { padding: 0 32px; }
  .nr-section { padding: 80px 0; }

  .nr-hero { padding: 100px 0 60px; }
  .nr-hero__inner { gap: 40px; padding: 0 32px; }
  .nr-hero__photo-wrap { width: 360px; height: 440px; }

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

  .nr-faq__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nr-faq__sticky { position: static; }

  .nr-about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nr-about__divider { display: none; }

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

/* ============================================================
   RESPONSIVO — MOBILE ≤ 767px
   ============================================================ */
@media (max-width: 767px) {
  .nr-container { padding: 0 20px; }
  .nr-section { padding: 64px 0; }

  /* Hero */
  .nr-hero { padding: 80px 0 48px; }
  .nr-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
    text-align: center;
  }
  .nr-hero__sub { margin-left: auto; margin-right: auto; }
  .nr-hero__ctas { align-items: center; }
  .nr-hero__location { justify-content: center; }
  .nr-hero__visual { order: -1; }
  .nr-hero__photo-wrap { width: 280px; height: 340px; }
  .nr-hero__badge { left: 50%; transform: translateX(-50%); bottom: -20px; }

  /* Grids → 1 coluna */
  .nr-ident__grid { grid-template-columns: 1fr; }
  .nr-services__grid { grid-template-columns: 1fr; }
  .nr-stats { grid-template-columns: 1fr; }
  .nr-testimonials { grid-template-columns: 1fr; }

  /* Lead form */
  .nr-lead { padding: 64px 0; }
  .nr-lead__form { padding: 28px 24px; }

  /* CTA final */
  .nr-cta-final { padding: 64px 0; }

  /* Float WA */
  .nr-float-wa { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}
