/*
Theme Name: Declara Xpress v1.0
Theme URI: https://declaraxpress.com
Author: Declara Xpress
Author URI: https://declaraxpress.com
Description: Tema oficial de Declara Xpress — Estudio Contable Optimizado con IA para MYPE, Emprendedores y Profesionales Independientes.
Version: 1.0
License: Proprietary
Text Domain: declaraxpress
*/

/* =========================================================
   DECLARA XPRESS V1.0 — Deep Blue + Emerald + White
   Titulares: Poppins Bold · Texto: Inter
   ========================================================= */

:root {
  --navy: #0F3D91;
  --navy-deep: #0A2A66;
  --navy-700: #143F94;
  --coral: #00A86B;
  --coral-600: #008C57;
  --coral-300: #5BCFA3;
  --peach: #E6F4EC;
  --peach-2: #DCEDE3;
  --lime: #DCEDE3;
  --lime-2: #C7E9D8;
  --lavender: #E8EFFB;
  --pink: #E6F4EC;
  --sky: #DCE6F5;
  --cream: #FFFFFF;
  --cream-2: #F5F7FA;
  --bone: #FFFFFF;
  --ink: #0E1A2E;
  --ink-700: #344056;
  --ink-500: #5E6B82;
  --ink-400: #8C95A8;
  --line: rgba(15, 26, 46, 0.08);
  --line-strong: rgba(15, 26, 46, 0.16);
  --on-dark: #FFFFFF;
  --on-dark-muted: rgba(255, 255, 255, 0.7);
  --font-sans: "Inter", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Poppins", "Inter", -apple-system, sans-serif;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 40px;
  --r-pill: 999px;
  --sh-sm: 0 2px 6px rgba(26, 22, 20, 0.04), 0 1px 2px rgba(26, 22, 20, 0.03);
  --sh-md: 0 12px 36px rgba(26, 22, 20, 0.07), 0 4px 10px rgba(26, 22, 20, 0.04);
  --sh-lg: 0 24px 64px rgba(26, 22, 20, 0.10), 0 10px 24px rgba(26, 22, 20, 0.06);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur: 240ms;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; }
h1 em, h2 em, h3 em, h4 em { font-family: var(--font-display); font-style: italic; font-weight: 700; }

.nav-logo-img { height: 66px; width: auto; display: block; }
.footer-logo-img { height: 96px; width: auto; display: block; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  font-size: 14.5px; font-weight: 500;
  transition: transform var(--dur) var(--ease), background var(--dur), color var(--dur), box-shadow var(--dur);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 12px 28px rgba(0,168,107,0.32); }
.btn-coral:hover { background: var(--coral-600); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-ghost:hover { background: rgba(26,22,20,0.04); }
.btn-cream { background: var(--cream); color: var(--navy); }
.btn-lg { padding: 16px 26px; font-size: 15px; }
.btn .arr { width: 16px; height: 16px; }

/* Hero topbar */
.hero-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 16px 0;
}
.hero-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-topbar-logo {
  max-height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}
.hero-topbar-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  transition: color var(--dur);
}
.hero-topbar-email:hover { color: var(--coral-300); }
@media (max-width: 1024px) {
  .hero-topbar-email { font-size: 16px; }
}
@media (max-width: 640px) {
  .hero-topbar-logo { max-height: 36px; }
  .hero-topbar-email { font-size: 13px; }
}

/* Hero */
@keyframes hero-zoom {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.12); }
}
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-zoom {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  animation: hero-zoom 25s ease-in-out infinite;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 40, 108, 0.82) 0%,
    rgba(10, 40, 108, 0.60) 45%,
    rgba(10, 40, 108, 0.15) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  width: 100%;
  padding: 110px 0 clamp(48px, 6vw, 80px);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  color: #fff;
  max-width: 24ch;
}
.hero-subtitle {
  font-size: clamp(24px, 2.4vw, 33px);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255,255,255,0.90);
  max-width: 44ch;
  margin: 0 0 32px;
}
.hero-subtitle strong { color: #fff; font-weight: 700; }
.hero-cta-btn { font-size: 16px; padding: 15px 36px; font-weight: 700; display: inline-flex; }
.hero--b .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(10, 40, 108, 0.45) 0%,
    rgba(10, 40, 108, 0.58) 60%,
    rgba(10, 40, 108, 0.68) 100%
  );
}

