/* ==========================================================================
   KUÁNTO — Propuesta C: "Cálida y Amigable"
   Fondo crema, verde esmeralda + coral, formas redondeadas y tono cercano.
   ========================================================================== */

:root {
  --green: #13294b;
  --green-deep: #1d3a6b;
  --green-dark: #0c1c33;
  --coral: #ff7a59;
  --coral-soft: #ffeae2;
  --sun: #f7b733;
  --cream: #fbf9f4;
  --mint: #e9eef7;
  --peach: #fff3ec;
  --ink: #27382f;
  --slate: #5f6f66;
  --line: #e8e4d8;
  --white: #ffffff;

  --display: "Baloo 2", system-ui, sans-serif;
  --body: "Nunito", system-ui, sans-serif;

  /* Alias de compatibilidad: estilos inline heredados de la v1 */
  --blue: var(--green);
  --navy: var(--ink);

  --radius: 22px;
  --radius-lg: 32px;

  --shadow-sm: 0 2px 10px rgba(39, 56, 47, 0.06);
  --shadow-md: 0 10px 32px rgba(39, 56, 47, 0.1);
  --shadow-lg: 0 22px 56px rgba(39, 56, 47, 0.14);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Color de los textos "eyebrow" (badges de texto) — Azul confianza */
  --badge: var(--green);
  --badge-soft: var(--mint);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  font-family: var(--body);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); line-height: 1.15; font-weight: 700; letter-spacing: -0.01em; }

.container { width: min(1160px, 100% - 48px); margin-inline: auto; }

section { padding: 100px 0; position: relative; }
.section-mint { background: var(--mint); border-radius: 56px; margin: 0 16px; }
.section-peach { background: var(--peach); border-radius: 56px; margin: 0 16px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--badge);
  background: var(--badge-soft);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.accent { color: var(--green); }
.accent-coral { color: var(--coral); }

.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head .section-brand-logo { height: 46px; width: auto; margin-bottom: 18px; }
.section-head.centered .section-brand-logo { margin-inline: auto; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); margin-bottom: 14px; }
.section-head p { color: var(--slate); font-size: 1.1rem; }

/* ---------- Botones amigables ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s var(--bounce), box-shadow 0.3s var(--ease), background-color 0.3s, color 0.3s, border-color 0.3s;
}
.btn:active { transform: scale(0.94); }
.btn .arrow { transition: transform 0.25s var(--bounce); }
.btn:hover .arrow { transform: translateX(5px); }

.btn-primary { background: var(--green); color: var(--white); box-shadow: 0 10px 26px rgba(19, 41, 75, 0.32); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 36px rgba(19, 41, 75, 0.42); }
.btn-primary:hover:active { transform: scale(0.94); }

.btn-coral { background: var(--coral); color: var(--white); box-shadow: 0 10px 26px rgba(255, 122, 89, 0.35); }
.btn-coral:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 36px rgba(255, 122, 89, 0.45); }

.btn-ghost { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-3px); }

.btn-light { background: var(--white); color: var(--green-dark); }
.btn-light:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-md); }

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: ripple 0.55s ease-out forwards;
  pointer-events: none;
}
.btn-ghost .ripple { background: rgba(19, 41, 75, 0.18); }
@keyframes ripple { to { transform: scale(3.2); opacity: 0; } }

.btn.is-loading { pointer-events: none; opacity: 0.85; }
.btn .spinner { width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,0.35); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(251, 249, 244, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 30px rgba(39, 56, 47, 0.07); }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 84px; }
.nav-logo { display: flex; align-items: center; height: 100%; }
.nav-logo img { height: 100%; width: auto; transition: transform 0.3s var(--bounce); }
.nav-logo:hover img { transform: scale(1.06) rotate(-2deg); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--ink);
  transition: color 0.2s, background-color 0.2s, transform 0.2s var(--bounce);
}
.nav-links a.nav-link:hover { color: var(--green); background: var(--mint); transform: translateY(-2px); }
.nav-links a.nav-link .caret { font-size: 0.7em; transition: transform 0.25s var(--ease); }
.nav-links li:hover a.nav-link .caret,
.nav-links li:focus-within a.nav-link .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--bounce), visibility 0.25s;
}
.nav-links li:hover .dropdown,
.nav-links li:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 14px; border-radius: 14px; font-size: 0.95rem; font-weight: 800; color: var(--ink); transition: background-color 0.18s, color 0.18s, transform 0.18s var(--bounce); }
.dropdown a:hover { background: var(--mint); color: var(--green); transform: translateX(5px); }
.dropdown .dd-tag { display: block; font-size: 0.78rem; font-weight: 600; color: var(--slate); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 12px 24px; font-size: 0.92rem; }
/* CTA del menú con el tono marino del logo Kuánto */
.nav-cta .btn-coral,
.nav-cta .btn-primary {
  background: #13294b;
  color: #fff;
  box-shadow: 0 10px 26px rgba(19, 41, 75, 0.32);
}
.nav-cta .btn-coral:hover,
.nav-cta .btn-primary:hover {
  background: #2479c9;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(19, 41, 75, 0.42);
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 25px; height: 3px; border-radius: 3px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: 180px 0 90px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.7rem); margin-bottom: 20px; }
.hero-sub { font-size: 1.18rem; color: var(--slate); max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }

