*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --dark1: #0f0f0f;
  --dark2: #3a3a3a;
  --light1: #fafafa;
  --light2: #e6e6e6;
  --red: #e41e1b;
  --red-m: #c71a17;
  --softred: #f6c1c0;
  --mid: #6b6b6b;
  --cool: #9ca3af;
  --slate: #243a5e;
  --f: 'Inter', system-ui, sans-serif;
}
body {
  font-family: var(--f);
  background: var(--light1);
  color: var(--dark1);
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  z-index: 100;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.hdr {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo img {
  height: 56px;
  width: auto;
  display: block;
}
@media (max-width: 480px) {
  .logo img {
    height: 42px;
  }
}
.btn-nav {
  font-family: var(--f);
  font-size: 14px;
  font-weight: 600;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-nav:hover {
  background: var(--red-m);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 5% 60%, rgba(246, 193, 192, 0.45) 0%, transparent 65%),
    radial-gradient(ellipse 45% 50% at 95% 20%, rgba(228, 30, 27, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 50% 105%, rgba(230, 230, 230, 0.6) 0%, transparent 60%),
    var(--light1);
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 72px 24px 0;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  min-height: 100vh;
  align-items: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  border: 1px solid rgba(228, 30, 27, 0.2);
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(228, 30, 27, 0.05);
}
.eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.h1 {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--dark1);
  white-space: nowrap;
}
.h1 .acc {
  background: linear-gradient(90deg, #e41e1b 0%, #c71a17 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 300;
}
.sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--mid);
  max-width: 440px;
}
.btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.bp {
  font-family: var(--f);
  font-size: 14px;
  font-weight: 600;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 13px 26px;
  border-radius: 100px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.bp:hover {
  background: var(--red-m);
  transform: translateY(-1px);
}
.bg {
  font-family: var(--f);
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  color: var(--dark2);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 12px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}
.bg:hover {
  border-color: rgba(0, 0, 0, 0.35);
  color: var(--dark1);
}
.proof {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pdot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.proof span {
  font-size: 15px;
  color: var(--cool);
}
.proof strong {
  color: var(--mid);
  font-weight: 600;
}

/* FORM */
.hero-form-col {
  display: flex;
  align-items: stretch;
  padding: 64px 0;
  align-self: center;
}
.form-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 36px 32px 32px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 20px 56px rgba(0, 0, 0, 0.07);
}
.ftag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--mid);
  background: rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  padding: 5px 13px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.ftitle {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--dark1);
  line-height: 1.2;
  margin-bottom: 28px;
}
.ffields {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
.field {
  position: relative;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s;
}
.field:focus-within {
  border-bottom-color: var(--red);
}
.field input {
  font-family: var(--f);
  font-size: 15px;
  font-weight: 400;
  color: var(--dark1);
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  padding: 0;
}
.field input::placeholder {
  color: var(--dark2);
  transition: opacity 0.15s;
}
.field input:focus::placeholder {
  opacity: 0;
}
.frow {
  display: grid;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s;
}
.frow:focus-within {
  border-bottom-color: var(--red);
}
.frow.pre {
  grid-template-columns: 88px 1fr;
}
.frow .field {
  border-bottom: none;
  border-top: none;
}
.frow .field:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 20px;
}
.frow .field:last-child {
  padding-left: 20px;
}
.fbot {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-top: 20px;
}
.fprivacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 20px;
}
.fprivacy input[type='checkbox'] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--red);
  cursor: pointer;
}
.fprivacy span {
  font-size: 12px;
  color: var(--cool);
  line-height: 1.55;
}
.fprivacy a {
  color: var(--mid);
  text-decoration: underline;
}
.fsub {
  display: block;
  width: auto;
  align-self: center;
  font-family: var(--f);
  font-size: 15px;
  font-weight: 600;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 100px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.fsub:hover {
  background: var(--red-m);
  transform: translateY(-1px);
}
.fsub:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.fnote {
  text-align: center;
  font-size: 11px;
  color: var(--cool);
  margin-top: 12px;
}

/* Form status messages */
#form-status {
  text-align: center;
  font-size: 13px;
  margin-top: 12px;
  padding: 0 8px;
  min-height: 20px;
}
#form-status.success {
  color: #0d7e74;
}
#form-status.error {
  color: var(--red);
}

