/* styles.css */
:root{
  --bg: #f6efe4;         /* beige */
  --panel: #fbf7f1;      /* crema */
  --ink: #2b2b2b;
  --muted: #6a6a6a;

  --pastel-1: #cfe8dd;   /* menta suave */
  --pastel-2: #ead7f3;   /* lila suave */
  --pastel-3: #f6d8c9;   /* durazno suave */
  --pastel-4: #d7e6f7;   /* azul suave */

  --stroke: rgba(43,43,43,.10);
  --shadow: 0 10px 30px rgba(32, 28, 22, .08);

  --radius: 18px;
  --radius-sm: 14px;
  --max: 1120px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 15% 0%, rgba(207,232,221,.65), transparent 55%),
              radial-gradient(900px 500px at 85% 10%, rgba(234,215,243,.55), transparent 50%),
              radial-gradient(900px 500px at 70% 95%, rgba(246,216,201,.55), transparent 50%),
              var(--bg);
  line-height: 1.55;
}

img{ max-width: 100%; display: block; }

.container{
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.skip{
  position: absolute;
  left: -999px;
  top: 0;
  padding: .6rem .9rem;
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 999px;
}
.skip:focus{ left: 1rem; top: 1rem; z-index: 10; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 9;
  backdrop-filter: blur(10px);
  background: rgba(246,239,228,.75);
  border-bottom: 1px solid var(--stroke);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: .9rem 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: .9rem;
  min-width: 280px;
}
.logo{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.9), transparent 60%),
    linear-gradient(135deg, var(--pastel-1), var(--pastel-4));
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  border: 1px solid rgba(255,255,255,.6);
}

.brand-kicker{
  margin: 0;
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .02em;
}
.brand-title{
  margin: .05rem 0 0 0;
  font-size: 1.02rem;
  line-height: 1.2;
}

.nav{
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a{
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: .92rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav a:hover{
  border-color: var(--stroke);
  background: rgba(251,247,241,.7);
}

.hero{
  padding: 2.2rem 0 1.2rem;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.4rem;
  align-items: stretch;
}

.hero-copy{
  background: rgba(251,247,241,.65);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.2rem;
  box-shadow: var(--shadow);
}

.hero-copy h2{
  margin: 0 0 .6rem 0;
  font-size: 1.9rem;
  letter-spacing: -0.02em;
}
.hero-copy p{
  margin: 0 0 1rem 0;
  color: rgba(43,43,43,.88);
}

.hero-badges{
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.05rem;
}
.badge{
  font-size: .86rem;
  color: rgba(43,43,43,.9);
  padding: .35rem .65rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.45);
}

.hero-cta{
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(43,43,43,.12);
  background: linear-gradient(135deg, rgba(207,232,221,.9), rgba(215,230,247,.9));
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.btn:hover{ transform: translateY(-1px); }
.btn.ghost{
  background: rgba(255,255,255,.35);
}

.hero-card{
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(251,247,241,.65);
  box-shadow: var(--shadow);
}
.hero-card img{
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
}
.hero-card figcaption{
  padding: .85rem 1rem;
  font-size: .9rem;
  color: var(--muted);
  border-top: 1px solid var(--stroke);
}

.section{
  padding: 2rem 0;
}
.section.alt{
  background: rgba(251,247,241,.50);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.section-head{
  margin-bottom: 1rem;
}
.section-head h3{
  margin: 0 0 .35rem 0;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}
.section-head p{
  margin: 0;
  color: var(--muted);
}

.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card{
  background: rgba(255,255,255,.40);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.15rem 1.15rem 1rem;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}
.card-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(246,216,201,.75), rgba(234,215,243,.65));
  border: 1px solid rgba(255,255,255,.55);
  margin-bottom: .6rem;
  font-size: 1.15rem;
}
.card h4{
  margin: 0 0 .4rem 0;
  font-size: 1.1rem;
}
.card p{
  margin: 0 0 .75rem 0;
  color: rgba(43,43,43,.88);
}
.mini-list{
  margin: 0 0 .8rem 1.05rem;
  padding: 0;
  color: var(--muted);
  font-size: .92rem;
}
.card-link{
  font-weight: 700;
  text-decoration: none;
  color: rgba(43,43,43,.92);
}
.card-link:hover{ text-decoration: underline; }

.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}
.split.reverse{
  grid-template-columns: 1fr 1fr;
}
.split.reverse .split-media{ order: 2; }
.split.reverse .split-text{ order: 1; }

.split-media img{
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  height: 420px;
  width: 100%;
  object-fit: cover;
}

.split-text{
  background: rgba(255,255,255,.35);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1.05rem;
}

.eyebrow{
  margin: 0 0 .25rem 0;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(43,43,43,.62);
}
.split-text h3{
  margin: 0 0 .55rem 0;
  font-size: 1.55rem;
}
.split-text p{
  margin: 0 0 .95rem 0;
  color: rgba(43,43,43,.88);
}

.pill-row{
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1rem;
}
.pill{
  padding: .42rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(251,247,241,.70);
  font-size: .9rem;
  color: rgba(43,43,43,.9);
}

.callouts{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}
.callout{
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.40);
  padding: .9rem .9rem .75rem;
}
.callout h4{
  margin: 0 0 .5rem 0;
  font-size: 1rem;
}
.callout ul{
  margin: 0 0 0 1.05rem;
  padding: 0;
  color: var(--muted);
  font-size: .92rem;
}

.flow{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
  margin-top: 1rem;
}
.flow-step{
  background: rgba(255,255,255,.35);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.05);
}
.flow-tag{
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(215,230,247,.9), rgba(207,232,221,.9));
  border: 1px solid rgba(255,255,255,.6);
  font-weight: 800;
  margin-bottom: .5rem;
}
.flow-step h4{
  margin: 0 0 .35rem 0;
  font-size: 1.05rem;
}
.flow-step p{
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.note{
  margin-top: 1rem;
  background: rgba(251,247,241,.70);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  color: rgba(43,43,43,.88);
}

.footer{
  padding: 1.4rem 0 2.2rem;
  border-top: 1px solid var(--stroke);
  background: rgba(246,239,228,.55);
}
.footer-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer p{
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}
.footer-links a{
  color: rgba(43,43,43,.85);
  text-decoration: none;
  font-weight: 700;
}
.footer-links a:hover{ text-decoration: underline; }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .split.reverse .split-media{ order: 1; }
  .split.reverse .split-text{ order: 2; }
  .split-media img{ height: 320px; }
  .callouts{ grid-template-columns: 1fr; }
  .flow{ grid-template-columns: 1fr; }
  .brand-title{ font-size: 1rem; }
}