@font-face {
  font-family: 'Gilroy Medium';
  src: url(../fonts/Gilroy-Medium.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --azul-600: #162644;
  --azul: #004a92;
  --azul-light: #009ee2;
  --naranja: #fd8b03;
  --verde-ligth: #01d5c4;
  --blue: #0f2c5e;
  --blue-mid: #1a3c6e;
  --blue-lt: #2e6da4;
  --green: #0d5c2e;
  --green-mid: #1b7a40;
  --green-lt: #25a35a;
  --green-pale: #e6f5ee;
  --orange: #fd8b03;
  --orange-lt: #ff6b35;
  --gold: #c8860a;
  --gold-lt: #fff3cc;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-900: #0f172a;
  --navy: #0f2c5e;
  --navy2: #1a3c6e;
  --teal: #0d6e8a;
  --teal-lt: #e6f4f8;
  --orange: #e8490f;
  --orange2: #ff6b35;
  --gold: #c8860a;
  --gold-lt: #fff8e1;
  --cyan: #06b6d4;
  --white: #ffffff;
  --g50: #f8fafc;
  --g100: #f1f5f9;
  --g200: #e2e8f0;
  --g400: #94a3b8;
  --g600: #475569;
  --g900: #0f172a;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Gilroy Medium';
  color: var(--g900);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
button,
input[type='submit'] {
  font-family: 'Gilroy Medium';
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  width: 100%;
}

/* ── UTILS ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TOPBAR ── */
.topbar {
  background-color: var(--azul);
  /* background: linear-gradient(90deg, #0a1f45 0%, var(--teal) 50%, #0a1f45 100%); */
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.topbar::before {
  content: '';
  position: absolute;
  inset: 0;
}
.topbar .pill {
  display: inline-block;
  background: var(--verde-ligth);
  /* border: 1px solid rgba(6, 182, 212, 0.5); */
  border-radius: 20px;
  padding: 2px 12px;
  margin: 0 4px;
  font-weight: 700;
  color: var(--azul);
}

/* ══ HEADER ══════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}
.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo figure {
  display: block;
  width: 220px;
  aspect-ratio: 200 / 63;
  margin-bottom: 0;
}
.header-badges {
  display: flex;
  gap: 10px;
  align-items: center;
}

.h-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.h-badge.sn {
  background: rgba(13, 110, 138, 0.1);
  color: var(--teal);
}
.h-badge.pm {
  background: rgba(15, 44, 94, 0.1);
  color: var(--navy);
}
.header-cta {
  background: linear-gradient(135deg, var(--naranja), var(--naranja));
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: 50px;
  white-space: nowrap;
  border: none;
  cursor: pointer;

  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(232, 73, 15, 0.45);
}
@media (max-width: 768px) {
  .header-badges {
    display: none;
  }
  .logo-name {
    font-size: 14px;
  }
}

/* ── HERO ── */
.hero {
  background: linear-gradient(
    135deg,
    #071a38 0%,
    var(--navy) 40%,
    #0a3d5e 100%
  );
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-color: var(--azul);
  background-size: 48px 48px;
}
.hero-orb1 {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(13, 110, 138, 0.35) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-orb2 {
  position: absolute;
  bottom: 0;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
}

/* HERO LEFT */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.35);
  color: #67e8f9;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
  letter-spacing: 0.4px;
}
.hero-kicker .dot {
  width: 7px;
  height: 7px;
  background: #67e8f9;
  border-radius: 50%;
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero h1 {
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero h1 .accent {
  display: block;
  background: linear-gradient(90deg, var(--verde-ligth), var(--verde-ligth));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-desc strong {
  color: #fff;
}

/* TOOLS GRID */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}
.tool-chip {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
  transition: background 0.2s;
}
.tool-chip:hover {
  background: rgba(255, 255, 255, 0.12);
}
.tool-chip .t-ico {
  font-size: 20px;
  margin-bottom: 4px;
  display: block;
}
.tool-chip .t-name {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.tool-chip .t-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* TIME BADGE */
.time-badge {
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.18),
    rgba(6, 182, 212, 0.07)
  );
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.tb-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--teal), #0891b2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.tb-main {
  font-size: 30px;
  font-weight: 900;
  color: #67e8f9;
  line-height: 1;
}
.tb-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3px;
}
.tb-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

/* ══ FORM CARD ═══════════════════════════════════════════════ */
.form-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 88px;
}
.form-card-header {
  text-align: center;
  margin-bottom: 20px;
}
.form-card-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1.2;
}
.form-card-sub {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 4px;
}