/* SECCIONES */
.vs {
  width: 100%;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.vs:nth-child(odd) {
  background: var(--light1);
}
.vs:nth-child(even) {
  background: var(--light2);
}
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vs:nth-child(even) .inner {
  direction: rtl;
}
.vs:nth-child(even) .inner > * {
  direction: ltr;
}
.visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.blob {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}
.blob-r {
  background: var(--softred);
}
.blob-g {
  background: #d0d0d0;
}
.card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  width: 100%;
  max-width: 380px;
}
.s-auto .card {
  max-width: 100%;
}
.s-citas h2 {
  white-space: nowrap;
}
.s-person .card {
  max-width: 100%;
  padding: 44px 36px;
}
.s-person .bk {
  gap: 20px;
}
.s-person .bkrow {
  gap: 14px;
}
.s-person .bkb {
  padding: 18px 18px;
}
.s-atencion .card {
  max-width: 100%;
}
.txt {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ey {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  border: 1px solid rgba(228, 30, 27, 0.2);
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(228, 30, 27, 0.05);
}
.ey::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
h2 {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--dark1);
  max-width: 460px;
}
h2 .a {
  background: linear-gradient(90deg, #e41e1b 0%, #c71a17 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 300;
}
.sb {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--mid);
  max-width: 420px;
}
.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 18px;
  position: relative;
}
.item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
}
.item strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark1);
}
.item span {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.5;
}
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--light2), transparent);
}

/* Visual 1 — Flow */
.flow {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flabel {
  font-size: 10px;
  font-weight: 600;
  color: var(--cool);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.src {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light2);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark2);
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.d-sl {
  background: var(--slate);
}
.d-gr {
  background: var(--mid);
}
.d-gn {
  background: #25d366;
}
.d-rd {
  background: var(--red);
}
.arr {
  text-align: center;
  font-size: 16px;
  color: var(--cool);
}
.engine {
  background: var(--dark1);
  border-radius: 10px;
  padding: 12px 16px;
  text-align: center;
}
.engine p {
  font-size: 10px;
  font-weight: 600;
  color: rgba(250, 250, 250, 0.4);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.engine h4 {
  font-size: 15px;
  font-weight: 300;
  color: var(--light1);
  margin-top: 2px;
}
.engine small {
  font-size: 11px;
  color: var(--softred);
  font-weight: 500;
}
.result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(228, 30, 27, 0.05);
  border: 1px solid rgba(228, 30, 27, 0.15);
  border-radius: 8px;
  padding: 10px 14px;
}
.result span {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark1);
}
.result strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
}

