/* ══════════════════════════════════════════
   TOKENS & RESET
══════════════════════════════════════════ */
:root {
  --cream:    #f5f0e8;
  --cream-2:  #ede6d8;
  --warm:     #c8b49a;
  --warm-2:   #a8927a;
  --earth:    #6b5344;
  --earth-2:  #4a3728;
  --text:     #2c1f14;
  --text-2:   #6b5a4e;
  --white:    #fdfaf6;
  --green:    #25d366;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --r-sm:  .5rem;
  --r-md:  1rem;
  --r-lg:  1.5rem;
  --r-xl:  2.5rem;
  --r-full: 999px;

  --shadow-soft: 0 4px 24px rgba(44,31,20,.08);
  --shadow-card: 0 2px 16px rgba(44,31,20,.07);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ══════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════ */
.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--warm-2);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--earth-2);
  margin-bottom: 2.5rem;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--green);
  color: #fff;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  padding: .85rem 1.75rem;
  border-radius: var(--r-full);
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}

.btn-primary:hover {
  background: #1fb956;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
}

.btn-primary.btn-large {
  font-size: 1.05rem;
  padding: 1rem 2.25rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 400;
  color: var(--earth);
  border-bottom: 1px solid var(--warm);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}

.btn-secondary:hover { color: var(--earth-2); border-color: var(--earth); }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  animation: fadeUp .7s ease forwards;
  animation-delay: var(--d, 0s);
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245,240,232,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,180,154,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--earth-2);
  line-height: 1.2;
}

.logo-crp {
  font-size: .72rem;
  color: var(--text-2);
  letter-spacing: .04em;
}

.btn-header-whats {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--green);
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  padding: .6rem 1.25rem;
  border-radius: var(--r-full);
  transition: background .2s, transform .2s;
}

.btn-header-whats:hover { background: #1fb956; transform: translateY(-1px); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  min-height: 100vh;
  padding: 8rem 1.5rem 5rem;
  max-width: 1140px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(200,180,154,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(168,146,122,.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  flex: 1;
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--warm-2);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--earth-2);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--warm-2);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  flex: 0 0 auto;
  width: 340px;
}

.hero-photo-frame {
  border-radius: var(--r-xl) var(--r-xl) 50% 50%;
  overflow: hidden;
  background: var(--cream-2);
  border: 1px solid rgba(200,180,154,.4);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-placeholder,
.sobre-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.hero-photo-placeholder span,
.sobre-photo-placeholder span {
  font-size: .78rem;
  color: var(--text-2);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: -2.5rem;
  background: var(--earth-2);
  color: var(--cream);
  padding: .9rem 1.2rem;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.badge-txt {
  font-size: .7rem;
  opacity: .75;
  text-align: center;
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   AREAS
══════════════════════════════════════════ */
.areas {
  background: var(--white);
  padding: 6rem 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.area-card {
  background: var(--cream);
  border: 1px solid rgba(200,180,154,.3);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: transform .25s, box-shadow .25s;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.area-icon {
  width: 44px;
  height: 44px;
  color: var(--warm-2);
  margin-bottom: 1.25rem;
}

.area-icon svg { width: 100%; height: 100%; }

.area-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--earth-2);
  margin-bottom: .6rem;
}

.area-card p {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   SOBRE
══════════════════════════════════════════ */
.sobre {
  padding: 6rem 0;
  background: var(--cream);
}

.sobre-inner {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.sobre-photo-wrap {
  position: relative;
  flex: 0 0 320px;
}

.sobre-photo-placeholder {
  border-radius: var(--r-xl);
  background: var(--cream-2);
  border: 1px solid rgba(200,180,154,.4);
  aspect-ratio: 3/4;
  overflow: hidden;
}

.sobre-detalhe {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--warm);
  opacity: .35;
  pointer-events: none;
}

.sobre-bio {
  color: var(--text-2);
  margin-bottom: 1rem;
  font-size: .95rem;
  line-height: 1.8;
}

.sobre-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .1rem;
  margin-bottom: 2rem;
}

.sobre-badges li {
  font-size: .82rem;
  color: var(--earth);
  font-weight: 500;
  margin-right: 1.25rem;
}

/* ══════════════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════════════ */
.depoimentos {
  background: var(--cream-2);
  padding: 6rem 0;
}

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dep-card {
  background: var(--white);
  border: 1px solid rgba(200,180,154,.25);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dep-card--destaque {
  background: var(--earth-2);
  color: var(--cream);
  border-color: transparent;
}

.dep-card--destaque p,
.dep-card--destaque .dep-autor { color: rgba(245,240,232,.8); }

.dep-stars {
  color: #e8b84b;
  font-size: 1rem;
  letter-spacing: .1em;
}

.dep-card p { font-size: .9rem; line-height: 1.75; color: var(--text-2); font-style: italic; }

.dep-autor {
  font-size: .78rem;
  font-weight: 500;
  color: var(--warm-2);
  letter-spacing: .04em;
}

/* ══════════════════════════════════════════
   COMO FUNCIONA
══════════════════════════════════════════ */
.como-funciona {
  background: var(--white);
  padding: 6rem 0;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 2rem;
  text-align: center;
}

.step:first-child { padding-left: 0; }
.step:last-child  { padding-right: 0; }

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--warm);
  line-height: 1;
  margin-bottom: .75rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--earth-2);
  margin-bottom: .5rem;
}

.step p { font-size: .88rem; color: var(--text-2); line-height: 1.7; }

.step-divider {
  flex: 0 0 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, var(--warm), transparent);
  margin-top: 1.5rem;
  opacity: .4;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq {
  padding: 6rem 0;
  background: var(--cream);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid rgba(200,180,154,.35);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--earth-2);
  transition: color .2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--warm-2);
  flex-shrink: 0;
  transition: transform .25s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--earth); }

.faq-item p {
  padding-bottom: 1.25rem;
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════ */
.cta-final {
  position: relative;
  background: var(--earth-2);
  padding: 7rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(200,180,154,.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cta-final h2 em {
  font-style: italic;
  color: var(--warm);
}

.cta-final p {
  color: rgba(245,240,232,.65);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--cream-2);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(200,180,154,.4);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-crp { font-size: .75rem; color: var(--text-2); margin-top: .1rem; }

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: .85rem;
  color: var(--text-2);
  transition: color .2s;
}

.footer-links a:hover { color: var(--earth); }

.footer-copy { font-size: .75rem; color: var(--text-2); opacity: .6; }

/* ══════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════ */
.whats-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  background: var(--green);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}

.whats-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

/* pulse ring */
.whats-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: pulse 2s ease-out infinite;
  opacity: 0;
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 7rem;
    gap: 2.5rem;
  }

  .hero-actions { justify-content: center; }
  .hero-visual { width: 240px; }
  .hero-badge { left: -1rem; bottom: 1rem; }

  .areas-grid,
  .dep-grid { grid-template-columns: 1fr 1fr; }

  .sobre-inner { flex-direction: column; gap: 2.5rem; }
  .sobre-photo-wrap { flex: none; width: 100%; max-width: 300px; margin: 0 auto; }

  .faq-inner { grid-template-columns: 1fr; gap: 2rem; }

  .steps { flex-direction: column; gap: 2rem; }
  .step-divider { display: none; }
  .step { padding: 0; text-align: left; }
}

@media (max-width: 600px) {
  .areas-grid,
  .dep-grid { grid-template-columns: 1fr; }

  .btn-header-whats span { display: none; }

  .hero-title { font-size: 2.4rem; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }

  .br-desktop { display: none; }
}