.discount-strip {
  background: linear-gradient(135deg, #fff3cc, #fff8e1);
  border: 1.5px solid #f5d76e;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  display: none;
}
.ds-pct {
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.ds-right {
  flex: 1;
}
.ds-title {
  font-size: 13px;
  font-weight: 800;
  color: #7a5200;
}
.ds-sub {
  font-size: 11px;
  color: #a37000;
  margin-top: 2px;
}
.ds-timer {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  margin-top: 4px;
}

.form-group {
  margin-bottom: 14px;
}
.form-group label {
  max-width: 300px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-600);
  /* text-transform: uppercase; */
  letter-spacing: 0.6px;
  display: block;
  /* margin-bottom: 5px; */
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--gray-900);
  background: #fff;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  /* appearance: none; */
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(27, 122, 64, 0.1);
}
.form-group select {
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.type-checkbox {
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 8px;
}
.type-checkbox input[type='checkbox'] {
  width: 13px;
  height: 13px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--naranja), var(--naranja));
  color: var(--azul-600);
  font-size: 16px;
  font-weight: 800;
  padding: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  pointer-events: none;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13, 92, 46, 0.5);
}
.btn-submit:active {
  transform: translateY(0);
}

.form-sep {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
}
.form-sep::before,
.form-sep::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.form-sep span {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 600;
}

.btn-wa {
  width: 100%;
  background: linear-gradient(135deg, #1ebe5a, #25d366);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.btn-wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.form-micro {
  text-align: center;
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 10px;
  line-height: 1.5;
}
.form-success {
  display: none;
  text-align: center;
  padding: 24px 8px;
}
.fs-check {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.fs-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 6px;
}
.fs-sub {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── STATS BAR ── */
.hero-stats-bar {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.hero-stats-inner {
  display: flex;
  justify-content: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.hstat {
  flex: 1;
  text-align: center;
  padding: 18px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.hstat:last-child {
  border-right: none;
}
.hstat-num {
  font-size: 26px;
  font-weight: 900;
  color: #67e8f9;
  display: block;
}
.hstat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--g50);
  border-bottom: 1px solid var(--g200);
  padding: 12px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 28px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.ti {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--g900);
}
.ti-ico {
  font-size: 18px;
}
.ti-sub {
  font-size: 11px;
  color: var(--g400);
  font-weight: 400;
}

/* ── SECTIONS ── */
section {
  padding: 88px 0;
}
.s-alt {
  background: var(--g50);
}
.s-dark {
  background: linear-gradient(160deg, var(--azul-600) 0%, var(--navy) 100%);
  color: #fff;
}
.s-teal {
  background: linear-gradient(135deg, var(--teal) 0%, #0a4a5e 100%);
  color: #fff;
}
.s-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--verde-ligth);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.s-dark .s-label,
.s-teal .s-label {
  color: #67e8f9;
}
.s-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.s-dark .s-title,
.s-teal .s-title {
  color: #fff;
}
.s-sub {
  font-size: 17px;
  color: var(--g600);
  line-height: 1.75;
  max-width: 580px;
}
.s-dark .s-sub,
.s-teal .s-sub {
  color: rgba(255, 255, 255, 0.7);
}
.s-head {
  margin-bottom: 52px;
}
.s-head.c {
  text-align: center;
}
.s-head.c .s-sub {
  margin: 0 auto;
}

/* ── 3 ANGLES ── */
.angle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.angle-card {
  border-radius: var(--r-xl);
  padding: 28px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.angle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.14);
}
.angle-card.pmp {
  background: linear-gradient(160deg, var(--azul) 0%, var(--azul-600) 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.angle-card.speed {
  background: linear-gradient(160deg, var(--azul-light) 0%, #0a4a5e 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.angle-card.public {
  background: linear-gradient(160deg, var(--verde-ligth) 0%, var(--teal) 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.ac-ico {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.ac-tag {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}
.ac-title {
  font-size: 19px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.ac-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}
.ac-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  margin-top: 16px;
}

/* ── DIFFERENTIATORS ── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.diff-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1.5px solid var(--g200);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.diff-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(13, 110, 138, 0.1);
  transform: translateY(-2px);
}
.diff-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.diff-ico.t {
  background: var(--teal-lt);
}
.diff-ico.n {
  background: rgba(15, 44, 94, 0.08);
}
.diff-ico.o {
  background: rgba(232, 73, 15, 0.08);
}
.diff-ico.g {
  background: var(--gold-lt);
}
.diff-text strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.diff-text span {
  font-size: 13px;
  color: var(--g600);
  line-height: 1.6;
}
.diff-highlight {
  background: var(--teal-lt);
  border: 1.5px solid rgba(13, 110, 138, 0.2);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  display: inline-block;
  margin-top: 8px;
}

/* ── PLAN ── */
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.period-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.period-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 22px 24px;
  border: 1.5px solid var(--g200);
  transition: border-color 0.2s;
}
.period-card:hover {
  border-color: var(--teal);
}
.pc-period {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--teal);
  margin-bottom: 8px;
}
.pc-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.pc-subjects {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pc-subjects li {
  font-size: 13px;
  color: var(--g600);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-subjects li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}
.electiva-box {
  background: linear-gradient(135deg, var(--teal-lt), #d0eaf0);
  border: 1.5px solid rgba(13, 110, 138, 0.25);
  border-radius: var(--r);
  padding: 16px;
  margin-top: 4px;
}
.eb-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}
.eb-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.eb-tag {
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.il-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.il-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.il-ico.t {
  background: var(--teal-lt);
}
.il-ico.n {
  background: rgba(15, 44, 94, 0.08);
}
.il-ico.o {
  background: rgba(232, 73, 15, 0.08);
}
.il-text strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 3px;
}
.il-text span {
  font-size: 13px;
  color: var(--g600);
  line-height: 1.55;
}

/* ── CAREERS ── */
.career-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.career-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 24px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.career-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
.cc-ico {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}
.cc-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.cc-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.cc-salary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(103, 232, 249, 0.12);
  border: 1px solid rgba(103, 232, 249, 0.25);
  color: var(--verde-ligth);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-top: 10px;
}

/* ── FINANCING ── */
.fin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.fin-card {
  border-radius: var(--r-lg);
  padding: 22px;
  border: 1.5px solid var(--g200);
  background: #fff;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.fin-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(13, 110, 138, 0.1);
}
.fin-card.star {
  background: linear-gradient(135deg, var(--navy), #1a4080);
  border-color: transparent;
  color: #fff;
}
.fin-icon {
  font-size: 30px;
  margin-bottom: 10px;
}
.fin-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.fin-card.star .fin-title {
  color: #fff;
}
.fin-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fin-list li {
  font-size: 12px;
  color: var(--g600);
  display: flex;
  gap: 7px;
}
.fin-card.star .fin-list li {
  color: rgba(255, 255, 255, 0.8);
}
.fin-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 800;
  flex-shrink: 0;
}
.fin-card.star .fin-list li::before {
  color: #67e8f9;
}
.fin-banner {
  background: linear-gradient(135deg, var(--gold-lt), #fff3cc);
  border: 2px solid #f5d76e;
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}
.fb-pct {
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.fb-title {
  font-size: 17px;
  font-weight: 800;
  color: #7a5200;
  margin-bottom: 4px;
}
.fb-desc {
  font-size: 13px;
  color: #a37000;
  line-height: 1.5;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--g200);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.14);
}
.tc-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.tc-star {
  color: #f59e0b;
  font-size: 16px;
}
.tc-text {
  font-size: 14px;
  color: var(--g600);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.tc-name {
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
}
.tc-role {
  font-size: 12px;
  color: var(--g400);
}
.tc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-lt);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-top: 12px;
  align-self: flex-start;
}

/* ── FAQ ── */
.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1.5px solid var(--g200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: var(--teal);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}
.faq-q span {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.faq-item.open .faq-q span {
  color: var(--teal);
}
.faq-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-lt);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.2s;
}
.faq-item.open .faq-ico {
  transform: rotate(45deg);
  background: var(--teal);
  color: #fff;
}
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--g600);
  line-height: 1.8;
}
.faq-item.open .faq-a {
  display: block;
}

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul) 100%);
  color: #fff;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='.8' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E")
    center/60px 60px;
}
.final-cta h2 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
  position: relative;
}
.final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.btn-big-cyan {
  background: linear-gradient(135deg, var(--verde-ligth), var(--verde-ligth));
  color: var(--azul);
  font-weight: 900;
  font-size: 17px;
  padding: 18px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.btn-big-cyan:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(6, 182, 212, 0.45);
}
.btn-big-wa {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 32px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.btn-big-wa:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}
.final-legal {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 36px;
  position: relative;
  line-height: 1.9;
}