.hero-stats { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats .stat {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 22px;
  transition: transform 0.3s var(--bounce), border-color 0.3s;
}
.hero-stats .stat:hover { transform: translateY(-4px) rotate(-1deg); border-color: var(--green); }
.hero-stats .stat-ico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}
.hero-stats .stat-ico.i-green { background: var(--mint); color: var(--green-deep); }
.hero-stats .stat-ico.i-coral { background: var(--coral-soft); color: var(--coral); }
.hero-stats .stat-ico.i-sun { background: var(--peach); color: #d98a12; }
.hero-stats .stat:hover .stat-ico { transform: rotate(-6deg) scale(1.06); transition: transform 0.3s var(--bounce); }
.hero-stats .num { font-family: var(--display); font-size: 1.6rem; font-weight: 700; color: var(--green-deep); line-height: 1.1; }
.hero-stats .num span { color: var(--coral); }
.hero-stats .label { font-size: 0.82rem; color: var(--slate); font-weight: 700; }

/* Visual del hero: foto blob + chips flotantes */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 460px; }
.hero-visual .blob-bg {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 42% 58% 55% 45% / 50% 42% 58% 50%;
  background: linear-gradient(140deg, var(--mint), var(--peach) 80%);
  animation: blob-morph 14s ease-in-out infinite alternate;
}
@keyframes blob-morph {
  0% { border-radius: 42% 58% 55% 45% / 50% 42% 58% 50%; transform: rotate(0deg); }
  100% { border-radius: 55% 45% 42% 58% / 45% 55% 45% 55%; transform: rotate(6deg); }
}
.hero-visual > img { position: relative; width: min(430px, 90%); mix-blend-mode: multiply; animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.chip-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  animation: floaty 6s ease-in-out infinite;
}
.chip-float .dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.chip-float.c1 { top: 8%; right: 2%; animation-delay: 0.6s; }
.chip-float.c1 .dot { background: var(--green); animation: pulse-dot 1.8s ease-in-out infinite; }
.chip-float.c2 { bottom: 16%; left: -2%; animation-delay: 1.2s; }
.chip-float.c2 .dot { background: var(--coral); }
.chip-float.c3 { bottom: -2%; right: 10%; animation-delay: 1.8s; }
.chip-float.c3 .dot { background: var(--sun); }
@keyframes pulse-dot { 0%, 100% { box-shadow: 0 0 0 0 rgba(19, 41, 75, 0.45); } 50% { box-shadow: 0 0 0 8px rgba(19, 41, 75, 0); } }