/* Sec-head */
.sec-head { text-align: center; margin-bottom: 40px; }
.sec-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.028em;
  color: var(--navy);
  margin: 0;
}
.sec-head h2 em { font-style: italic; font-weight: 400; color: var(--coral); }
.somos .sec-head h2 { color: var(--navy); font-weight: 800; }
.sec-head--light h2 { color: #fff; }
.sec-head-wrap { margin-bottom: 0; }
.sec-sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin: 0 0 16px;
  letter-spacing: -0.015em;
}

/* Somos */
.somos { padding: 72px 0; }
.somos-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: start;
}
.somos-photo {
  background: linear-gradient(135deg, #d8cdb8 0%, #b8a890 100%);
  border-radius: var(--r-xl);
  height: 480px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.somos-photo::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 50%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.2));
}
.somos-photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.somos-card-floating {
  position: absolute; left: 20px; bottom: 20px;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: 12px;
  z-index: 1;
}
.somos-card-floating .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--peach);
  display: grid; place-items: center;
  color: var(--coral);
}
.somos-card-floating .t { font-size: 13.5px; font-weight: 600; color: var(--ink); margin: 0; }
.somos-card-floating .d { font-size: 11.5px; color: var(--ink-500); margin: 0; }
.somos-cta { margin-top: 28px; }
.somos-items {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.somos-items li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; line-height: 1.45; color: var(--ink-700);
}
.somos-items li svg { color: var(--coral); flex-shrink: 0; margin-top: 2px; }

/* Planes */
.planes { padding: 0 0 100px; }
.planes-band {
  background: var(--navy);
  color: #fff;
  padding: 72px 0 100px;
  position: relative;
  overflow: hidden;
  margin-bottom: -40px;
}
.planes-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(0,168,107,0.22), transparent 60%);
}
.planes-band-inner { position: relative; z-index: 1; }
.planes-band h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.028em;
  margin: 16px 0 14px;
  text-align: center;
  white-space: nowrap;
  color: var(--coral-300);
  margin-left: auto; margin-right: auto;
}
.planes-band h2 em { font-style: normal; font-weight: 900; color: var(--coral-300); }
.planes-band p { text-align: center; max-width: 56ch; margin: 0 auto; font-size: 20px; font-weight: 600; color: rgba(255,255,255,0.92); }
.planes-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  position: relative;
  z-index: 2;
}
.plan {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px 26px;
  display: flex; flex-direction: column;
  box-shadow: var(--sh-sm);
  position: relative;
  transition: transform var(--dur), box-shadow var(--dur);
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.plan .badge {
  position: absolute; top: -12px; left: 24px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
.plan-name {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 4px;
}
.plan-tag { font-size: 13px; color: var(--ink-500); margin: 0 0 22px; min-height: 60px; line-height: 1.5; }
.plan-price { display: flex; align-items: baseline; gap: 4px; padding: 18px 0; border-top: 1px dashed var(--line-strong); border-bottom: 1px dashed var(--line-strong); margin-bottom: 22px; }
.plan-price .cur { font-size: 16px; color: var(--ink-500); font-weight: 500; }
.plan-price .amt { font-weight: 600; font-size: 48px; letter-spacing: -0.03em; line-height: 1; color: var(--navy); }
.plan-price .per { font-size: 13px; color: var(--ink-500); margin-left: 6px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { display: flex; gap: 10px; font-size: 13.5px; line-height: 1.45; color: var(--ink-700); }
.plan-features li svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 4px; color: var(--coral); }
.plan .cta-row { margin-top: auto; }
.plan .btn { width: 100%; justify-content: center; }
.plan-meta { font-size: 11px; color: var(--ink-400); margin: 10px 0 0; letter-spacing: 0.04em; text-align: center; }
.plan-empr { background: var(--cream); }
.plan-plata { background: var(--lavender); border-color: rgba(126, 91, 216, 0.18); }
.plan-oro {
  background: var(--lime);
  border-color: rgba(14,26,77,0.18);
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(14,26,77,0.14);
}
.plan-oro:hover { transform: translateY(-15px); }
.plan-oro .badge { background: var(--navy); color: var(--lime); }
.plan-diam { background: var(--peach); border-color: rgba(0,168,107,0.22); }

/* Pasos */
.pasos { padding: 64px 0; background: var(--cream-2); }
.pasos-slider { display: none; }
.paso--slide { align-items: center; margin-bottom: 24px; }
.pasos-slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; }
.pasos-inner { text-align: center; }
.pasos-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 46px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 56px;
}
.pasos-row {
  display: flex; justify-content: center; align-items: flex-start;
  gap: 0;
  max-width: 900px; margin: 0 auto;
}
.paso {
  display: flex; flex-direction: column; align-items: center;
  flex: 1;
  position: relative;
}
.paso-line {
  position: absolute;
  top: 36px; left: 50%; right: -50%;
  height: 2px;
  background: var(--line-strong);
  z-index: 0;
}
.paso-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  margin-bottom: 18px;
}
.paso-circle--coral { background: var(--coral); box-shadow: 0 8px 24px rgba(0,168,107,0.3); }
.paso-circle--navy  { background: var(--navy);  box-shadow: 0 8px 24px rgba(15,61,145,0.25); }
.paso-label { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 10px; }
.paso-desc { font-size: 14px; line-height: 1.55; color: var(--ink-500); margin: 0; max-width: 24ch; text-align: center; }

