/* ============================================
   Dayane Bezerra — Psicóloga Clínica
   Paleta: EBEFF2 / F7D7D0 / BF9984 / 8C162C / 730202 / 400101
   Tipografia: Cardo (serif) + Roboto (sans)
   ============================================ */

:root{
  --azul-neve:   #EBEFF2;
  --rosa-claro:  #F7D7D0;
  --nude:        #BF9984;
  --vinho:       #8C162C;
  --vinho-escuro:#730202;
  --marsala:     #400101;
  --branco:      #FFFDFC;
  --texto:       #3a2222;

  --serif: 'Cardo', Georgia, 'Times New Roman', serif;
  --sans: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:var(--sans);
  color:var(--texto);
  background:var(--branco);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}

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

h1,h2,h3{
  font-family:var(--serif);
  color:var(--vinho-escuro);
  font-weight:400;
  line-height:1.25;
  margin:0 0 1rem;
}

p{ margin:0 0 1.1rem; }

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

.narrow{ max-width:820px; }
.center{ text-align:center; }

/* ---------- Botões ---------- */
.btn{
  display:inline-block;
  font-family:var(--sans);
  font-weight:700;
  letter-spacing:.03em;
  text-transform:uppercase;
  font-size:.82rem;
  text-decoration:none;
  padding:1.05rem 2.1rem;
  border-radius:2px;
  border:2px solid transparent;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover{ transform:translateY(-2px); }

.btn-primary{
  background:var(--vinho);
  color:var(--branco);
  box-shadow:0 8px 20px rgba(140,22,44,.25);
}
.btn-primary:hover{ background:var(--vinho-escuro); }

.btn-light{
  background:var(--branco);
  color:var(--vinho-escuro);
  box-shadow:0 8px 20px rgba(0,0,0,.15);
}
.btn-light:hover{ background:var(--rosa-claro); }

.btn-outline{
  background:transparent;
  color:var(--branco);
  border-color:var(--branco);
}
.btn-outline:hover{ background:var(--branco); color:var(--vinho-escuro); }

.cta-wrap{ margin-top:2.75rem; }

/* ---------- Header ---------- */
.site-header{
  background:var(--branco);
  padding:14px 0;
  border-bottom:1px solid var(--rosa-claro);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.header-logo{ height:56px; width:auto; }
.crp{
  font-size:.72rem;
  letter-spacing:.08em;
  color:var(--nude);
  font-weight:500;
}

/* ---------- Hero ---------- */
.hero{
  background:linear-gradient(180deg, var(--rosa-claro) 0%, var(--azul-neve) 100%);
  padding:70px 0 90px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:56px;
  align-items:center;
}
.hero-text h1{
  font-size:clamp(2.1rem, 4vw, 3.1rem);
  display:flex;
  flex-direction:column;
  gap:.15em;
}
.hero-text h1 span:first-child{ color:var(--marsala); font-weight:700; }
.hero-sub{
  font-size:1.08rem;
  max-width:46ch;
  color:var(--texto);
}
.hero-photo img{
  border-radius:12px;
  box-shadow:0 30px 60px -20px rgba(64,1,1,.35);
  aspect-ratio:4/5;
  object-fit:cover;
  width:100%;
}

/* ---------- Seção: mente ---------- */
.section{ padding:90px 0; }
.section-mind{ background:var(--branco); }
.section-mind h2{
  font-size:clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom:1.6rem;
}
.section-mind p{ font-size:1.08rem; }
.section-mind .highlight{
  font-family:var(--serif);
  font-style:italic;
  font-size:1.3rem;
  color:var(--vinho);
  margin-top:1.8rem;
}

/* ---------- Seção: benefícios (mulher) ---------- */
.section-benefits{
  background:var(--vinho);
  color:var(--branco);
}
.section-benefits h2{
  color:var(--branco);
  font-size:clamp(1.7rem, 3vw, 2.3rem);
  max-width:820px;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:3rem;
}
.benefits-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}
.benefit-card{
  background:rgba(255,253,252,.08);
  border:1px solid rgba(255,253,252,.25);
  border-radius:10px;
  padding:32px 22px;
  text-align:center;
}
.benefit-icon{
  display:block;
  font-size:1.6rem;
  color:var(--rosa-claro);
  margin-bottom:14px;
}
.benefit-card p{
  font-size:.98rem;
  margin:0;
  color:var(--rosa-claro);
}

/* ---------- Seção: juntas ---------- */
.section-together{ background:var(--azul-neve); }
.section-together h2{
  font-size:clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom:1.8rem;
}
.section-together p{ font-size:1.05rem; }
.together-list{
  list-style:none;
  margin:2.2rem 0 0;
  padding:0;
  display:grid;
  gap:18px;
}
.together-list li{
  background:var(--branco);
  border-left:4px solid var(--vinho);
  padding:20px 24px;
  border-radius:4px;
  font-size:1.02rem;
}

/* ---------- Seção: terapia online ---------- */
.section-online{ background:var(--rosa-claro); }
.online-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:start;
}
.online-statement p{
  font-family:var(--serif);
  font-size:clamp(1.4rem, 2.6vw, 1.9rem);
  color:var(--marsala);
  line-height:1.4;
  margin:0;
}
.online-benefits{
  display:flex;
  flex-direction:column;
  gap:28px;
}
.online-benefit h3{
  font-size:1.2rem;
  color:var(--vinho);
  margin-bottom:.4rem;
}
.online-benefit p{ margin:0; font-size:.98rem; }

/* ---------- Seção: sobre ---------- */
.section-about{ background:var(--branco); }
.about-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:64px;
  align-items:center;
}
.about-photo img{
  border-radius:12px;
  aspect-ratio:4/5;
  object-fit:cover;
  width:100%;
  box-shadow:0 30px 60px -20px rgba(64,1,1,.3);
}
.eyebrow{
  display:block;
  font-size:.85rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--nude);
  font-weight:700;
  margin-bottom:.4rem;
}
.about-text h2{ font-size:clamp(1.9rem, 3.2vw, 2.6rem); }
.about-text p{ font-size:1.03rem; }

/* ---------- Footer ---------- */
.site-footer{
  background:var(--marsala);
  padding:56px 0 34px;
}
.footer-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:22px;
  text-align:center;
}
.footer-logo{ height:80px; width:auto; }
.footer-crp{
  font-size:.75rem;
  letter-spacing:.08em;
  color:var(--nude);
}
.footer-copy{
  font-size:.78rem;
  color:rgba(255,253,252,.55);
}

/* ---------- Responsivo ---------- */
@media (max-width: 900px){
  .hero-grid, .about-grid, .online-grid{
    grid-template-columns:1fr;
  }
  .hero-photo{ order:-1; max-width:340px; margin:0 auto; }
  .about-photo{ max-width:340px; margin:0 auto; }
  .benefits-grid{ grid-template-columns:repeat(2, 1fr); }
  .section{ padding:64px 0; }
}

@media (max-width: 520px){
  .benefits-grid{ grid-template-columns:1fr; }
  .btn{ width:100%; text-align:center; }
  .header-logo{ height:44px; }
}