/* ---------- Marquee de aliados (a color) ---------- */
.trust { padding: 30px 0 80px; }
.trust p { text-align: center; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate); margin-bottom: 30px; }
.marquee { position: relative; overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent); }
.marquee-track { display: flex; align-items: center; gap: clamp(48px, 7vw, 96px); width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-track img { height: 32px; width: auto; filter: grayscale(1) opacity(0.5); transition: filter 0.3s, transform 0.3s var(--bounce); }
.marquee-track img:hover { filter: none; transform: translateY(-4px) scale(1.06); }

/* ---------- Tarjetas ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: transform 0.35s var(--bounce), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.card:hover { transform: translateY(-8px) rotate(-0.6deg); box-shadow: var(--shadow-md); border-color: rgba(19, 41, 75, 0.45); }

.card .icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  transition: transform 0.4s var(--bounce);
}
.card:hover .icon { transform: scale(1.12) rotate(-8deg); }
.icon.i-green { background: var(--mint); color: var(--green-deep); }
.icon.i-coral { background: var(--coral-soft); color: var(--coral); }
.icon.i-sun { background: #fdf2d9; color: #c98a0a; }
.card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.card p { font-size: 0.99rem; color: var(--slate); }

/* ---------- Servicios ---------- */
.service-card { position: relative; display: flex; flex-direction: column; }
.service-card .more {
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card .more .arrow { transition: transform 0.25s var(--bounce); }
.service-card:hover .more .arrow { transform: translateX(6px); }

/* Tarjetas con fotografía */
.photo-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 26px; }
.photo-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--bounce), box-shadow 0.35s, border-color 0.35s;
}
.photo-card:hover { transform: translateY(-8px) rotate(0.5deg); box-shadow: var(--shadow-md); border-color: rgba(255, 122, 89, 0.5); }
.photo-card .pc-media { position: relative; min-height: 220px; overflow: hidden; }
.photo-card .pc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.28); transition: transform 0.6s var(--ease); }
.photo-card:hover .pc-media img { transform: scale(1.36); }
.photo-card .pc-body { padding: 30px 28px; display: flex; flex-direction: column; }
.photo-card .pc-body img.brand-logo { height: 38px; width: auto; align-self: flex-start; margin-bottom: 14px; }
.photo-card .pc-body p { font-size: 0.97rem; color: var(--slate); }
.photo-card .more { margin-top: auto; padding-top: 16px; font-family: var(--display); font-weight: 700; color: var(--coral); display: inline-flex; gap: 8px; align-items: center; }
.photo-card .more .arrow { transition: transform 0.25s var(--bounce); }
.photo-card:hover .more .arrow { transform: translateX(6px); }

/* ---------- Nosotros ---------- */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: center; }
.about-media { position: relative; display: flex; justify-content: center; }
.about-media .blob-bg {
  position: absolute;
  inset: 6% 4%;
  border-radius: 48% 52% 44% 56% / 52% 46% 54% 48%;
  background: var(--peach);
  animation: blob-morph 16s ease-in-out infinite alternate;
}
.about-media .photo-frame { position: relative; }
.photo-frame {
  border-radius: 40px;
  overflow: hidden;
  max-width: 460px;
  aspect-ratio: 15 / 11;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.photo-frame img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1); transition: transform 0.6s var(--ease); }
.photo-frame:hover img { transform: scale(1.06); }

.about-copy p { color: var(--slate); font-size: 1.07rem; margin-bottom: 16px; }

