:root {
  --arena: #FBF6EF;
  --coral: #F0997B;
  --coral-dark: #993C1D;
  --coral-bg: #FAECE7;
  --sage: #9FE1CB;
  --sage-dark: #0F6E56;
  --sage-bg: #E1F5EE;
  --carbon: #2C2C2A;
  --gray: #5F5E5A;
  --gray-light: #D3D1C7;
  --white: #FFFFFF;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-title: 'Source Serif 4', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--carbon);
  background: var(--arena);
  line-height: 1.6;
}

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

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { opacity: 0.9; }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--coral-dark); color: var(--white); }
.btn-lg { padding: 14px 32px; font-size: 16px; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  background: rgba(251,246,239,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 0.5px solid var(--gray-light);
  z-index: 100;
}
.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { font-family: var(--font-title); font-size: 19px; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a:not(.btn) { font-size: 14px; color: var(--gray); }
.nav-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--carbon); }

/* HERO */
.hero {
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--coral-bg);
  color: var(--coral-dark);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 2rem;
}

/* VALUES */
.values {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.value-card {
  background: var(--white);
  border: 0.5px solid var(--gray-light);
  border-radius: 16px;
  padding: 1.75rem;
}
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.icon-coral { background: var(--coral-bg); color: var(--coral-dark); }
.icon-sage { background: var(--sage-bg); color: var(--sage-dark); }
.value-title { font-size: 16px; font-weight: 500; margin-bottom: 6px; }
.value-text { font-size: 14px; color: var(--gray); }

/* ABOUT */
.about { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem 3rem; }
.about-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  border: 0.5px solid var(--gray-light);
}
.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--coral-dark);
  font-family: var(--font-title);
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.about-name { font-size: 16px; font-weight: 500; margin-bottom: 4px; }
.about-role { font-size: 14px; color: var(--gray); margin-bottom: 14px; }
.about-text { font-size: 15px; color: var(--gray); }
.about-right { text-align: right; }
.price-label { font-size: 13px; color: #888780; margin-bottom: 4px; }
.price-value { font-family: var(--font-title); font-size: 30px; margin-bottom: 12px; }
.price-note { font-size: 12px; color: #888780; }

/* AGENDA */
.agenda { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem 3rem; }
.section-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: 1rem;
}
.calendar-wrap {
  background: var(--white);
  border: 0.5px solid var(--gray-light);
  border-radius: 16px;
  overflow: hidden;
}
.calendar-placeholder {
  padding: 3.5rem 2rem;
  text-align: center;
  color: #888780;
}
.calendar-placeholder svg { margin-bottom: 0.75rem; }
.calendar-placeholder p { font-size: 14px; }

/* FAQ */
.faq { max-width: 700px; margin: 0 auto; padding: 0 1.5rem 4rem; }
.faq-item {
  border-bottom: 0.5px solid var(--gray-light);
  padding: 1.1rem 0;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--carbon);
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-body);
}
.faq-q span { color: var(--coral-dark); font-size: 18px; transition: transform 0.2s ease; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a {
  font-size: 14px;
  color: var(--gray);
  margin-top: 0.75rem;
  display: none;
  line-height: 1.6;
}
.faq-item.open .faq-a { display: block; }

/* FOOTER */
.footer {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid var(--gray-light);
}
.footer span { font-size: 13px; color: #888780; }
.footer-links { display: flex; gap: 14px; }
.footer-links a { color: var(--gray); display: flex; }

/* RESPONSIVE */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--arena);
    padding: 1.5rem;
    border-bottom: 0.5px solid var(--gray-light);
    gap: 1rem;
  }
  .hero h1 { font-size: 28px; }
  .about-card { grid-template-columns: 1fr; }
  .about-right { text-align: left; }
  .process-grid { grid-template-columns: 1fr; }
}

/* SKIP LINK */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--carbon);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 0 0 8px 0;
  z-index: 200;
  font-size: 14px;
}
.skip-link:focus { left: 0; }

/* PROCESS */
.process { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem 3rem; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.process-step { position: relative; padding-left: 4px; }
.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--coral-bg);
  color: var(--coral-dark);
  font-family: var(--font-title);
  font-size: 15px;
  margin-bottom: 10px;
}
.process-title { font-size: 15px; font-weight: 500; margin-bottom: 6px; }
.process-text { font-size: 14px; color: var(--gray); line-height: 1.55; }

/* PRIVACY NOTE */
.privacy-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray);
  margin-top: 0.9rem;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-btn {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  z-index: 150;
  transition: transform 0.15s ease;
}
.whatsapp-btn:hover { transform: scale(1.06); }