/* Cita */
.cita { padding: 64px 0; background: var(--cream-2); border-top: 1px solid var(--line); }
.cita-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cita-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: var(--navy);
  margin: 0 0 16px;
}
.cita-tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin: 0;
}
.cita-desc { font-size: 17px; line-height: 1.6; color: var(--ink-500); margin: 0 0 32px; max-width: 44ch; }
.cita-btn { font-size: 15px; padding: 14px 32px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 700; }

/* ── Perfil Profesional ───────────────────────────────────── */
.perfil-sec { padding: 36px 0; }
.perfil-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.perfil-eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.perfil-profile {
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 34px;
}
.perfil-media { position: relative; }
.perfil-frame {
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
}
.perfil-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.perfil-tag {
  position: absolute;
  right: -26px; bottom: 34px;
  background: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 28px 55px -32px rgba(15,61,145,.45);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 270px;
}
.perfil-tag-ic {
  width: 42px; height: 42px;
  border-radius: 9px;
  background: var(--lavender);
  color: var(--coral);
  display: grid; place-items: center;
  font-size: 19px;
  flex: 0 0 auto;
}
.perfil-tag b {
  font-family: var(--font-display);
  font-size: 14.5px;
  color: var(--navy);
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}
.perfil-tag span { font-size: 12.5px; color: var(--ink-500); }
.perfil-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 16px 0 8px;
}
.perfil-role {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  margin-top: -5px;
}
.perfil-body {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 62ch;
}
.perfil-body p { font-size: 16.5px; color: var(--ink-500); line-height: 1.65; margin: 0; }
.perfil-body p strong { color: var(--ink); font-weight: 600; }
.perfil-creds {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 34px 0 32px;
  padding-top: 30px;
  border-top: 1px solid var(--line-strong);
}
.perfil-creds li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: flex-start;
}
.perfil-badge {
  width: 30px; height: 30px;
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.perfil-creds h4 { font-size: 15.5px; font-weight: 700; color: var(--navy); margin: 0 0 4px; }
.perfil-creds p  { font-size: 14.5px; color: var(--ink-500); line-height: 1.55; margin: 0; }
.perfil-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.perfil-values span {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  padding: 9px 17px;
}
@media (max-width: 960px) {
  .perfil-profile { grid-template-columns: 1fr; gap: 52px; }
  .perfil-frame { max-width: 340px; }
  .perfil-tag { position: static; margin-top: 18px; max-width: none; right: auto; }
}

/* Otros Servicios */
/* ── Servicios columnas ───────────────────────────────────── */
.serv-cols { padding: 56px 0 64px; background: var(--lavender); }
.serv-cols-row { max-width: 1100px; }
.serv-cols-row .paso-label { font-size: 15px; }
.serv-desc { max-width: 280px !important; font-size: 14px; }

.otros-serv { padding: 40px 0 48px; background: var(--cream-2); border-top: 3px solid var(--line-strong); }
.otros-serv-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center; }
.otros-serv-img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); }
.otros-serv-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.otros-serv-r h2, .otros-serv .sec-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--coral);
  margin: 0 0 28px;
}
.otros-serv-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.otros-serv-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.4; color: var(--ink-700); }
.otros-serv-list li svg { color: var(--coral); flex-shrink: 0; margin-top: 2px; }