.mv-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.mv-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.3s var(--bounce), border-color 0.3s;
}
.mv-card:hover { transform: translateY(-5px) rotate(-0.8deg); border-color: var(--green); }
.mv-card h3 { font-size: 1.12rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.mv-card h3 .dot { width: 14px; height: 14px; border-radius: 50%; flex: none; }
.mv-card:nth-child(1) h3 .dot { background: var(--green); }
.mv-card:nth-child(2) h3 .dot { background: var(--coral); }
.mv-card p { font-size: 0.93rem; color: var(--slate); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: 16px; }
.faq-item {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--bounce), box-shadow 0.3s;
}
.faq-item:hover { transform: translateY(-2px); }
.faq-item.is-open { border-color: var(--green); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  background: none;
  border: 0;
  padding: 24px 26px;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.faq-q .faq-num {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-deep);
  font-size: 0.86rem;
  display: grid;
  place-items: center;
  transition: background-color 0.3s, color 0.3s, transform 0.3s var(--bounce);
}
.faq-item.is-open .faq-num { background: var(--green); color: var(--white); transform: rotate(360deg); }
.faq-q .chev { margin-left: auto; flex: none; color: var(--coral); transition: transform 0.35s var(--bounce); }
.faq-item.is-open .chev { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p, .faq-a ul { padding: 0 26px 24px 80px; color: var(--slate); font-size: 0.99rem; }
.faq-a ul { list-style: none; display: grid; gap: 8px; }
.faq-a ul li::before { content: "✓"; color: var(--green); font-weight: 800; margin-right: 10px; }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.contact-line { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 2px dashed var(--line); }
.contact-line .ico {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 16px;
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--bounce);
}
.contact-line:hover .ico { transform: scale(1.12) rotate(-6deg); }
.contact-line:nth-child(1) .ico { background: var(--mint); color: var(--green-deep); }
.contact-line:nth-child(2) .ico { background: var(--coral-soft); color: var(--coral); }
.contact-line:nth-child(3) .ico { background: #e9f8e4; color: #3d9938; }
.contact-line:nth-child(4) .ico { background: #fdf2d9; color: #c98a0a; }
.contact-line .t { font-size: 0.76rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate); }
.contact-line .v { font-weight: 800; color: var(--ink); }
.contact-line a.v:hover { color: var(--green); }

.socials { display: flex; gap: 12px; margin-top: 26px; }
.socials a {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 2px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  transition: transform 0.3s var(--bounce), background-color 0.25s, color 0.25s, border-color 0.25s;
}
.socials a:hover { transform: translateY(-5px) rotate(-6deg); background: var(--green); border-color: var(--green); color: var(--white); }

.contact-form {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 0.9rem; font-weight: 800; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 18px;
  border: 2px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(19, 41, 75, 0.13);
}
.field textarea { resize: vertical; min-height: 110px; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--mint);
  color: var(--green-deep);
  font-weight: 800;
  font-size: 0.96rem;
  animation: fade-up 0.5s var(--bounce);
}
.form-success.is-visible { display: flex; }