/* Visual 3 — Branding */
.bk {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bkh {
  background: var(--dark1);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bkl {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.bki p {
  font-size: 13px;
  font-weight: 600;
  color: var(--light1);
}
.bki small {
  font-size: 11px;
  color: var(--cool);
}
.bks {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 100px;
  padding: 4px 10px;
  flex-shrink: 0;
}
.bkrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.bkb {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--light2);
  border-radius: 8px;
  padding: 10px 12px;
}
.bkb label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cool);
}
.bkb p {
  font-size: 12px;
  font-weight: 500;
  color: var(--dark1);
  margin-top: 4px;
}
.swatches {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}
.sw2 {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* Visual 4 — Stats */
.stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.srow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sc {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--light2);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
}
.sc.dk {
  background: var(--dark1);
  border-color: var(--dark1);
}
.sn {
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.sc.dk .sn {
  color: var(--light1);
}
.sl {
  font-size: 11px;
  color: var(--mid);
  margin-top: 5px;
  line-height: 1.4;
}
.sc.dk .sl {
  color: rgba(250, 250, 250, 0.45);
}
.sbar {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--light2);
  border-radius: 12px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sbar-t p {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark1);
}
.sbar-t small {
  font-size: 11px;
  color: var(--mid);
}
.spill {
  margin-left: auto;
  background: rgba(228, 30, 27, 0.08);
  border: 1px solid rgba(228, 30, 27, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  flex-shrink: 0;
}

/* ── Visual 2 — Lista de citas (estilos completamente aislados) ── */
.apl {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.ap {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  font-family: 'Inter', system-ui, sans-serif;
}
.ap-bd {
  width: 4px;
  flex-shrink: 0;
}
.ap-bd-p {
  background: transparent;
}
.ap-bd-v {
  background: #e41e1b;
}
.ap-bd-e {
  background: transparent;
}
.ap-in {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 14px 16px;
  gap: 14px;
}
.ap-ti {
  flex-shrink: 0;
  text-align: left;
  min-width: 56px;
}
.ap-ho {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 3px;
  display: block;
}
.ap-lb {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
}
.ap-p .ap-ho,
.ap-p .ap-lb {
  color: #0f0f0f;
}
.ap-v .ap-ho,
.ap-v .ap-lb {
  color: #e41e1b;
}
.ap-e .ap-ho,
.ap-e .ap-lb {
  color: #0d7e74;
}
.ap-nf {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ap-r1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.ap-nm {
  font-size: 15px;
  font-weight: 700;
  color: #0f0f0f;
}
.ap-fn {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 400;
}
.tg {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1.5px solid;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.tg-wl {
  color: #1a1a1a;
  border-color: #aaaaaa;
  background: #f8f8f8;
}
.tg-nu {
  color: #0d7e74;
  border-color: #0d7e74;
  background: rgba(13, 126, 116, 0.06);
}
.tg-fi {
  color: #7c3aed;
  border-color: #7c3aed;
  background: rgba(124, 58, 237, 0.06);
}
.tg-ex {
  color: #0d7e74;
  border-color: #0d7e74;
  background: rgba(13, 126, 116, 0.06);
}
.ap-mo {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 400;
}
.ap-tp {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
}
.ap-th {
  color: #e41e1b;
  background: rgba(228, 30, 27, 0.08);
}
.ap-tw {
  color: #9ca3af;
  background: rgba(156, 163, 175, 0.12);
}
.ap-al {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  color: #e41e1b;
  background: rgba(228, 30, 27, 0.07);
  border: 1px solid rgba(228, 30, 27, 0.2);
  border-radius: 100px;
  padding: 3px 10px;
  width: fit-content;
}
.ap-ac {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.ap-bt {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid;
  cursor: pointer;
  white-space: nowrap;
}
.ap-bt-p {
  color: #3a3a3a;
  border-color: #d0d0d0;
  background: #f5f5f5;
}
.ap-bt-v {
  color: #e41e1b;
  border-color: rgba(228, 30, 27, 0.35);
  background: rgba(228, 30, 27, 0.07);
}
.ap-bt-e {
  color: #0d7e74;
  border-color: rgba(13, 126, 116, 0.35);
  background: rgba(13, 126, 116, 0.07);
}
.ap-ex {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 500;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: var(--light2);
  border-top: 1px solid #d8d8d8;
  padding: 48px 0;
}
.ftr {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 0 64px;
  display: grid;
  grid-template-columns: 2fr 4fr 3fr;
  align-items: center;
  gap: 40px;
}
.flogo {
  text-decoration: none;
  display: inline-flex;
}
.flogo img {
  height: 64px;
  width: auto;
  display: block;
}
.fnav {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.fnav a {
  font-size: 11px;
  font-weight: 300;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.fnav a:hover {
  color: var(--dark1);
}
.fcopy {
  font-size: 11px;
  font-weight: 300;
  color: var(--mid);
  text-align: right;
}

/* PAGE CONTENT (inner pages: privacy, terms, etc.) */
.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 24px 96px;
}
.page-content h1 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 200;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--dark1);
  margin-bottom: 8px;
}
.page-content .page-date {
  font-size: 12px;
  color: var(--cool);
  margin-bottom: 48px;
}
.page-content h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--dark1);
  margin-top: 40px;
  margin-bottom: 12px;
  max-width: none;
}
.page-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 16px;
}
.page-content a {
  color: var(--red);
  text-decoration: underline;
}
.page-content ul {
  margin: 0 0 16px 0;
  padding-left: 24px;
}
.page-content ul li {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 8px;
}
.page-content ul li strong {
  font-weight: 600;
  color: var(--dark1);
}

/* ── TABLET ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding-bottom: 64px;
  }
  .hero-copy,
  .hero-form-col {
    padding: 32px 0;
    align-self: auto;
  }
  .hero-form-col {
    padding-bottom: 48px;
  }
  .form-card {
    max-width: 100%;
  }
  .inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .vs:nth-child(even) .inner {
    direction: ltr;
  }
  .vs {
    padding: 64px 0;
  }
  .visual {
    min-height: auto;
  }
  .card {
    max-width: 100%;
  }
  .ftr {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  .flogo {
    justify-content: center;
    width: 100%;
  }
  .fnav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .fcopy {
    text-align: center;
  }
  .apl {
    max-width: 100%;
  }
}

/* ── MÓVIL ── */
@media (max-width: 600px) {
  .hdr {
    padding: 0 16px;
  }
  .btn-nav {
    padding: 9px 16px;
    font-size: 13px;
  }
  .hero-inner {
    padding: 72px 16px 0;
    gap: 24px;
  }
  .hero-copy {
    gap: 18px;
    padding: 40px 0 24px;
  }
  .h1 {
    font-size: min(8vw, 48px);
    letter-spacing: -1px;
  }
  .sub {
    font-size: 15px;
  }
  .btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .bp,
  .bg {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .proof span {
    font-size: 13px;
  }
  .hero-form-col {
    padding: 0 0 48px;
  }
  .form-card {
    padding: 28px 20px 24px;
    border-radius: 18px;
  }
  .ftitle {
    font-size: 18px;
  }
  .frow.pre {
    grid-template-columns: 76px 1fr;
  }
  .vs {
    padding: 56px 0;
  }
  .inner {
    padding: 0 16px;
    gap: 36px;
  }
  h2 {
    font-size: clamp(26px, 7vw, 36px);
  }
  .sb {
    font-size: 15px;
  }
  .item strong {
    font-size: 13px;
  }
  .item span {
    font-size: 12px;
  }
  .src {
    font-size: 12px;
    padding: 8px 10px;
  }
  .engine h4 {
    font-size: 14px;
  }
  .ap-in {
    padding: 12px 12px;
    gap: 10px;
  }
  .ap-ho {
    font-size: 16px;
  }
  .ap-lb {
    font-size: 8px;
  }
  .ap-ti {
    min-width: 44px;
  }
  .ap-nm {
    font-size: 13px;
  }
  .ap-fn {
    display: none;
  }
  .ap-mo {
    font-size: 11px;
  }
  .tg {
    font-size: 9px;
    padding: 2px 7px;
  }
  .ap-tp {
    font-size: 10px;
  }
  .ap-al {
    font-size: 9px;
  }
  .ap-bt {
    font-size: 10px;
    padding: 5px 10px;
  }
  .ap-ex {
    font-size: 10px;
  }
  .bkb label {
    font-size: 9px;
  }
  .bkb p {
    font-size: 11px;
  }
  .bkh {
    padding: 12px;
  }
  .bki p {
    font-size: 12px;
  }
  .sn {
    font-size: 22px;
  }
  .sl {
    font-size: 10px;
  }
  .sbar-t p {
    font-size: 12px;
  }
  .spill {
    font-size: 10px;
    padding: 3px 10px;
  }
  footer {
    padding: 32px 0;
  }
  .ftr {
    padding: 0 16px;
    gap: 12px;
  }
  .flogo {
    justify-content: center;
    width: 100%;
  }
  .fnav {
    gap: 16px;
  }
}