/* Formaliza */
.formaliza { padding: 72px 0; background: var(--navy); color: #fff; }
.formaliza-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.formaliza-img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); }
.formaliza-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.formaliza .sec-head h2 { color: #fff; font-weight: 800; }
.formaliza-precio { font-size: 15px; color: rgba(255,255,255,0.6); margin: 0 0 20px; }
.formaliza-precio strong { color: var(--coral-300); font-weight: 700; }
.formaliza-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.formaliza-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.4; color: rgba(255,255,255,0.88); }
.formaliza-list li svg { color: var(--coral-300); flex-shrink: 0; margin-top: 2px; }
.formaliza-cta { display: inline-flex; }

/* Sunat */
.sunat-alert { padding: 72px 0; background: #fff; color: var(--ink); }
.sunat-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center; }
.sunat-img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); }
.sunat-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sunat-intro { font-size: 15px; line-height: 1.55; color: var(--ink-500); margin: 0 0 20px; }
.sunat-intro strong { color: var(--navy); }
.sunat-steps { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.sunat-steps li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.4; color: var(--ink-700); }
.sunat-steps li svg { color: var(--coral); flex-shrink: 0; margin-top: 2px; }
.sunat-cta { display: inline-flex; }

/* Testimonios */
.testi { padding: 72px 0; }
.testi-head { text-align: center; margin-bottom: 56px; }
.testi-head h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.028em;
  margin: 14px 0 12px;
  color: var(--coral);
}
.testi-head h3 em { font-style: normal; font-weight: 800; color: var(--coral); }
.testi-carousel-wrap { overflow: hidden; margin-bottom: 28px; }
.testi-carousel-track { display: flex; gap: 16px; transition: transform 0.35s var(--ease); }
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  flex: 0 0 calc((100% - 32px) / 3);
}
.testi-card .body { padding: 24px 22px 26px; }
.testi-card .qm { font-family: Georgia, serif; font-size: 22px; font-style: italic; color: var(--coral); font-weight: 700; line-height: 1; margin-right: 6px; }
.testi-card .qm-close { margin-left: 4px; margin-right: 0; }
.testi-card .quote { font-size: 13.5px; line-height: 1.5; color: var(--ink-700); margin: 6px 0 14px; }
.testi-card .author { font-size: 12px; font-weight: 600; color: var(--navy); }
.testi-card .role { font-size: 11px; color: var(--ink-500); }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 20px; }
.testi-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: #fff; color: var(--navy); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur) var(--ease);
}
.testi-arrow:hover:not(:disabled) { background: var(--navy); color: #fff; border-color: var(--navy); }
.testi-arrow:disabled { opacity: 0.3; cursor: default; }
.testi-dots { display: flex; gap: 8px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--line-strong); cursor: pointer; transition: background var(--dur), transform var(--dur); padding: 0; }
.testi-dot.active { background: var(--coral); transform: scale(1.3); }