/* ---------- CTA ---------- */
.cta-band { padding: 60px 0 110px; }
.cta-box {
  position: relative;
  overflow: hidden;
  background: var(--green);
  border-radius: 44px;
  padding: 70px 60px;
  text-align: center;
}
.cta-box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 220px; height: 220px; bottom: -110px; left: -60px;
  background: rgba(12, 28, 51, 0.3);
}
/* Marca de agua: isotipo Kuánto sangrando por el borde derecho */
.cta-box::before {
  content: "";
  position: absolute;
  top: 50%; right: -46px;
  transform: translateY(-50%) rotate(-6deg);
  width: 300px; height: 386px;
  background: url("../img/mark-white.png") no-repeat center / contain;
  opacity: 0.08;
  pointer-events: none;
}
.cta-box h2 { color: var(--white); font-size: clamp(1.7rem, 3.4vw, 2.5rem); max-width: 640px; margin-inline: auto; margin-bottom: 12px; position: relative; z-index: 1; }
.cta-box p { color: rgba(255, 255, 255, 0.88); max-width: 520px; margin-inline: auto; margin-bottom: 34px; position: relative; z-index: 1; }
.cta-box .btn { position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-dark); color: rgba(255, 255, 255, 0.78); padding: 76px 0 0; border-radius: 56px 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.footer-grid h4 { color: var(--white); font-size: 1.02rem; margin-bottom: 18px; }
.footer-grid ul { list-style: none; display: grid; gap: 11px; }
.footer-grid ul a, .footer-grid ul li { color: rgba(255, 255, 255, 0.78); font-size: 0.95rem; font-weight: 600; }
.footer-grid ul a { transition: color 0.2s, padding-left 0.25s var(--bounce); }
.footer-grid ul a:hover { color: var(--white); padding-left: 7px; }
.footer-brand img { height: 42px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 0.95rem; max-width: 280px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.14); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.88rem; }
.footer-bottom .socials { margin: 0; }
.footer-bottom .socials a { width: 40px; height: 40px; background: transparent; border-color: rgba(255, 255, 255, 0.22); color: rgba(255, 255, 255, 0.85); }
.footer-bottom .socials a:hover { background: var(--coral); border-color: var(--coral); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@keyframes fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---------- Barra de confianza anti-fraude ---------- */
.trust-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 6px 24px;
  background: var(--green);
  color: #fff;
  text-align: center;
}
.trust-bar__icon { display: inline-flex; flex-shrink: 0; color: var(--sun); }
.trust-bar__label {
  flex-shrink: 0;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.trust-bar__track { position: relative; overflow: hidden; min-width: 0; }
.trust-bar__msg {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.trust-bar__msg.is-out { opacity: 0; transform: translateY(-8px); }
.trust-bar__msg a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--sun);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 183, 51, 0.45);
  transition: border-color 0.2s, color 0.2s;
}
.trust-bar__msg a:hover { color: #fff; border-color: #fff; }
.trust-bar__msg a svg { width: 14px; height: 14px; flex-shrink: 0; }

.trust-bar__close {
  position: absolute;
  top: 50%; right: 12px;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.2s, color 0.2s;
}
.trust-bar__close:hover { background: rgba(255, 255, 255, 0.15); color: #fff; }

.trust-bar { transition: transform 0.4s var(--ease), opacity 0.4s var(--ease); }
.trust-bar.is-closing { transform: translateY(-100%); opacity: 0; }

/* Empuja el header debajo de la barra y ajusta el anclaje de scroll */
html.has-trust-bar { scroll-padding-top: 132px; }
html.has-trust-bar .site-header { top: 40px; }

@media (max-width: 620px) {
  .trust-bar__label { display: none; }
  .trust-bar { min-height: 46px; padding: 6px 40px 6px 16px; }
  .trust-bar__msg { font-size: 0.78rem; }
  html.has-trust-bar .site-header { top: 46px; }
  html.has-trust-bar { scroll-padding-top: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { order: -1; min-height: 400px; }
  .hero-visual .blob-bg { width: 380px; height: 380px; }
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  section { padding: 76px 0; }
  .hero { padding: 140px 0 70px; }
  .section-mint, .section-peach { border-radius: 36px; margin: 0 10px; }

  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .nav-links {
    position: fixed;
    top: 84px;
    left: 12px;
    right: 12px;
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 22px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--bounce), opacity 0.3s, visibility 0.3s;
    max-height: calc(100vh - 104px);
    overflow-y: auto;
  }
  .nav-links.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav-links a.nav-link { width: 100%; justify-content: space-between; padding: 15px 8px; border-radius: 0; border-bottom: 2px dashed var(--line); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 14px; display: none; }
  .nav-links li.is-open .dropdown { display: block; }

  .cards-3, .photo-cards, .mv-cards, .form-row { grid-template-columns: 1fr; }
  .photo-card { grid-template-columns: 1fr; }
  .photo-card .pc-media { min-height: 180px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .cta-box { padding: 52px 28px; }
  .contact-form { padding: 28px 22px; }
  .chip-float { font-size: 0.78rem; padding: 10px 16px; }
  .faq-a p, .faq-a ul { padding-left: 26px; }
}

/* ==========================================================================
   Páginas internas de servicio (Leasing, PYME, Cash, etc.)
   ========================================================================== */

.section-alt { background: var(--mint); border-radius: 56px; margin: 0 16px; }

.page-hero { padding: 180px 0 84px; overflow: hidden; }
.page-hero .crumb { font-size: 0.88rem; font-weight: 800; color: var(--slate); margin-bottom: 18px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.page-hero .crumb a { color: var(--coral); }
.page-hero .brand-logo { height: 52px; width: auto; margin-bottom: 26px; }
.page-hero h1 { font-size: clamp(2.1rem, 4.2vw, 3rem); max-width: 760px; margin-bottom: 16px; }
.page-hero .lead { font-size: 1.14rem; color: var(--slate); max-width: 680px; margin-bottom: 30px; }
.page-hero .note { font-size: 0.86rem; color: var(--slate); margin-top: 14px; }

.page-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.page-hero-media { position: relative; display: flex; justify-content: center; }
.page-hero-media::before {
  content: "";
  position: absolute;
  inset: 6% 8%;
  border-radius: 46% 54% 52% 48% / 50% 44% 56% 50%;
  background: var(--peach);
  animation: blob-morph 14s ease-in-out infinite alternate;
}
.page-hero-media img {
  position: relative;
  width: min(420px, 100%);
  height: auto;
  animation: floaty 7s ease-in-out infinite;
}
.page-hero-media img:not(.img-organic) { mix-blend-mode: multiply; }
.page-hero-media img.img-organic {
  border-radius: 58% 42% 45% 55% / 48% 52% 44% 56%;
  aspect-ratio: 0.92;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* Pasos */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform 0.35s var(--bounce), box-shadow 0.35s, border-color 0.35s;
}
.step:hover { transform: translateY(-7px) rotate(-0.6deg); box-shadow: var(--shadow-md); border-color: rgba(19, 41, 75, 0.45); }
.step .num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  transition: transform 0.4s var(--bounce);
}
.step:nth-child(2) .num { background: var(--coral); }
.step:nth-child(3) .num { background: var(--sun); }
.step:nth-child(4) .num { background: var(--green-dark); }
.step:hover .num { transform: scale(1.15) rotate(360deg); }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: 0.95rem; color: var(--slate); }

/* Requisitos */
.req-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.req-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  transition: transform 0.3s var(--bounce), border-color 0.3s, box-shadow 0.3s;
}
.req-item:hover { transform: translateX(6px); border-color: var(--green); box-shadow: var(--shadow-sm); }
.req-item .check {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 800;
}

/* Planes (asesoría) */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; align-items: stretch; }
.plan {
  position: relative;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--bounce), box-shadow 0.35s, border-color 0.35s;
}
.plan:hover { transform: translateY(-8px) rotate(-0.4deg); box-shadow: var(--shadow-lg); }
.plan.featured { border-color: var(--green); box-shadow: 0 14px 44px rgba(19, 41, 75, 0.18); }
.plan .plan-badge {
  position: absolute;
  top: -16px;
  left: 38px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(255, 122, 89, 0.4);
}
.plan h3 { font-size: 1.35rem; margin-bottom: 10px; }
.plan .plan-desc { color: var(--slate); font-size: 0.99rem; margin-bottom: 26px; }
.plan ul { list-style: none; display: grid; gap: 12px; margin-bottom: 32px; }
.plan ul li { display: flex; gap: 12px; font-size: 0.97rem; font-weight: 700; }
.plan ul li::before { content: "✓"; color: var(--green); font-weight: 800; }
.plan .btn { margin-top: auto; align-self: flex-start; }

