:root {
  --cream: #FFF7ED;
  --mint: #DCF1EB;
  --peach: #FFE6D8;
  --teal: #16A89B;
  --teal-deep: #0C6A66;
  --coral: #FF7A59;
  --coral-dark: #F65E3B;
  --amber: #FFB84D;
  --ink: #283733;
  --ink-soft: #5d6b66;
  --white: #ffffff;
  --radius: 44px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

h1,
h2,
h3,
.display {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 26px
}

a {
  color: inherit;
  text-decoration: none
}

::selection {
  background: var(--coral);
  color: #fff
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 247, 237, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(12, 106, 102, .08)
}

.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 26px;
  max-width: 1080px;
  margin: 0 auto
}

.logo {
  font-family: 'Bricolage Grotesque';
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--teal-deep);
  letter-spacing: -.03em
}

.logo span {
  color: var(--coral)
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center
}

.nav-links a:not(.btn) {
  font-size: .96rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color .2s
}

.nav-links a:not(.btn):hover {
  color: var(--teal-deep)
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: #fff;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: 'Nunito';
  font-weight: 700;
  font-size: .98rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 22px -10px rgba(255, 122, 89, .75);
  transition: transform .2s, box-shadow .2s, background .2s
}

.btn:hover {
  transform: translateY(-3px);
  background: var(--coral-dark);
  box-shadow: 0 16px 28px -10px rgba(255, 122, 89, .8)
}

.btn:focus-visible {
  outline: 3px solid var(--teal-deep);
  outline-offset: 3px
}

@media(max-width:760px) {
  .nav-links a:not(.btn) {
    display: none
  }
}

/* HERO */
.hero {
  position: relative;
  background: var(--cream);
  padding: 78px 0 96px;
  overflow: hidden
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 168, 155, .30), transparent 68%);
  top: -150px;
  right: -130px;
  animation: drift1 15s ease-in-out infinite
}

.hero::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 89, .26), transparent 68%);
  bottom: -180px;
  left: -140px;
  animation: drift2 18s ease-in-out infinite
}

@keyframes drift1 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-24px, 22px)
  }
}

@keyframes drift2 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(26px, -20px)
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid rgba(22, 168, 155, .25);
  color: var(--teal-deep);
  font-weight: 700;
  font-size: .82rem;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
  box-shadow: 0 6px 16px -10px rgba(12, 106, 102, .4)
}

.pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral)
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 800
}

.hero h1 .hl {
  color: var(--teal-deep);
  position: relative;
  white-space: nowrap
}

.hero p.lead {
  font-size: 1.16rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 16px;
  font-weight: 500
}

.hero-cta {
  margin: 30px 0 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap
}

.hero-note {
  font-size: .95rem;
  color: var(--ink);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px
}

.hero-note::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal)
}

/* SECCIONES APILADAS CON HOMBROS CURVOS */
section {
  position: relative;
  padding: 90px 0 84px
}

.rounded-top {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  margin-top: calc(var(--radius) * -1);
  box-shadow: 0 -10px 40px -22px rgba(12, 106, 102, .22)
}

.s-mint {
  background: var(--mint);
  z-index: 2
}

.s-teal {
  background: var(--teal-deep);
  color: #fff;
  z-index: 3
}

.s-peach {
  background: var(--peach);
  z-index: 4
}

.s-cream {
  background: var(--cream);
  z-index: 5
}

.s-sun {
  background: linear-gradient(135deg, #FFD27A 0%, var(--amber) 38%, var(--coral) 100%);
  z-index: 6
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px
}

.s-teal .eyebrow {
  color: var(--amber)
}

.s-sun .eyebrow {
  color: var(--teal-deep)
}

h2.sec-h {
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  margin-bottom: 16px;
  font-weight: 700
}

.s-mint h2.sec-h,
.s-peach h2.sec-h,
.s-cream h2.sec-h {
  color: var(--teal-deep)
}

.s-sun h2.sec-h {
  color: var(--ink)
}

.sec-intro {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 640px;
  font-weight: 500
}

.s-teal .sec-intro {
  color: rgba(255, 255, 255, .85)
}

/* CUANDO SERVIR — lista amable con check */
.check-list {
  list-style: none;
  margin-top: 40px;
  display: grid;
  gap: 14px;
  max-width: 780px
}

.check-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 10px 26px -18px rgba(12, 106, 102, .5);
  transition: transform .2s, box-shadow .2s
}

.check-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -18px rgba(12, 106, 102, .55)
}

.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  margin-top: 1px
}

/* ASESORIA — panel turquesa */
.asesoria-box {
  max-width: 760px
}

.s-teal p {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, .92);
  margin-bottom: 18px;
  font-weight: 500
}