/* ── FOOTER ── */
footer {
  background: var(--azul-600);
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  padding: 28px;
  font-size: 13px;
  line-height: 1.9;
}
footer strong {
  color: rgba(255, 255, 255, 0.75);
}

/* ── FLOAT WA ── */
.fwa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
}
.fwa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: fwa-p 2.5s ease infinite;
}
@keyframes fwa-p {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
.fwa-btn {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1ebe5a, #25d366);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  cursor: pointer;
  border: none;
  transition: transform 0.2s;
}
.fwa-btn:hover {
  transform: scale(1.1);
}
.fwa-tooltip {
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--g900);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.fwa:hover .fwa-tooltip {
  opacity: 1;
}
.fwa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--g900);
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.counter {
  display: inline-block;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .form-card {
    position: static;
  }
  .angle-grid {
    grid-template-columns: 1fr;
  }
  .diff-grid {
    grid-template-columns: 1fr;
  }
  .plan-grid {
    grid-template-columns: 1fr;
  }
  .career-grid {
    grid-template-columns: 1fr;
  }
  .fin-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats-inner {
    flex-wrap: wrap;
  }
  .hstat {
    flex: 1 0 45%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}
@media (max-width: 600px) {
  section {
    padding: 60px 0;
  }
  .hero {
    padding: 48px 0 0;
  }
  .hero h1 {
    font-size: 28px;
  }
  .fin-grid {
    grid-template-columns: 1fr;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .fin-banner {
    flex-direction: column;
    text-align: center;
  }
  .fb-pct {
    font-size: 40px;
  }
}
