/* ==========================================================================
   Florecer Coaching — Marina Sabatini
   Paleta vibrante orgánica: coral, mostaza, verde salvia, arena.
   ========================================================================== */

:root {
  --coral: #ff6f59;
  --coral-dark: #e6543e;
  --mustard: #e8a33d;
  --sage: #8aa478;
  --sage-dark: #5f7a4d;
  --sand: #f3e9dc;
  --sand-alt: #ece0cd;
  --plum: #3c2a3e;
  --white: #fffaf4;

  --font-head: "Poppins", sans-serif;
  --font-body: "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; margin: 0 0 16px; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral-dark);
  font-weight: 700;
  margin: 0 0 14px;
}

/* ---------- Nav ---------- */
.nav {
  position: static;
  z-index: 100;
  background: rgba(255,250,244,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ecdfcc;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--sage-dark); }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 0.92rem; }
.nav-cta {
  background: var(--coral);
  color: #fff;
  padding: 9px 18px;
  border-radius: 100px;
  font-weight: 700;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--coral-dark); }

/* ---------- Hero ---------- */
.hero { padding: 70px 0 40px; background: linear-gradient(180deg, var(--sand) 0%, var(--white) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.hero-text h1 { font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1.18; color: var(--plum); }
.hero-text h1 em { color: var(--coral); font-style: normal; }
.hero-lead { font-size: 1.06rem; color: #6c5a6e; max-width: 50ch; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-media { position: relative; }
.hero-media img { border-radius: 24px; box-shadow: 0 30px 60px -28px rgba(60,42,62,0.35); }
.hero-badge {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  background: #fff; color: var(--plum);
  padding: 10px 22px; border-radius: 100px; font-size: 0.85rem; font-weight: 700;
  box-shadow: 0 12px 26px -10px rgba(60,42,62,0.3);
  white-space: nowrap;
  border: 2px solid var(--sage);
}

.btn-primary {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 100px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn-primary:hover { transform: translateY(-2px); background: var(--coral-dark); }
.btn-primary.full { width: 100%; text-align: center; border: none; cursor: pointer; font-family: inherit; font-size: 1rem; }

.btn-ghost {
  display: inline-block;
  border: 2px solid var(--sage);
  color: var(--sage-dark);
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 100px;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-ghost:hover { background: var(--sage); color: #fff; }

/* ---------- Historia ---------- */
.historia { background: var(--white); }
.historia-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.historia-img { height: 440px; border-radius: 24px; background-size: cover; background-position: center; }
.historia-text h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); max-width: 18ch; color: var(--plum); }
.historia-text p { color: #5c4d5e; margin-bottom: 16px; }
.firma { font-family: var(--font-head); font-style: italic; color: var(--coral-dark); font-size: 1.1rem; }

/* ---------- Servicios ---------- */
.servicios { background: var(--sand); }
.servicios h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); max-width: 20ch; margin-bottom: 44px; color: var(--plum); }
.planes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 26px; }
.plan {
  background: #fff;
  border-radius: 20px;
  padding: 34px 28px;
  position: relative;
  box-shadow: 0 16px 34px -24px rgba(60,42,62,0.25);
}
.plan-destacado { border: 2px solid var(--coral); }
.plan-badge {
  position: absolute; top: -13px; left: 28px;
  background: var(--coral); color: #fff;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700;
  padding: 5px 14px; border-radius: 100px;
}
.plan-icon { font-size: 1.8rem; margin-bottom: 12px; }
.plan h3 { font-size: 1.2rem; margin-bottom: 8px; }
.plan-desc { color: #6c5a6e; font-size: 0.92rem; margin-bottom: 18px; }
.plan-precio { font-weight: 700; font-size: 1.15rem; color: var(--sage-dark); margin-bottom: 20px; }
.plan-precio span { font-size: 0.78rem; font-weight: 500; color: #948198; }
.plan-cta { display: inline-block; font-weight: 700; color: var(--coral-dark); }
.plan-cta:hover { text-decoration: underline; }

/* ---------- Testimonios ---------- */
.testimonios h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); max-width: 22ch; margin-bottom: 44px; color: var(--plum); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }
.testi {
  background: var(--sand-alt);
  border-radius: 20px;
  padding: 26px;
  text-align: center;
}
.testi-img {
  width: 64px; height: 64px; border-radius: 50%;
  background-size: cover; background-position: center;
  margin: 0 auto 16px;
  border: 3px solid #fff;
  box-shadow: 0 6px 14px rgba(60,42,62,0.2);
}
.testi p { font-size: 0.95rem; color: #5c4d5e; margin: 0 0 14px; font-style: italic; }
.testi footer { font-size: 0.85rem; font-weight: 700; color: var(--sage-dark); }

/* ---------- CTA emocional ---------- */
.cta-emocional { background: var(--sage); padding: 70px 0; text-align: center; }
.cta-inner h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 12px; }
.cta-inner p { color: #eaf1e4; margin-bottom: 26px; font-size: 1.02rem; }
.cta-emocional .btn-primary { background: #fff; color: var(--coral-dark); }
.cta-emocional .btn-primary:hover { background: var(--sand); }

/* ---------- Contacto ---------- */
.contacto { background: var(--white); }
.contacto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contacto h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); max-width: 18ch; color: var(--plum); }
.contacto-lead { color: #6c5a6e; margin-bottom: 24px; }
.contacto-datos p { margin: 8px 0; font-size: 0.94rem; }

.form { display: flex; flex-direction: column; gap: 16px; background: var(--sand); padding: 30px; border-radius: 20px; }
.form label { display: flex; flex-direction: column; font-size: 0.85rem; font-weight: 700; gap: 6px; color: var(--plum); }
.form input, .form textarea {
  font-family: inherit; font-size: 0.95rem; padding: 11px 13px;
  border-radius: 12px; border: 1px solid #e0d2ba; background: #fff; resize: vertical;
}
.form input:focus, .form textarea:focus { outline: 2px solid var(--sage); outline-offset: 1px; }
.form-note { font-size: 0.76rem; color: #948a78; text-align: center; margin: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--plum); color: #cbb9cc; padding: 36px 0; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.footer .logo { color: #fff; }
.footer p { font-size: 0.82rem; margin: 0; }
.footer-credit a { color: var(--mustard); }
.footer-credit a:hover { text-decoration: underline; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .historia-grid, .contacto-grid { grid-template-columns: 1fr; }
  .historia-img { height: 320px; order: -1; }
  .hero-media { order: -1; }
}
@media (max-width: 720px) {
  .nav-links { gap: 12px; font-size: 0.8rem; }
  .nav-links a:not(.nav-cta) { display: none; }
  .section { padding: 56px 0; }
}