/* Filas de características */
.feature-rows { display: grid; gap: 20px; }
.feature-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform 0.3s var(--bounce), box-shadow 0.3s, border-color 0.3s;
}
.feature-row:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(255, 122, 89, 0.5); }
.feature-row .icon { width: 58px; height: 58px; border-radius: 18px; background: var(--mint); color: var(--green-deep); display: grid; place-items: center; }
.feature-row:nth-child(2) .icon { background: var(--coral-soft); color: var(--coral); }
.feature-row:nth-child(3) .icon { background: #fdf2d9; color: #c98a0a; }
.feature-row h3 { font-size: 1.15rem; margin-bottom: 6px; }
.feature-row p { font-size: 0.97rem; color: var(--slate); }

/* Splits con panel */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .split-copy p { color: var(--slate); font-size: 1.05rem; margin-bottom: 16px; }
.split .panel {
  background: var(--peach);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.split .panel h3 { margin-bottom: 14px; font-size: 1.2rem; }
.split .panel ul { list-style: none; display: grid; gap: 12px; }
.split .panel ul li { display: flex; gap: 12px; font-weight: 700; font-size: 0.98rem; }
.split .panel ul li::before { content: "→"; color: var(--coral); font-weight: 800; }
.split-media { display: grid; gap: 24px; }
.split-media > img { width: 100%; border-radius: 28px; box-shadow: var(--shadow-md); border: 6px solid var(--white); }

/* Grilla de 4 tarjetas (factoraje) */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* Icono por defecto en tarjetas sin clase de color */
.card .icon:not(.i-green):not(.i-coral):not(.i-sun) { background: var(--mint); color: var(--green-deep); }

@media (max-width: 1020px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero-media img { width: min(340px, 100%); }
  .steps { grid-template-columns: 1fr 1fr; }
  .cards-4 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 760px) {
  .steps, .req-grid, .plans, .cards-4 { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .split .panel { padding: 28px 22px; }
}