.s-teal p:last-child {
  margin-bottom: 0
}

.s-teal h2.sec-h {
  color: #fff
}

.s-teal .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  color: #fff;
  margin-top: 30px
}

.s-teal .badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber)
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 34px 0 4px;
  max-width: 820px
}

.step {
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  padding: 24px 24px
}

.step .n {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--teal-deep);
  font-family: 'Bricolage Grotesque';
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 12px
}

.step h4 {
  font-family: 'Bricolage Grotesque';
  font-weight: 700;
  font-size: 1.12rem;
  color: #fff;
  margin-bottom: 6px
}

.step p {
  font-size: .99rem !important;
  color: rgba(255, 255, 255, .82) !important;
  margin-bottom: 0 !important;
  font-weight: 500
}

.steps-title {
  font-family: 'Bricolage Grotesque';
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-top: 34px
}

@media(max-width:680px) {
  .steps {
    grid-template-columns: 1fr
  }
}

/* QUIEN — foto circular */
.about-grid {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 46px;
  align-items: center
}

.about-photo {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  margin: 0 auto
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 -20px;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 22px 44px -22px rgba(12, 106, 102, .55);
  position: relative;
  z-index: 1
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px dashed var(--coral);
  z-index: 0
}

.about h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  color: var(--teal-deep);
  margin-bottom: 6px;
  font-weight: 800
}

.about .role {
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 18px;
  font-size: 1.02rem
}

.about p {
  color: var(--ink-soft);
  font-size: 1.06rem;
  font-weight: 500;
  margin-bottom: 14px
}

.about p:last-child {
  margin-bottom: 0
}

@media(max-width:760px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center
  }

  .about-photo::after {
    inset: -12px
  }
}

/* OPINIONES — tarjeta */
.quote-card {
  max-width: 760px;
  background: #fff;
  border-radius: 28px;
  padding: 46px 44px 40px;
  position: relative;
  box-shadow: 0 24px 50px -28px rgba(12, 106, 102, .45);
  margin-top: 38px
}

.quote-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 30px;
  font-family: 'Bricolage Grotesque';
  font-size: 6rem;
  color: var(--coral);
  opacity: .28;
  line-height: 1
}

.quote-card p.q {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 22px;
  position: relative;
  font-family: 'Bricolage Grotesque'
}

.quote-card .src {
  font-weight: 700;
  color: var(--teal-deep)
}

.quote-card .src span {
  display: block;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: .9rem;
  margin-top: 2px
}

.quote-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  font-weight: 700;
  color: var(--teal-deep);
  border-bottom: 2px solid var(--amber);
  padding-bottom: 2px;
  transition: color .2s
}

.quote-link:hover {
  color: var(--coral)
}

/* AGENDA — sunset */
.s-sun .final-in {
  max-width: 680px
}

.s-sun p {
  font-size: 1.16rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 18px;
  max-width: 600px
}

.s-sun .btn {
  background: var(--teal-deep);
  box-shadow: 0 12px 26px -10px rgba(12, 106, 102, .6);
  margin-top: 14px
}

.s-sun .btn:hover {
  background: #085451
}

.s-sun .small {
  font-size: .95rem;
  color: var(--teal-deep);
  font-weight: 700;
  margin-top: 18px
}

/* FOOTER */
footer {
  background: var(--teal-deep);
  color: #fff;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  margin-top: calc(var(--radius) * -1);
  padding: 64px 0 30px;
  position: relative;
  z-index: 7
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 38px;
  margin-bottom: 36px
}

.foot-logo {
  font-family: 'Bricolage Grotesque';
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px
}

.foot-logo span {
  color: var(--amber)
}

.foot-grid h4 {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  font-weight: 700
}

.foot-grid a,
.foot-grid p {
  display: block;
  color: rgba(255, 255, 255, .82);
  font-size: .96rem;
  margin-bottom: 8px;
  font-weight: 500;
  transition: color .2s
}

.foot-grid a:hover {
  color: var(--amber)
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding-top: 22px;
  font-size: .84rem;
  color: rgba(255, 255, 255, .6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 600
}

@media(max-width:680px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

/* reveal: oculto solo si hay JS; visible siempre sin JS o en impresión */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease
}

.js .reveal.in {
  opacity: 1;
  transform: none
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
  background: var(--teal);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px -10px rgba(12, 106, 102, .65);
  transition: transform .2s, background .2s
}

.wa-float:hover {
  transform: scale(1.08);
  background: var(--teal-deep)
}

.wa-float svg {
  width: 27px;
  height: 27px;
  fill: #fff
}

.wa-float:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }
}

@media print {
  .js .reveal {
    opacity: 1 !important;
    transform: none !important
  }
}