/* CTA / Contacto */
.cta-band { padding: 72px 0 20px; background: var(--navy); color: #fff; }
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  grid-template-rows: auto 1fr;
  gap: 32px 80px;
  align-items: start;
}
.contacto-info      { grid-column: 1; grid-row: 1; align-self: start; }
.contacto-form-wrap { grid-column: 2; grid-row: 1 / 3; }
.contacto-mapa-inline { grid-column: 1; grid-row: 2; align-self: stretch; }
.contacto-titulo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 28px;
}
.contacto-mapa-inline {
  margin-top: 4px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.contacto-mapa-inline iframe { flex: 1; height: 100%; min-height: 300px; }
.contacto-datos { list-style: none; padding: 0; margin: 0 0 4px; display: flex; flex-direction: column; gap: 18px; }
.contacto-datos li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.5; color: rgba(255,255,255,0.78); }
.contacto-datos li svg { color: var(--coral-300); flex-shrink: 0; margin-top: 2px; }
.contacto-form-wrap {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 40px 40px 44px;
  color: var(--ink);
}
.contacto-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--navy);
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contacto-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--ink-700); letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input, .form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--ink);
  background: #fff;
  transition: border-color var(--dur) var(--ease);
  outline: none;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(0,168,107,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--ink-400); }
.dx-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.mathcap { background: var(--lavender); border: 1.5px solid var(--line-strong); border-radius: var(--r-sm); padding: 14px 16px; font-size: 14px; line-height: 1.45; display: flex; flex-direction: column; gap: 8px; font-weight: 600; color: var(--ink-700); letter-spacing: 0.04em; text-transform: uppercase; }
.mathcap strong { color: var(--navy); font-size: 14px; text-transform: none; letter-spacing: 0; }
.mathcap input[type="number"] { max-width: 200px; padding: 12px 14px; border: 1.5px solid var(--line-strong); border-radius: var(--r-sm); font-size: 14px; font-family: var(--font-sans); color: var(--ink); background: #fff; outline: none; transition: border-color var(--dur) var(--ease); -moz-appearance: textfield; }
.mathcap input[type="number"]:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(0,168,107,0.1); }
.mathcap input[type="number"]::placeholder { color: var(--ink-400); }
.mathcap input[type="number"]::-webkit-outer-spin-button,
.mathcap input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.form-error { font-size: 13px; color: #e53e3e; margin: 0; }
.form-success { font-size: 13px; color: var(--coral-600); font-weight: 600; margin: 0; }
.form-submit { width: 100%; justify-content: center; font-size: 15px; padding: 14px 24px; margin-top: 4px; }

/* Footer */
.footer { background: var(--navy); color: #fff; padding: 40px 0 24px; text-align: center; }
.footer-logo-wrap { margin-bottom: 20px; text-align: center; padding: 24px 0 20px; }
.footer-logo-bottom { height: 80px; width: auto; display: inline-block; opacity: 0.75; }
.footer-copy { text-align: center; padding: 0 20px; }
.footer-copy p { font-size: 14px; color: rgba(255,255,255,0.9); margin: 4px 0; }

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 100;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600;
  box-shadow: 0 8px 28px rgba(37,211,102,0.40);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
  text-decoration: none;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37,211,102,0.50); }

/* Navy header (inner pages) */
.navy-header { background: var(--navy); padding: 18px 0; }
.navy-header .hero-topbar-inner { display: flex; align-items: center; justify-content: space-between; }

/* Responsive */
@media (max-width: 1024px) {
  .somos-grid, .contacto-grid { grid-template-columns: 1fr; gap: 32px; }
  .planes-grid { grid-template-columns: 1fr 1fr; }
  .plan-oro { transform: none; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .planes-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .hero { height: auto; min-height: 100svh; }
  .hero-overlay { background: rgba(10, 40, 108, 0.65); }
  .somos { padding: 40px 0; }
  .somos-photo { height: 320px; }
  .pasos-row { display: none; }
  .pasos-slider { display: block; text-align: center; }
  .testi-card { flex: 0 0 100%; }
  .otros-serv-inner { grid-template-columns: 1fr; }
  .cita-inner { grid-template-columns: 1fr; gap: 32px; }
  .formaliza-inner, .sunat-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-band { padding: 40px 0; }
  .contacto-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .contacto-info { grid-column: 1; grid-row: 1; }
  .contacto-form-wrap { grid-column: 1; grid-row: 2; padding: 28px 24px 32px; }
  .contacto-mapa-inline { grid-column: 1; grid-row: 3; min-height: 200px; }
  .contacto-mapa-inline iframe { min-height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
  .footer { padding: 16px 0 0; }
  .planes-band { padding: 40px 0 60px; }
}
