:root {
  --navy: #0A1C33;
  --navy-2: #12335C;
  --gold: #BAA14F;
  --gold-light: #E8DDAF;
  --ink: #172033;
  --muted: #5B6472;
  --line: #D9DEE7;
  --surface: #F4F6F8;
  --white: #FFFFFF;
  --shadow: 0 18px 45px rgba(10, 28, 51, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 16px; top: 16px; z-index: 999; background: #fff; padding: 10px 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(10,28,51,.08);
  backdrop-filter: blur(10px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; flex-direction: row; align-items: center; gap: 10px; text-decoration: none; line-height: 1.15; }
.brand-logo { width: 48px; height: 48px; flex: 0 0 48px; object-fit: contain; border-radius: 10px; }
.brand-copy { display: inline-flex; flex-direction: column; min-width: 0; }
.brand-main { color: var(--navy); font-size: 1.16rem; letter-spacing: .035em; font-weight: 700; }
.brand-main strong { color: var(--gold); }
.brand-tagline { margin-top: 5px; color: var(--gold); text-transform: uppercase; font-size: .56rem; letter-spacing: .09em; white-space: nowrap; }
.main-nav { display: flex; gap: 24px; align-items: center; }
.main-nav a { text-decoration: none; color: var(--navy); font-weight: 700; font-size: .92rem; }
.main-nav a:hover { color: var(--gold); }
.menu-button { display: none; border: 1px solid var(--line); background: #fff; color: var(--navy); border-radius: 10px; padding: 8px 12px; font-weight: 700; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(186,161,79,.19), transparent 27%),
    linear-gradient(135deg, #fff 0%, #F6F8FA 53%, #EDF1F6 100%);
  padding: 90px 0;
}
.hero::before, .hero::after { content: ""; position: absolute; border: 1px solid rgba(186,161,79,.3); transform: rotate(35deg); }
.hero::before { width: 250px; height: 250px; right: -50px; top: -130px; }
.hero::after { width: 190px; height: 190px; right: 17%; bottom: -130px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); align-items: center; gap: 70px; position: relative; z-index: 1; }
.eyebrow { margin: 0 0 14px; color: var(--gold); font-size: .8rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; color: var(--navy); line-height: 1.16; }
h1 { max-width: 720px; font-size: clamp(2.65rem, 6vw, 5.15rem); letter-spacing: -.045em; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.035em; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
.hero-text { max-width: 680px; font-size: 1.18rem; color: var(--muted); margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.button { display: inline-flex; justify-content: center; align-items: center; border: 0; border-radius: 12px; padding: 14px 22px; text-decoration: none; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: #fff; box-shadow: 0 12px 25px rgba(10,28,51,.18); }
.button-primary:hover { background: var(--navy-2); }
.button-secondary { background: transparent; color: var(--navy); border: 1px solid rgba(10,28,51,.22); }
.button-gold { background: var(--gold); color: var(--navy); width: 100%; }
.trust-list { display: flex; flex-wrap: wrap; gap: 14px 24px; padding: 0; margin: 0; list-style: none; color: var(--navy); font-size: .92rem; font-weight: 700; }
.trust-list li::before { content: "✓"; color: var(--gold); margin-right: 8px; }

.price-card { background: var(--navy); color: #fff; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); position: relative; }
.price-card::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(186,161,79,.45); border-radius: 15px; pointer-events: none; }
.price-label { display: inline-block; color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-weight: 800; font-size: .82rem; }
.price { font-size: clamp(3.4rem, 7vw, 5.4rem); font-weight: 900; line-height: 1; margin: 17px 0 4px; letter-spacing: -.06em; }
.price span { font-size: .48em; vertical-align: top; margin-right: 4px; }
.price-tax { margin: 0 0 20px; color: #DCE5EF; }
.price-divider { height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 20px 0; }
.price-card > p { color: #fff; }

.section { padding: 88px 0; }
.section-light { background: var(--surface); }
.section-heading { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-heading p:last-child { color: var(--muted); font-size: 1.05rem; }
.section-heading-left { margin-left: 0; text-align: left; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { background: #fff; padding: 30px; border-radius: 18px; border: 1px solid rgba(10,28,51,.08); box-shadow: 0 10px 28px rgba(10,28,51,.06); }
.feature-card p { color: var(--muted); margin-bottom: 0; }
.feature-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-light); color: var(--navy); font-weight: 900; margin-bottom: 22px; }
.profiles-panel { margin-top: 28px; padding: 38px; border-radius: var(--radius); background: var(--navy); color: #fff; display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: start; }
.profiles-panel h3 { color: #fff; font-size: 1.75rem; }
.profiles-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; list-style: none; padding: 0; margin: 0; }
.profiles-list li::before { content: "✓"; color: var(--gold); font-weight: 900; margin-right: 10px; }
.legal-note { margin: 20px 0 0; color: var(--muted); font-size: .9rem; text-align: center; }

.process-section { background: #fff; }
.process-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.process-list li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 24px; background: var(--surface); border-radius: 16px; }
.process-list li > span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--navy); font-weight: 900; font-size: 1.15rem; }
.process-list p { color: var(--muted); margin: 0; }

.contact-section { background: linear-gradient(135deg, var(--navy), #112D4D); color: #fff; }
.contact-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 64px; align-items: start; }
.contact-copy h2 { color: #fff; }
.contact-copy > p { color: #DCE5EF; }
.contact-data { margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); }
.contact-data a { color: #fff; }
.lead-form { background: #fff; color: var(--ink); padding: 34px; border-radius: var(--radius); box-shadow: 0 20px 50px rgba(0,0,0,.16); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.lead-form label { display: grid; gap: 7px; font-weight: 700; color: var(--navy); margin-bottom: 18px; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; border: 1px solid #C9D0DA; border-radius: 10px; padding: 12px 13px; background: #fff; color: var(--ink); outline: none; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(186,161,79,.2); }
.consent { display: flex !important; grid-template-columns: 20px 1fr; align-items: start; gap: 10px !important; font-weight: 400 !important; font-size: .9rem; }
.consent input { width: auto; margin-top: 4px; }
.consent a { color: var(--navy-2); font-weight: 700; }
.form-submit { width: 100%; }
.form-help { text-align: center; color: var(--muted); font-size: .82rem; margin: 10px 0 0; }
.honeypot { position: absolute; overflow: hidden; clip: rect(0 0 0 0); height: 1px; width: 1px; margin: -1px; padding: 0; border: 0; }

.site-footer { background: #071525; color: #DCE5EF; padding: 36px 0; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 22px 40px; align-items: center; }
.footer-inner p { margin: 3px 0 0; }
.footer-links { display: grid; text-align: right; gap: 4px; }
.footer-links a { color: #DCE5EF; }
.copyright { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; color: #AAB8C8; font-size: .86rem; }

.simple-page { min-height: 100vh; background: var(--surface); }
.simple-shell { width: min(860px, calc(100% - 40px)); margin: 0 auto; padding: 70px 0; }
.simple-card { background: #fff; border-radius: var(--radius); padding: 42px; box-shadow: var(--shadow); }
.simple-card h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
.simple-card h2 { font-size: 1.5rem; margin-top: 32px; }
.simple-card p, .simple-card li { color: var(--muted); }
.warning { background: #FFF4D8; border-left: 4px solid var(--gold); padding: 14px 16px; color: var(--ink) !important; }

@media (max-width: 900px) {
  .hero-grid, .contact-grid, .profiles-panel { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .hero { padding: 70px 0; }
  .price-card { max-width: 520px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1120px); }
  .header-inner { min-height: 68px; }
  .menu-button { display: inline-flex; }
  .main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; padding: 18px 20px 22px; box-shadow: 0 14px 25px rgba(10,28,51,.11); flex-direction: column; align-items: flex-start; }
  .main-nav.is-open { display: flex; }
  .brand-logo { width: 42px; height: 42px; flex-basis: 42px; }
  .brand-tagline { display: none; }
  .hero { padding: 58px 0; }
  h1 { font-size: 2.65rem; }
  .section { padding: 64px 0; }
  .profiles-list, .form-grid { grid-template-columns: 1fr; }
  .profiles-panel, .lead-form, .price-card { padding: 26px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { text-align: left; }
}


.form-status {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1.5;
}

.form-status.is-success {
  color: #0A1C33;
  background: #eef7ee;
  border: 1px solid #7ab67a;
}

.form-status.is-error {
  color: #7a1d1d;
  background: #fff1f1;
  border: 1px solid #d48a8a;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}


/* V5 - Sitio corporativo */
.hero-corporate .hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); }
.intro-card {
  background: #fff;
  padding: 38px;
  border-radius: var(--radius);
  border: 1px solid rgba(10,28,51,.08);
  box-shadow: var(--shadow);
}
.intro-card h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); }
.summary-list { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 12px; }
.summary-list li { color: var(--navy); font-weight: 700; }
.summary-list li::before { content: "✓"; color: var(--gold); margin-right: 10px; font-weight: 900; }

.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.about-copy > p { color: var(--muted); font-size: 1.08rem; }
.about-highlights { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.about-highlights span { background: var(--gold-light); color: var(--navy); border-radius: 999px; padding: 9px 14px; font-weight: 800; font-size: .88rem; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  position: relative;
  min-height: 220px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(10,28,51,.08);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(10,28,51,.05);
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(186,161,79,.3);
}
.service-number { display: inline-block; color: var(--gold); font-weight: 900; letter-spacing: .14em; margin-bottom: 26px; }
.service-card p { color: var(--muted); margin-bottom: 0; }

.package-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(186,161,79,.18), transparent 24%),
    linear-gradient(135deg, #fff 0%, #F4F7FA 100%);
}
.package-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: 64px; align-items: center; }
.package-lead { font-size: 1.14rem; color: var(--muted); }
.package-list { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 12px; }
.package-list li::before { content: "✓"; color: var(--gold); font-weight: 900; margin-right: 10px; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.profile-tags span { padding: 8px 12px; border: 1px solid rgba(10,28,51,.14); border-radius: 999px; background: #fff; color: var(--navy); font-weight: 700; font-size: .87rem; }
.legal-note-left { text-align: left; }

.why-section { background: var(--surface); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-grid article { background: #fff; padding: 26px; border-radius: 18px; border-top: 4px solid var(--gold); box-shadow: 0 8px 22px rgba(10,28,51,.05); }
.why-grid strong { color: var(--gold); font-size: 1.05rem; }
.why-grid h3 { margin-top: 18px; }
.why-grid p { color: var(--muted); margin-bottom: 0; }

@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-corporate .hero-grid, .about-grid, .package-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .services-grid, .why-grid { grid-template-columns: 1fr; }
  .intro-card { padding: 26px; }
}


/* V6 - Paquetes, presentación e información corporativa */
.presentation-section { background: #fff; }
.presentation-frame {
  display: block;
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,28,51,.08);
  background: #fff;
}
.presentation-frame img { display: block; width: 100%; height: auto; }

.packages-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(186,161,79,.14), transparent 24%),
    linear-gradient(135deg, #F6F8FA 0%, #fff 52%, #F1F4F8 100%);
}
.package-comparison { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.package-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(10,28,51,.1);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 12px 32px rgba(10,28,51,.07);
}
.package-featured {
  background: var(--navy);
  color: #fff;
  transform: translateY(-8px);
  border: 2px solid var(--gold);
}
.package-featured h3, .package-featured .package-price, .package-featured .package-duration { color: #fff; }
.package-featured li { color: #E9EFF6; }
.package-chip {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--gold-light);
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
  margin-bottom: 18px;
}
.package-card h3 { font-size: 1.5rem; min-height: 58px; }
.package-price { color: var(--navy); font-size: 2.25rem; font-weight: 900; line-height: 1.05; letter-spacing: -.035em; }
.package-price small { font-size: .72rem; letter-spacing: 0; white-space: nowrap; }
.package-duration { color: var(--gold); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; margin: 10px 0 22px; }
.package-card ul { padding-left: 20px; margin: 0 0 28px; flex-grow: 1; }
.package-card li { margin-bottom: 10px; color: var(--muted); }
.package-card .button { width: 100%; }
.packages-note { max-width: 820px; margin: 28px auto 0; text-align: center; color: var(--muted); font-size: .9rem; }

.package-gallery-section { background: var(--navy); }
.package-gallery-section h2 { color: #fff; }
.package-gallery-section .section-heading p:last-child { color: #DCE5EF; }
.package-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.package-gallery a {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(186,161,79,.5);
  box-shadow: 0 16px 35px rgba(0,0,0,.22);
  background: #fff;
  transition: transform .2s ease;
}
.package-gallery a:hover { transform: translateY(-5px); }
.package-gallery img { display: block; width: 100%; height: auto; }

.faq-section { background: #fff; }
.faq-container { max-width: 900px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { background: var(--surface); border: 1px solid rgba(10,28,51,.08); border-radius: 14px; padding: 0 20px; }
.faq-list summary { cursor: pointer; color: var(--navy); font-weight: 800; padding: 18px 0; }
.faq-list details[open] summary { color: var(--gold); }
.faq-list p { margin: 0; padding: 0 0 18px; color: var(--muted); }

.footer-legal { max-width: 650px; color: #AAB8C8; font-size: .82rem; }

@media (max-width: 1000px) {
  .package-comparison { grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }
  .package-featured { transform: none; order: -1; }
  .package-card h3 { min-height: auto; }
}
@media (max-width: 820px) {
  .package-gallery { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}


/* V7 - Campo dinámico de vacantes */
.field-note {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.4;
  font-weight: 500;
}

#vacantes-field[hidden] {
  display: none !important;
}


/* V10 - Selección múltiple de paquetes y servicios */
.interest-fieldset {
  grid-column: 1 / -1;
  border: 1px solid #C9D0DA;
  border-radius: 12px;
  padding: 18px;
  margin: 0 0 18px;
  min-width: 0;
}

.interest-fieldset:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(186,161,79,.2);
}

.interest-fieldset legend {
  padding: 0 8px;
  font-weight: 800;
  color: var(--navy);
}

.interest-intro {
  margin: 0 0 13px;
}

.interest-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lead-form .interest-option {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  border: 1px solid #D7DCE4;
  border-radius: 10px;
  padding: 11px 12px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.lead-form .interest-option:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.lead-form .interest-option:has(input:checked) {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(186,161,79,.18);
  background: rgba(186,161,79,.07);
}

.lead-form .interest-option input {
  width: auto;
  flex: 0 0 auto;
  margin: 3px 0 0;
  accent-color: var(--navy);
}

.interest-option span {
  display: grid;
  gap: 2px;
  line-height: 1.3;
}

.interest-option small {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 600;
}

.field-error {
  display: block;
  margin-top: 10px;
  color: #A12622;
  font-size: .82rem;
  font-weight: 700;
}

.field-error[hidden] {
  display: none !important;
}

@media (max-width: 640px) {
  .interest-options {
    grid-template-columns: 1fr;
  }
}


/* V12 — Experiencia visual renovada */
:root {
  --navy-deep: #061426;
  --cream: #FBFAF6;
  --green: #18A76F;
  --shadow-soft: 0 24px 60px rgba(10, 28, 51, .10);
}

body { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body::selection { background: var(--gold); color: var(--navy); }
.site-header { transition: box-shadow .25s ease, background .25s ease; }
.site-header.is-scrolled { box-shadow: 0 12px 32px rgba(10,28,51,.1); background: rgba(255,255,255,.985); }
.main-nav a { position: relative; }
.main-nav a:not(.nav-cta)::after { content:""; position:absolute; left:0; right:100%; bottom:-8px; height:2px; background:var(--gold); transition:right .2s ease; }
.main-nav a:hover::after, .main-nav a.is-active::after { right:0; }
.main-nav a.is-active { color: var(--gold); }
.nav-cta { padding: 10px 15px; background: var(--navy); color:#fff !important; border-radius:10px; }
.nav-cta:hover { background: var(--navy-2); }

.scroll-progress { position:fixed; top:0; left:0; width:100%; height:3px; z-index:100; pointer-events:none; }
.scroll-progress span { display:block; width:0; height:100%; background:linear-gradient(90deg,var(--gold),#E5D38D); }

.hero-v12 { min-height: 720px; display:grid; align-items:center; padding: 98px 0 90px; background: linear-gradient(145deg,#fff 0%,#F8F9FB 48%,#EDF2F7 100%); }
.hero-v12::before, .hero-v12::after { display:none; }
.hero-v12 .hero-grid { grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr); gap:78px; }
.hero-v12 h1 { font-size:clamp(3rem,6vw,5.35rem); max-width:780px; }
.hero-v12 h1::after { content:""; display:block; width:96px; height:5px; margin-top:26px; border-radius:99px; background:linear-gradient(90deg,var(--gold),transparent); }
.hero-orb { position:absolute; border-radius:50%; filter:blur(2px); pointer-events:none; }
.hero-orb-one { width:340px; height:340px; right:-100px; top:-120px; background:radial-gradient(circle,rgba(186,161,79,.2),transparent 70%); }
.hero-orb-two { width:290px; height:290px; left:35%; bottom:-160px; border:1px solid rgba(10,28,51,.08); }
.hero-proof { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:34px; max-width:700px; }
.hero-proof span { padding:13px 14px; border-left:2px solid var(--gold); background:rgba(255,255,255,.65); color:var(--muted); font-size:.82rem; line-height:1.35; }
.hero-proof b { display:block; color:var(--navy); font-size:.95rem; }

.talent-dashboard { position:relative; background:var(--navy-deep); border-radius:28px; padding:28px; color:#fff; box-shadow:0 35px 80px rgba(6,20,38,.26); overflow:hidden; }
.talent-dashboard::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 85% 10%,rgba(186,161,79,.28),transparent 32%); pointer-events:none; }
.talent-dashboard::after { content:""; position:absolute; inset:10px; border:1px solid rgba(255,255,255,.08); border-radius:20px; pointer-events:none; }
.dashboard-topline,.dashboard-footer,.candidate-mini { position:relative; z-index:1; }
.dashboard-topline { display:flex; justify-content:space-between; align-items:center; gap:12px; }
.dashboard-topline>div { display:flex; align-items:center; gap:8px; color:#D8E1EB; }
.live-dot { width:9px; height:9px; background:#43D19E; border-radius:50%; box-shadow:0 0 0 6px rgba(67,209,158,.12); }
.dashboard-pill { padding:7px 11px; border:1px solid rgba(186,161,79,.45); color:var(--gold-light); border-radius:999px; font-size:.72rem; font-weight:800; }
.dashboard-title { position:relative; z-index:1; margin:42px 0 22px; }
.dashboard-title p { margin:0 0 4px; color:#9FB0C2; font-size:.84rem; text-transform:uppercase; letter-spacing:.12em; }
.dashboard-title strong { font-size:2rem; line-height:1.1; }
.candidate-stack { display:grid; gap:12px; position:relative; z-index:1; }
.candidate-mini { display:grid; grid-template-columns:44px 1fr auto; gap:12px; align-items:center; padding:14px; border:1px solid rgba(255,255,255,.09); background:rgba(255,255,255,.055); border-radius:14px; backdrop-filter:blur(8px); }
.candidate-avatar { width:44px; height:44px; display:grid; place-items:center; background:linear-gradient(145deg,var(--gold),#E6D78F); color:var(--navy); border-radius:12px; font-weight:900; }
.candidate-mini b,.candidate-mini small { display:block; }
.candidate-mini small { color:#9FB0C2; margin-top:2px; }
.match { color:#DCE8F2; font-size:.72rem; border:1px solid rgba(255,255,255,.14); border-radius:999px; padding:6px 9px; }
.dashboard-footer { display:flex; justify-content:space-between; gap:10px; margin-top:24px; color:#AEBBC9; font-size:.72rem; }
.dashboard-footer span { display:flex; align-items:center; gap:6px; }
.dashboard-footer i { width:7px; height:7px; background:var(--gold); border-radius:50%; }

.trust-strip { position:relative; z-index:2; margin-top:-28px; }
.trust-strip-grid { display:grid; grid-template-columns:repeat(4,1fr); background:#fff; border:1px solid rgba(10,28,51,.08); border-radius:20px; box-shadow:var(--shadow-soft); overflow:hidden; }
.trust-strip article { display:flex; gap:13px; align-items:center; padding:24px 20px; border-right:1px solid rgba(10,28,51,.08); }
.trust-strip article:last-child { border-right:0; }
.trust-icon { flex:0 0 auto; width:38px; height:38px; display:grid; place-items:center; border-radius:50%; background:var(--gold-light); color:var(--navy); font-size:.72rem; font-weight:900; }
.trust-strip b,.trust-strip small { display:block; }
.trust-strip b { color:var(--navy); font-size:.9rem; }
.trust-strip small { color:var(--muted); line-height:1.35; margin-top:3px; }

.service-card { transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease; }
.service-card:hover { transform:translateY(-7px); box-shadow:0 22px 42px rgba(10,28,51,.11); border-color:rgba(186,161,79,.55); }
.service-icon { width:52px; height:52px; display:grid; place-items:center; background:linear-gradient(145deg,var(--gold-light),#fff); color:var(--navy); border:1px solid rgba(186,161,79,.35); border-radius:16px; margin-bottom:16px; }
.service-icon svg { width:28px; height:28px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.service-number { position:absolute; top:26px; right:26px; margin:0; opacity:.55; }

.package-card { position:relative; transition:transform .25s ease, box-shadow .25s ease; overflow:hidden; }
.package-card:hover { transform:translateY(-7px); box-shadow:0 25px 50px rgba(10,28,51,.13); }
.package-featured:hover { transform:translateY(-14px); }
.popular-badge { position:absolute; top:18px; right:-34px; transform:rotate(37deg); width:150px; text-align:center; background:var(--gold); color:var(--navy); font-size:.68rem; font-weight:900; text-transform:uppercase; letter-spacing:.08em; padding:7px 0; }
.package-ideal { color:var(--muted); font-size:.84rem; margin:-2px 0 4px; min-height:25px; }
.package-featured .package-ideal { color:#B9C7D5; }
.package-gallery a { transition:transform .25s ease, box-shadow .25s ease; }
.package-gallery a:hover { transform:translateY(-8px) scale(1.015); box-shadow:0 28px 48px rgba(0,0,0,.3); }

.outcome-section { background:linear-gradient(135deg,var(--cream),#fff); }
.outcome-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:66px; align-items:center; }
.outcome-copy p:last-child { color:var(--muted); font-size:1.06rem; }
.outcome-cards { display:grid; gap:14px; }
.outcome-cards article { display:grid; grid-template-columns:48px 120px 1fr; gap:14px; align-items:center; padding:20px; border-radius:16px; background:#fff; border:1px solid rgba(10,28,51,.08); box-shadow:0 10px 28px rgba(10,28,51,.05); }
.outcome-cards span { width:42px; height:42px; display:grid; place-items:center; background:var(--navy); color:var(--gold); border-radius:13px; font-weight:900; }
.outcome-cards b { color:var(--navy); }
.outcome-cards p { margin:0; color:var(--muted); font-size:.9rem; }

.candidate-section { background:linear-gradient(135deg,#07182C,#0D294A); color:#fff; position:relative; overflow:hidden; }
.candidate-section::after { content:""; position:absolute; width:420px; height:420px; border-radius:50%; right:-160px; bottom:-210px; border:1px solid rgba(186,161,79,.28); }
.candidate-grid { display:grid; grid-template-columns:.78fr 1.22fr; gap:64px; align-items:start; position:relative; z-index:1; }
.candidate-copy h2 { color:#fff; }
.candidate-copy>p { color:#C7D3DF; font-size:1.06rem; }
.candidate-benefits { list-style:none; padding:0; margin:28px 0; display:grid; gap:12px; }
.candidate-benefits li::before { content:"✓"; color:var(--gold); font-weight:900; margin-right:10px; }
.candidate-note { border-left:3px solid var(--gold); padding:14px 17px; background:rgba(255,255,255,.05); border-radius:0 12px 12px 0; }
.candidate-note b { color:var(--gold-light); }
.candidate-note p { margin:4px 0 0; color:#DCE5EE; font-size:.9rem; }
.candidate-form { background:#fff; color:var(--ink); padding:34px; border-radius:var(--radius); box-shadow:0 28px 60px rgba(0,0,0,.22); }
.form-kicker { color:var(--gold); text-transform:uppercase; letter-spacing:.14em; font-size:.76rem; font-weight:900; margin-bottom:20px; }
.candidate-form label { display:grid; gap:7px; font-weight:700; color:var(--navy); margin-bottom:18px; }
.candidate-form input,.candidate-form select,.candidate-form textarea { width:100%; border:1px solid #C9D0DA; border-radius:10px; padding:12px 13px; background:#fff; color:var(--ink); outline:none; }
.candidate-form input:focus,.candidate-form select:focus,.candidate-form textarea:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(186,161,79,.2); }
.candidate-submit { width:100%; }

.contact-mini-grid { display:grid; gap:12px; margin:28px 0; }
.contact-mini-grid article { display:flex; gap:12px; padding:13px 14px; border:1px solid rgba(255,255,255,.12); border-radius:12px; background:rgba(255,255,255,.045); }
.contact-mini-grid span { color:var(--gold); }
.contact-mini-grid b,.contact-mini-grid small { display:block; }
.contact-mini-grid small { color:#B9C7D5; margin-top:2px; }

.site-footer { padding:58px 0 24px; }
.footer-grid { display:grid; grid-template-columns:1.4fr .7fr 1fr; gap:60px; }
.footer-grid h3 { color:#fff; font-size:1rem; }
.footer-grid p,.footer-grid a { color:#AEBBC9; }
.footer-brand-link { width:max-content; margin-bottom:18px; }
.footer-brand-link .brand-main { color:#fff; }
.footer-nav { display:grid; gap:8px; }
.footer-nav a { text-decoration:none; }
.footer-nav a:hover,.footer-grid a:hover { color:var(--gold); }
.footer-bottom { display:flex; justify-content:space-between; gap:24px; margin-top:38px; padding-top:20px; border-top:1px solid rgba(255,255,255,.1); color:#7F91A4; font-size:.78rem; }
.footer-bottom p { margin:0; }

.floating-actions { position:fixed; right:20px; bottom:20px; z-index:70; display:flex; flex-direction:column; align-items:flex-end; gap:10px; }
.floating-whatsapp { display:flex; align-items:center; gap:9px; text-decoration:none; background:#128C7E; color:#fff; border-radius:999px; padding:12px 16px; box-shadow:0 14px 30px rgba(0,0,0,.22); font-weight:800; font-size:.86rem; }
.floating-whatsapp svg { width:22px; height:22px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.back-to-top { width:42px; height:42px; border:0; border-radius:50%; background:var(--navy); color:#fff; font-size:1.2rem; box-shadow:0 12px 24px rgba(0,0,0,.18); cursor:pointer; opacity:0; pointer-events:none; transform:translateY(8px); transition:.2s ease; }
.back-to-top.is-visible { opacity:1; pointer-events:auto; transform:none; }

[data-reveal] { opacity:0; transform:translateY(24px); transition:opacity .65s ease,transform .65s ease; }
[data-reveal].is-visible { opacity:1; transform:none; }

@media (max-width:1050px) {
  .hero-v12 .hero-grid,.candidate-grid,.outcome-grid { grid-template-columns:1fr; }
  .talent-dashboard { max-width:680px; }
  .trust-strip-grid { grid-template-columns:repeat(2,1fr); }
  .trust-strip article:nth-child(2) { border-right:0; }
  .trust-strip article:nth-child(-n+2) { border-bottom:1px solid rgba(10,28,51,.08); }
  .footer-grid { grid-template-columns:1.2fr .8fr 1fr; gap:36px; }
}
@media (max-width:720px) {
  .main-nav .nav-cta { width:100%; text-align:center; }
  .hero-v12 { min-height:auto; padding:62px 0 76px; }
  .hero-v12 .hero-grid { gap:42px; }
  .hero-v12 h1 { font-size:2.8rem; }
  .hero-proof { grid-template-columns:1fr; }
  .talent-dashboard { padding:22px; border-radius:22px; }
  .candidate-mini { grid-template-columns:40px 1fr; }
  .candidate-mini .match { grid-column:2; justify-self:start; }
  .dashboard-footer { flex-wrap:wrap; }
  .trust-strip { margin-top:-18px; }
  .trust-strip-grid { grid-template-columns:1fr; }
  .trust-strip article { border-right:0; border-bottom:1px solid rgba(10,28,51,.08); }
  .trust-strip article:last-child { border-bottom:0; }
  .package-featured:hover { transform:translateY(-7px); }
  .outcome-cards article { grid-template-columns:44px 1fr; }
  .outcome-cards article p { grid-column:2; }
  .candidate-form { padding:24px; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .footer-bottom { flex-direction:column; }
  .floating-whatsapp span { display:none; }
  .floating-whatsapp { width:50px; height:50px; padding:0; justify-content:center; }
}
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after { scroll-behavior:auto !important; animation:none !important; transition:none !important; }
  [data-reveal] { opacity:1; transform:none; }
}


/* V13 — Plataforma de reclutamiento, vacantes y SEO */
.service-card { display:flex; flex-direction:column; }
.service-card p { flex:1; }
.service-link { display:inline-flex; align-items:center; margin-top:18px; color:var(--navy); font-weight:850; text-decoration:none; }
.service-link:hover { color:var(--gold); }

.application-section { background:linear-gradient(180deg,#fff,var(--cream)); }
.application-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.application-grid article { position:relative; padding:28px; background:#fff; border:1px solid rgba(10,28,51,.09); border-radius:20px; box-shadow:var(--shadow-soft); overflow:hidden; }
.application-grid article::after { content:""; position:absolute; width:120px; height:120px; right:-55px; top:-55px; border-radius:50%; background:rgba(186,161,79,.12); }
.application-grid article>span { display:grid; place-items:center; width:42px; height:42px; border-radius:12px; background:var(--navy); color:var(--gold-light); font-weight:900; }
.application-grid h3 { margin:18px 0 10px; color:var(--navy); }
.application-grid p { color:var(--muted); }
.application-grid small { display:inline-block; margin-top:12px; color:var(--gold-dark); font-weight:800; text-transform:uppercase; letter-spacing:.08em; }

.vacancies-section { background:#F4F6F8; }
.vacancy-toolbar { display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:14px; padding:18px; margin-bottom:18px; background:#fff; border:1px solid rgba(10,28,51,.09); border-radius:18px; box-shadow:0 14px 34px rgba(10,28,51,.06); }
.vacancy-toolbar label { display:grid; gap:7px; color:var(--navy); font-size:.78rem; font-weight:850; }
.vacancy-toolbar input,.vacancy-toolbar select { width:100%; min-height:46px; padding:10px 12px; border:1px solid #CBD2DB; border-radius:10px; background:#fff; font:inherit; color:var(--ink); }
.vacancy-toolbar input:focus,.vacancy-toolbar select:focus { outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(186,161,79,.18); }
.vacancy-status { display:flex; gap:12px; align-items:flex-start; padding:16px 18px; margin-bottom:20px; color:#4B5968; background:#fff; border-left:4px solid var(--gold); border-radius:12px; }
.vacancy-status strong,.vacancy-status small { display:block; }
.vacancy-status small { margin-top:3px; color:var(--muted); }
.status-dot { flex:0 0 auto; width:10px; height:10px; margin-top:5px; background:var(--gold); border-radius:50%; box-shadow:0 0 0 6px rgba(186,161,79,.15); }
.vacancy-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.vacancy-card { display:flex; flex-direction:column; padding:24px; background:#fff; border:1px solid rgba(10,28,51,.09); border-radius:20px; box-shadow:0 16px 38px rgba(10,28,51,.07); transition:transform .2s ease,box-shadow .2s ease; }
.vacancy-card:hover { transform:translateY(-4px); box-shadow:0 24px 48px rgba(10,28,51,.11); }
.vacancy-card[hidden] { display:none !important; }
.vacancy-card-top { display:flex; justify-content:space-between; gap:10px; align-items:center; margin-bottom:18px; color:var(--muted); font-size:.76rem; font-weight:800; }
.vacancy-tag { padding:6px 9px; background:rgba(186,161,79,.15); color:var(--gold-dark); border-radius:999px; }
.vacancy-card h3 { margin:0 0 10px; color:var(--navy); }
.vacancy-card p { flex:1; color:var(--muted); }
.vacancy-card ul { margin:16px 0 20px; padding-left:18px; color:#536170; font-size:.86rem; }
.vacancy-card .button { width:100%; }
.vacancy-empty { padding:28px; text-align:center; background:#fff; border-radius:16px; color:var(--muted); }
.section-actions { display:flex; justify-content:center; margin-top:28px; }

.agenda-section { padding-top:0; background:#fff; }
.agenda-card { display:grid; grid-template-columns:1fr auto; gap:28px; align-items:center; padding:42px; color:#fff; background:linear-gradient(135deg,var(--navy-deep),var(--navy)); border-radius:26px; box-shadow:0 28px 65px rgba(6,20,38,.23); }
.agenda-card h2 { margin:4px 0 10px; color:#fff; }
.agenda-card p:not(.eyebrow) { max-width:760px; color:#C9D4DF; }

/* Internal pages */
.internal-hero { padding:120px 0 68px; color:#fff; background:linear-gradient(145deg,var(--navy-deep),var(--navy)); }
.internal-hero .eyebrow { color:var(--gold-light); }
.internal-hero h1 { max-width:880px; margin:8px 0 16px; color:#fff; font-size:clamp(2.5rem,5vw,4.5rem); line-height:1.03; }
.internal-hero p { max-width:780px; color:#C9D4DF; font-size:1.05rem; }
.breadcrumbs { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:24px; font-size:.82rem; color:#AFC0D1; }
.breadcrumbs a { color:var(--gold-light); text-decoration:none; }
.internal-layout { display:grid; grid-template-columns:minmax(0,1fr) 340px; gap:36px; align-items:start; }
.content-card,.sidebar-card { padding:30px; background:#fff; border:1px solid rgba(10,28,51,.09); border-radius:20px; box-shadow:var(--shadow-soft); }
.content-card h2,.content-card h3,.sidebar-card h2,.sidebar-card h3 { color:var(--navy); }
.content-card p,.content-card li,.sidebar-card p { color:var(--muted); }
.content-card ul { padding-left:20px; }
.content-card section+section { margin-top:32px; padding-top:28px; border-top:1px solid #E3E7EC; }
.sidebar-card { position:sticky; top:110px; }
.sidebar-card .button { width:100%; margin-top:14px; }
.detail-badges { display:flex; flex-wrap:wrap; gap:9px; margin:20px 0; }
.detail-badges span { padding:7px 10px; border-radius:999px; background:#F0F3F6; color:var(--navy); font-size:.78rem; font-weight:800; }
.notice-box { padding:16px 18px; margin:20px 0; background:#FFF9E8; border-left:4px solid var(--gold); border-radius:10px; color:#5E5537; }
.page-list-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.page-list-card { padding:24px; background:#fff; border:1px solid rgba(10,28,51,.09); border-radius:18px; box-shadow:0 14px 34px rgba(10,28,51,.06); }
.page-list-card h2,.page-list-card h3 { color:var(--navy); }
.page-list-card p { color:var(--muted); }
.page-list-card a { color:var(--navy); font-weight:850; text-decoration:none; }
.page-list-card a:hover { color:var(--gold); }
.simple-page .simple-card { max-width:720px; }

@media (max-width: 900px) {
  .application-grid,.vacancy-grid,.page-list-grid { grid-template-columns:1fr; }
  .vacancy-toolbar { grid-template-columns:1fr; }
  .agenda-card,.internal-layout { grid-template-columns:1fr; }
  .sidebar-card { position:static; }
}
@media (max-width: 640px) {
  .agenda-card { padding:28px 22px; }
  .internal-hero { padding:102px 0 54px; }
  .content-card,.sidebar-card { padding:22px; }
}


/* V15 — Paquetes, comparación y formulario por pasos */
.package-comparison {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-custom {
  background:
    linear-gradient(180deg, rgba(186,161,79,.08), rgba(255,255,255,1) 36%),
    #fff;
  border: 1px solid rgba(186,161,79,.38);
}

.package-price-custom {
  font-size: 1.85rem;
  letter-spacing: -.02em;
}

.package-gallery-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
  margin: 0 auto;
}

.package-table-wrap {
  margin-top: 42px;
  background: #fff;
  border: 1px solid rgba(10,28,51,.1);
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(10,28,51,.08);
  overflow: hidden;
}

.package-table-heading {
  padding: 27px 30px 20px;
  background: linear-gradient(135deg, var(--navy), #102C4C);
}

.package-table-heading .eyebrow,
.package-table-heading h3 {
  color: #fff;
}

.package-table-heading h3 {
  margin: 5px 0 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.package-table {
  display: grid;
}

.package-table-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(2, minmax(120px, .75fr));
  border-top: 1px solid rgba(10,28,51,.09);
}

.package-table-row > div {
  padding: 15px 22px;
  display: flex;
  align-items: center;
}

.package-table-row > div:not(:first-child) {
  justify-content: center;
  text-align: center;
  border-left: 1px solid rgba(10,28,51,.08);
}

.package-table-header {
  background: #F5F7FA;
  color: var(--navy);
  font-weight: 900;
}

.package-table-row:not(.package-table-header) > div:first-child {
  color: var(--navy);
  font-weight: 800;
}

.table-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(33,130,86,.1);
  color: #176841;
  font-weight: 900;
}

.multi-step-form {
  position: relative;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 20px 0 30px;
}

.form-progress-item {
  appearance: none;
  border: 0;
  background: transparent;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #7A8594;
  font: inherit;
  cursor: default;
  position: relative;
}

.form-progress-item::before {
  content: "";
  position: absolute;
  top: 17px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: #D7DCE4;
  z-index: 0;
}

.form-progress-item:first-child::before {
  display: none;
}

.form-progress-item span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #E6EAF0;
  color: #667282;
  font-weight: 900;
  position: relative;
  z-index: 1;
  transition: .2s ease;
}

.form-progress-item small {
  font-weight: 800;
}

.form-progress-item.is-active span,
.form-progress-item.is-complete span {
  background: var(--gold);
  color: var(--navy);
}

.form-progress-item.is-active,
.form-progress-item.is-complete {
  color: var(--navy);
}

.form-progress-item.is-complete::before,
.form-progress-item.is-active::before {
  background: var(--gold);
}

.form-progress-item.is-complete {
  cursor: pointer;
}

.form-step[hidden] {
  display: none !important;
}

.form-step-heading {
  margin-bottom: 22px;
}

.form-step-heading > span {
  color: var(--gold-dark);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-step-heading h3 {
  margin: 6px 0 5px;
  color: var(--navy);
  font-size: 1.55rem;
}

.form-step-heading p {
  margin: 0;
  color: var(--muted);
}

.form-step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.form-step-actions-end {
  justify-content: flex-end;
}

.form-step-actions .button {
  min-width: 145px;
}

.reviews-section {
  background: linear-gradient(135deg, #F7F4EA, #FFFFFF);
}

.review-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.real-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.real-case-grid article {
  background: #fff;
  border: 1px solid rgba(10,28,51,.1);
  border-radius: 18px;
  padding: 25px;
  box-shadow: var(--shadow-soft);
}

.real-case-grid article > span {
  color: var(--gold);
  font-weight: 900;
}

.real-case-grid h3 {
  color: var(--navy);
}

@media (max-width: 900px) {
  .package-comparison {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
  }

  .package-featured {
    order: -1;
  }

  .package-gallery-two {
    grid-template-columns: 1fr;
    max-width: 540px;
  }

  .real-case-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .package-table-wrap {
    overflow-x: auto;
  }

  .package-table {
    min-width: 630px;
  }

  .package-table-row {
    grid-template-columns: 280px 170px 170px;
  }

  .package-table-row > div {
    padding: 14px 16px;
  }

  .form-progress-item small {
    font-size: .68rem;
  }

  .form-step-actions {
    flex-direction: column-reverse;
  }

  .form-step-actions .button {
    width: 100%;
  }
}

/* V15.1 — Ajuste visual premium manteniendo estructura y contenido */
:root {
  --gold-dark: #8C7430;
  --surface-2: #EEF2F7;
  --shadow: 0 20px 48px rgba(10, 28, 51, .10);
  --shadow-soft: 0 18px 42px rgba(10, 28, 51, .08);
  --radius: 24px;
}

body {
  color: #1B2433;
  background:
    radial-gradient(circle at top right, rgba(186,161,79,.08), transparent 22%),
    linear-gradient(180deg, #FFFFFF 0%, #FBFCFE 100%);
}

.container {
  width: min(1160px, calc(100% - 40px));
}

.site-header {
  background: rgba(255,255,255,.90);
  border-bottom: 1px solid rgba(10,28,51,.06);
  box-shadow: 0 10px 28px rgba(10,28,51,.04);
}

.header-inner {
  min-height: 82px;
}

.brand {
  gap: 14px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex-basis: 54px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(244,246,248,.9));
  padding: 4px;
  box-shadow: 0 10px 22px rgba(10,28,51,.08);
}

.brand-main {
  font-size: 1.2rem;
  letter-spacing: .045em;
}

.brand-tagline {
  font-size: .6rem;
  letter-spacing: .16em;
}

.main-nav {
  gap: 20px;
}

.main-nav a {
  font-size: .9rem;
  font-weight: 800;
}

.nav-cta {
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 12px 24px rgba(10,28,51,.14);
}

.hero-v12 {
  min-height: 760px;
  padding: 104px 0 96px;
  background:
    radial-gradient(circle at 82% 18%, rgba(186,161,79,.18), transparent 24%),
    radial-gradient(circle at 14% 10%, rgba(18,51,92,.06), transparent 26%),
    linear-gradient(145deg,#FFFFFF 0%,#F8FAFC 46%,#EEF3F8 100%);
}

.hero-v12 .hero-grid {
  grid-template-columns: minmax(0,1.02fr) minmax(430px,.98fr);
  gap: 84px;
}

.eyebrow {
  color: var(--gold-dark);
  letter-spacing: .18em;
}

.hero-v12 h1 {
  max-width: 820px;
  text-wrap: balance;
}

.hero-text {
  max-width: 700px;
  font-size: 1.14rem;
  line-height: 1.75;
  color: #5A6473;
}

.hero-actions {
  margin-bottom: 34px;
}

.button {
  border-radius: 999px;
  padding: 15px 24px;
  font-size: .96rem;
  letter-spacing: .01em;
}

.button-primary {
  box-shadow: 0 16px 30px rgba(10,28,51,.16);
}

.button-secondary {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(10,28,51,.14);
  box-shadow: 0 8px 20px rgba(10,28,51,.05);
}

.hero-proof {
  gap: 14px;
}

.hero-proof span {
  border: 1px solid rgba(10,28,51,.07);
  border-left: 3px solid var(--gold);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 26px rgba(10,28,51,.05);
  padding: 15px 16px;
}

.talent-dashboard {
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
    linear-gradient(145deg, #071829, #0C2340 55%, #112F54 100%);
  box-shadow: 0 38px 84px rgba(6,20,38,.28);
}

.candidate-mini {
  border-radius: 16px;
  background: rgba(255,255,255,.06);
}

.match {
  background: rgba(255,255,255,.06);
}

.trust-strip {
  margin-top: -34px;
}

.trust-strip-grid {
  border: 1px solid rgba(10,28,51,.06);
  border-radius: 24px;
  box-shadow: 0 24px 55px rgba(10,28,51,.08);
}

.trust-strip article {
  padding: 26px 22px;
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--gold-light), #FFF8DB);
}

.section {
  padding: 96px 0;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading h2 {
  text-wrap: balance;
}

.section-heading p:last-child {
  max-width: 760px;
  margin-inline: auto;
  line-height: 1.72;
}

.about-section,
.presentation-section,
.faq-section,
.agenda-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(250,251,253,1));
}

.about-copy p {
  line-height: 1.8;
}

.about-highlights span,
.profile-tags span,
.detail-badges span {
  border: 1px solid rgba(186,161,79,.18);
  box-shadow: 0 6px 16px rgba(10,28,51,.04);
}

.presentation-frame {
  border-radius: 28px;
  box-shadow: 0 28px 58px rgba(10,28,51,.12);
}

.services-grid {
  gap: 22px;
}

.service-card,
.package-card,
.page-list-card,
.content-card,
.sidebar-card,
.vacancy-card,
.application-grid article,
.real-case-grid article,
.feature-card,
.lead-form,
.candidate-form,
.simple-card {
  border: 1px solid rgba(10,28,51,.06);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(10,28,51,.07);
}

.service-card {
  min-height: 238px;
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(249,251,253,1));
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(186,161,79,.18));
}

.service-number {
  opacity: .25;
  font-size: 1rem;
}

.service-link {
  margin-top: 20px;
}

.package-card {
  padding: 32px;
  background: linear-gradient(180deg, #fff 0%, #FAFBFD 100%);
}

.package-featured {
  background:
    radial-gradient(circle at top right, rgba(186,161,79,.18), transparent 30%),
    linear-gradient(180deg, #0C213C 0%, #0A1C33 100%);
  box-shadow: 0 28px 58px rgba(10,28,51,.18);
}

.package-chip,
.dashboard-pill,
.vacancy-tag {
  letter-spacing: .11em;
}

.package-price {
  font-size: 2.35rem;
}

.package-card ul li {
  line-height: 1.65;
}

.package-table-wrap {
  border-radius: 26px;
  box-shadow: 0 24px 52px rgba(10,28,51,.10);
}

.package-table-heading {
  padding: 30px 34px 22px;
}

.package-table-row:nth-child(even):not(.package-table-header) {
  background: rgba(244,246,248,.65);
}

.package-gallery a,
.package-gallery-two a {
  border-radius: 22px;
}

.reviews-section,
.packages-section,
.section-light,
.vacancies-section,
.why-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(186,161,79,.08), transparent 24%),
    linear-gradient(180deg, #F7F9FC 0%, #FFFFFF 100%);
}

.faq-list details,
.process-list li,
.vacancy-toolbar,
.vacancy-status,
.agenda-card,
.package-table-wrap,
.interest-fieldset {
  border-radius: 18px;
}

.faq-list details {
  background: linear-gradient(180deg, #FFFFFF, #F9FBFD);
  box-shadow: 0 12px 28px rgba(10,28,51,.05);
}

.contact-section,
.candidate-section,
.internal-hero,
.site-footer {
  background:
    radial-gradient(circle at top right, rgba(186,161,79,.12), transparent 25%),
    linear-gradient(145deg, #07182B 0%, #0A1C33 55%, #102D4C 100%);
}

.contact-grid,
.candidate-grid,
.outcome-grid,
.internal-layout,
.footer-grid {
  gap: 46px;
}

.lead-form,
.candidate-form {
  padding: 36px;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.candidate-form input,
.candidate-form select,
.candidate-form textarea,
.vacancy-toolbar input,
.vacancy-toolbar select {
  border-radius: 12px;
  padding: 13px 14px;
  background: #FCFDFE;
}

.field-note,
.form-help,
.form-step-heading p,
.packages-note,
.legal-note,
.footer-legal,
.candidate-note p,
.contact-copy > p,
.agenda-card p:not(.eyebrow) {
  line-height: 1.7;
}

.multi-step-form,
.lead-form,
.candidate-form {
  position: relative;
}

.form-progress-item span {
  box-shadow: 0 8px 16px rgba(10,28,51,.06);
}

.form-step-actions .button,
.package-card .button,
.sidebar-card .button,
.vacancy-card .button {
  min-height: 50px;
}

.footer-brand-link .brand-logo {
  box-shadow: none;
  background: rgba(255,255,255,.92);
}

.footer-bottom {
  border-top-color: rgba(255,255,255,.12);
}

.simple-page {
  background: linear-gradient(180deg, #F5F8FB, #FFFFFF);
}

@media (max-width: 900px) {
  .section {
    padding: 78px 0;
  }

  .hero-v12 {
    min-height: auto;
    padding: 82px 0 78px;
  }

  .trust-strip {
    margin-top: -18px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .hero-v12 h1 {
    font-size: 2.7rem;
  }

  .hero-proof span,
  .service-card,
  .package-card,
  .content-card,
  .sidebar-card,
  .lead-form,
  .candidate-form,
  .simple-card {
    border-radius: 18px;
  }

  .lead-form,
  .candidate-form,
  .simple-card {
    padding: 24px;
  }
}

/* V15.2 — Confirmaciones de formularios */
.form-result {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 16px;
  line-height: 1.6;
  font-weight: 700;
}
.form-result.is-success {
  color: #0A4A32;
  background: #EAF8F1;
  border: 1px solid #8CCCAF;
}
.form-result.is-error {
  color: #7A1D1D;
  background: #FFF1F1;
  border: 1px solid #D99A9A;
}
.form-result a { font-weight: 900; }
.form-is-sending { opacity: .72; cursor: wait; }

/* V15.3 — Cobertura, sectores, confianza y ventas */
.coverage-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(186,161,79,.18), transparent 27%),
    linear-gradient(145deg, #F7F9FC 0%, #FFFFFF 56%, #F2F5F9 100%);
}
.coverage-section::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  left: -170px;
  bottom: -210px;
  border-radius: 50%;
  border: 1px solid rgba(10,28,51,.08);
}
.coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.coverage-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }
.coverage-note {
  padding-left: 17px;
  border-left: 3px solid var(--gold);
  font-size: .92rem !important;
}
.coverage-panel {
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 12%, rgba(186,161,79,.24), transparent 30%),
    linear-gradient(145deg, #07182B, #0A1C33 55%, #12335C);
  border-radius: 28px;
  border: 1px solid rgba(186,161,79,.45);
  box-shadow: 0 30px 65px rgba(10,28,51,.2);
}
.coverage-panel h3 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.55rem); margin: 12px 0 22px; }
.coverage-panel > p { color: #BBC8D5; margin: 22px 0 0; font-size: .84rem; }
.coverage-base {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(186,161,79,.16);
  color: var(--gold-light);
  border: 1px solid rgba(186,161,79,.4);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
}
.coverage-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.coverage-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #E6EDF5;
  font-size: .8rem;
  font-weight: 750;
}

.presentation-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.presentation-actions .button-gold { width: auto; }
.presentation-actions .button { min-width: 210px; }

.sectors-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(186,161,79,.10), transparent 22%),
    linear-gradient(180deg, #FFFFFF 0%, #F7F9FC 100%);
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.sectors-grid article {
  position: relative;
  min-height: 205px;
  padding: 26px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(10,28,51,.07);
  box-shadow: 0 16px 38px rgba(10,28,51,.065);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.sectors-grid article:hover { transform: translateY(-5px); box-shadow: 0 24px 46px rgba(10,28,51,.11); }
.sectors-grid article::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -50px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(186,161,79,.09);
}
.sectors-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--gold-light);
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 21px;
}
.sectors-grid article h3, .sectors-grid article p { position: relative; z-index: 1; }
.sectors-grid article p { color: var(--muted); margin-bottom: 0; }
.sectors-grid .sector-featured {
  grid-column: span 2;
  color: #fff;
  background:
    radial-gradient(circle at 92% 10%, rgba(186,161,79,.28), transparent 30%),
    linear-gradient(145deg, #07182B, #0D294A);
  border-color: rgba(186,161,79,.5);
}
.sectors-grid .sector-featured h3 { color: #fff; }
.sectors-grid .sector-featured p { color: #D1DCE7; max-width: 560px; }
.sectors-grid .sector-featured > span { background: var(--gold); }
.sectors-note { max-width: 830px; margin: 26px auto 0; text-align: center; color: var(--muted); font-size: .88rem; }

.formal-trust-section {
  background:
    radial-gradient(circle at 90% 15%, rgba(186,161,79,.11), transparent 22%),
    linear-gradient(145deg, #F7F4EA, #FFFFFF 58%, #F5F8FB);
}
.formal-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.formal-trust-grid article {
  padding: 26px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(10,28,51,.07);
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(10,28,51,.06);
}
.formal-trust-grid article > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 900;
  margin-bottom: 18px;
}
.formal-trust-grid article p { color: var(--muted); margin-bottom: 0; }

.contact-data a[href*="wa.me"],
.footer-grid a[href*="wa.me"] { color: var(--gold-light); font-weight: 850; }
.confirmation-note { margin: 10px 0 0; text-align: center; color: #AEBBC9; font-size: .8rem; }
.candidate-form .confirmation-note { color: var(--muted); }

@media (max-width: 1050px) {
  .coverage-grid { grid-template-columns: 1fr; }
  .coverage-panel { max-width: 760px; }
  .sectors-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .formal-trust-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .coverage-panel { padding: 26px; border-radius: 22px; }
  .sectors-grid, .formal-trust-grid { grid-template-columns: 1fr; }
  .sectors-grid .sector-featured { grid-column: auto; }
  .presentation-actions { flex-direction: column; }
  .presentation-actions .button { width: 100%; min-width: 0; }
}


/* V15.4 - Reclutamiento directo y claridad de modelo */
.service-model-section {
  padding-top: 32px;
  background: linear-gradient(180deg, #fff 0%, #F5F8FB 100%);
}
.service-model-card {
  display: grid;
  grid-template-columns: 190px minmax(0,1fr) 310px;
  gap: 34px;
  align-items: center;
  padding: 40px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 10%, rgba(186,161,79,.22), transparent 28%),
    linear-gradient(145deg, #061426, #0A1C33 62%, #12335C);
  border: 1px solid rgba(186,161,79,.45);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(6,20,38,.22);
}
.service-model-card h2 { color:#fff; margin-bottom:14px; font-size:clamp(2rem,3.5vw,3.1rem); }
.service-model-card p { color:#D7E1EB; margin:0 0 12px; }
.service-model-card p strong { color:#fff; }
.service-model-card .eyebrow { color:#E8DDAF; }
.service-model-badge {
  display:grid;
  place-items:center;
  min-height:150px;
  padding:22px;
  text-align:center;
  color:#0A1C33;
  background:linear-gradient(145deg,#E8DDAF,#BAA14F);
  border-radius:22px;
  font-weight:950;
  letter-spacing:.1em;
  line-height:1.35;
}
.service-model-list { list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.service-model-list li { padding:12px 14px; color:#fff; background:rgba(255,255,255,.065); border:1px solid rgba(255,255,255,.1); border-radius:12px; font-weight:700; }
.service-model-list li::before { content:'✓'; color:#BAA14F; margin-right:9px; font-weight:900; }
.contact-model-note { padding:12px 14px; color:#fff !important; background:rgba(186,161,79,.14); border-left:3px solid #BAA14F; border-radius:0 12px 12px 0; font-weight:750; }
.outsourcing-notice { margin-bottom:26px; }
.footer-outsourcing-note { margin:12px 0 0; color:#E8DDAF !important; font-size:.82rem; font-weight:700; }
.package-duration { line-height:1.45; }
@media (max-width: 980px) {
  .service-model-card { grid-template-columns:1fr; }
  .service-model-badge { min-height:auto; }
}
@media (max-width: 720px) {
  .service-model-section { padding-top:18px; }
  .service-model-card { padding:26px 22px; border-radius:22px; gap:24px; }
}


/* V15.6.2 — Garantía técnica corregida a 60 días */
.launch-notice {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
  padding: 11px 16px;
  border: 1px solid rgba(186,161,79,.4);
  border-radius: 999px;
  background: rgba(186,161,79,.08);
  color: var(--navy);
  font-size: .9rem;
}

.package-card .package-chip {
  max-width: calc(100% - 12px);
  white-space: normal;
  line-height: 1.25;
}

.package-card h3 {
  min-height: 78px;
}

.package-card ul {
  padding-left: 22px;
}

.package-card li::marker {
  color: var(--gold);
}

.package-table-four .package-table-row {
  grid-template-columns: minmax(230px, 1.35fr) repeat(3, minmax(145px, .88fr));
}

.package-table-footnote {
  margin: 0;
  padding: 14px 22px 18px;
  border-top: 1px solid rgba(10,28,51,.08);
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

.package-terms-section {
  background: var(--navy);
}

.package-terms-section .section-heading h2,
.package-terms-section .section-heading p,
.package-terms-section .eyebrow {
  color: #fff;
}

.package-terms-section .section-heading p:last-child {
  color: #DCE5EF;
}

.package-terms-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.package-terms-grid article {
  padding: 26px 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 35px rgba(0,0,0,.12);
}

.package-terms-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
}

.package-terms-grid h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.18rem;
}

.package-terms-grid p {
  margin: 0;
  color: #DCE5EF;
  line-height: 1.65;
}

.package-terms-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding: 24px 28px;
  border-radius: 18px;
  background: #fff;
}

.package-terms-cta strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.package-terms-cta p {
  margin: 5px 0 0;
  color: var(--muted);
}

@media (max-width: 1050px) {
  .package-terms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .package-card h3 {
    min-height: auto;
  }

  .package-table-four {
    min-width: 910px;
  }

  .package-table-four .package-table-row {
    grid-template-columns: 270px 210px 215px 215px;
  }

  .package-terms-grid {
    grid-template-columns: 1fr;
  }

  .package-terms-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .package-terms-cta .button {
    width: 100%;
  }

  .launch-notice {
    border-radius: 16px;
    justify-content: center;
  }
}

/* =========================================================
   TALENTUM WEB V15.6.3 — REDISEÑO VISUAL CANDIDATOS
   Solo presentación. No modifica campos, nombres ni conexión.
   ========================================================= */
.candidate-section {
  isolation: isolate;
  padding: 112px 0;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    radial-gradient(circle at 8% 18%, rgba(186,161,79,.17), transparent 26%),
    radial-gradient(circle at 92% 86%, rgba(54,116,176,.18), transparent 30%),
    linear-gradient(145deg, #061525 0%, #0A1D35 50%, #0D2A49 100%);
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
}

.candidate-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5,18,33,.12), rgba(5,18,33,0) 45%, rgba(5,18,33,.08));
  pointer-events: none;
}

.candidate-section::after {
  width: 620px;
  height: 620px;
  right: -240px;
  bottom: -340px;
  border: 1px solid rgba(218,197,112,.16);
  box-shadow:
    0 0 0 70px rgba(218,197,112,.025),
    0 0 0 140px rgba(218,197,112,.015);
  z-index: -1;
}

.candidate-glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.candidate-glow-one {
  width: 260px;
  height: 260px;
  left: -150px;
  top: 34%;
  background: rgba(186,161,79,.08);
}

.candidate-glow-two {
  width: 340px;
  height: 340px;
  right: 10%;
  top: -230px;
  background: rgba(53,117,180,.10);
}

.candidate-grid {
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  gap: 76px;
  align-items: center;
}

.candidate-copy {
  position: relative;
}

.candidate-copy-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 14px;
  border: 1px solid rgba(231,215,145,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: #F5EAB9;
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
}

.candidate-copy-badge > span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #D7C36C;
  box-shadow: 0 0 0 5px rgba(215,195,108,.12), 0 0 16px rgba(215,195,108,.55);
}

.candidate-copy .eyebrow {
  margin-bottom: 13px;
  color: #D8C779;
}

.candidate-copy h2 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 3.9vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.candidate-intro {
  max-width: 650px;
  margin: 0;
  color: #C8D5E1 !important;
  font-size: 1.06rem !important;
  line-height: 1.78;
}

.candidate-profile-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}

.candidate-profile-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: #EFF5FA;
  font-size: .86rem;
  font-weight: 750;
}

.candidate-profile-pills span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.candidate-journey {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0 0 28px;
  padding: 8px 22px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 22px 46px rgba(0,0,0,.12);
  backdrop-filter: blur(14px);
}

.candidate-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
}

.candidate-step + .candidate-step {
  border-top: 1px solid rgba(255,255,255,.075);
}

.candidate-step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(222,204,124,.32);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(215,195,108,.19), rgba(215,195,108,.07));
  color: #F1E4A6;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}

.candidate-step strong {
  display: block;
  margin-bottom: 4px;
  color: #FFFFFF;
  font-size: .98rem;
}

.candidate-step p {
  margin: 0;
  color: #AFC0D1;
  font-size: .89rem;
  line-height: 1.55;
}

.candidate-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.candidate-trust-row > div {
  min-width: 0;
  padding: 14px 12px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 15px;
  background: rgba(255,255,255,.035);
}

.candidate-trust-row strong,
.candidate-trust-row span {
  display: block;
}

.candidate-trust-row strong {
  color: #F5E9B2;
  font-size: .87rem;
}

.candidate-trust-row span {
  margin-top: 4px;
  color: #9EB0C1;
  font-size: .72rem;
  line-height: 1.35;
}

.candidate-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px 18px;
  border: 1px solid rgba(215,195,108,.18);
  border-left: 1px solid rgba(215,195,108,.18);
  border-radius: 16px;
  background: rgba(215,195,108,.075);
}

.candidate-note-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #D7C36C;
  color: #07182B;
  font-family: Georgia, serif;
  font-weight: 900;
}

.candidate-note b {
  display: block;
  color: #F5E9B2;
}

.candidate-note p {
  margin-top: 3px;
}

.candidate-form {
  position: relative;
  overflow: hidden;
  padding: 0 38px 38px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(215,195,108,.12), transparent 23%),
    linear-gradient(180deg, #FFFFFF 0%, #FAFCFE 100%);
  box-shadow:
    0 34px 80px rgba(0,0,0,.28),
    0 4px 14px rgba(0,0,0,.09),
    inset 0 1px 0 #FFFFFF;
}

.candidate-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #B9A14F, #E5D690 48%, #B9A14F);
}

.candidate-form-header {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin: 0 -38px 28px;
  padding: 34px 38px 25px;
  background: linear-gradient(180deg, rgba(246,248,251,.86), rgba(255,255,255,.32));
}

.candidate-form-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(186,161,79,.28);
  border-radius: 18px;
  background: linear-gradient(145deg, #FFF9E2, #F1E5AD);
  box-shadow: 0 10px 24px rgba(141,119,43,.13), inset 0 1px 0 rgba(255,255,255,.8);
}

.candidate-form-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #765F19;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.candidate-form-title > span {
  display: block;
  margin-bottom: 5px;
  color: #9A7F25;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.candidate-form-title h3 {
  margin: 0;
  color: #0A1C33;
  font-size: 1.5rem;
  line-height: 1.15;
}

.candidate-form-title p {
  margin: 7px 0 0;
  color: #657384;
  font-size: .88rem;
  line-height: 1.5;
}

.candidate-form-time {
  align-self: start;
  margin-top: 2px;
  padding: 7px 10px;
  border: 1px solid #DDE4EB;
  border-radius: 999px;
  background: #FFFFFF;
  color: #627080;
  font-size: .72rem;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 5px 14px rgba(10,28,51,.05);
}

.candidate-form-divider {
  display: none;
}

.candidate-fields-grid {
  gap: 0 18px;
}

.candidate-form label {
  gap: 8px;
  margin-bottom: 19px;
  color: #142B46;
  font-size: .87rem;
  font-weight: 800;
}

.candidate-form label > span[aria-hidden="true"] {
  color: #AA8320;
}

.candidate-form input,
.candidate-form select,
.candidate-form textarea {
  border: 1px solid #D5DDE5;
  border-radius: 13px;
  padding: 13px 14px;
  background: #FFFFFF;
  color: #142236;
  font-size: .95rem;
  box-shadow: inset 0 1px 2px rgba(10,28,51,.025);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}

.candidate-form input:not([type="checkbox"]),
.candidate-form select {
  min-height: 51px;
}

.candidate-form input::placeholder,
.candidate-form textarea::placeholder {
  color: #9BA7B4;
}

.candidate-form input:hover,
.candidate-form select:hover,
.candidate-form textarea:hover {
  border-color: #B7C2CE;
}

.candidate-form input:focus,
.candidate-form select:focus,
.candidate-form textarea:focus {
  border-color: #B9A14F;
  background: #FFFEFA;
  box-shadow: 0 0 0 4px rgba(186,161,79,.14), 0 8px 20px rgba(10,28,51,.04);
}

.candidate-file-field {
  padding: 16px 17px 12px;
  border: 1px dashed #C3AE61;
  border-radius: 16px;
  background: linear-gradient(180deg, #FFFDF6, #FFFEFB);
}

.candidate-file-field input[type="file"] {
  min-height: 52px;
  padding: 6px;
  border-style: solid;
  background: #FFFFFF;
  color: #637080;
  cursor: pointer;
}

.candidate-file-field input[type="file"]::file-selector-button {
  height: 38px;
  margin-right: 12px;
  padding: 0 14px;
  border: 0;
  border-radius: 9px;
  background: #0C2542;
  color: #FFFFFF;
  font: inherit;
  font-size: .82rem;
  font-weight: 800;
  cursor: pointer;
}

.candidate-file-field .field-note {
  color: #7A6A35;
  font-weight: 650;
}

.candidate-consent {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  gap: 11px !important;
  padding: 14px 15px;
  border: 1px solid #E2E7EC;
  border-radius: 14px;
  background: #F7F9FB;
  font-size: .82rem !important;
  font-weight: 650 !important;
  line-height: 1.5;
}

.candidate-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: #9D812B;
}

.candidate-consent a {
  color: #806618;
  font-weight: 850;
  text-underline-offset: 2px;
}

.candidate-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  min-height: 56px;
  margin-top: 4px;
  border: 1px solid #AD913B;
  background: linear-gradient(135deg, #E3D48B 0%, #C6AD55 52%, #B89B42 100%);
  color: #08192B;
  box-shadow: 0 16px 28px rgba(136,106,25,.22), inset 0 1px 0 rgba(255,255,255,.55);
  font-size: .98rem;
  font-weight: 900;
}

.candidate-submit span:last-child {
  font-size: 1.25rem;
  transition: transform .2s ease;
}

.candidate-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 32px rgba(136,106,25,.28), inset 0 1px 0 rgba(255,255,255,.6);
}

.candidate-submit:hover span:last-child {
  transform: translateX(4px);
}

.candidate-confirmation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  color: #738090 !important;
  font-size: .78rem;
  text-align: center;
}

.candidate-confirmation > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #44A36D;
  box-shadow: 0 0 0 4px rgba(68,163,109,.10);
}

@media (max-width: 1080px) {
  .candidate-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .candidate-copy {
    max-width: 820px;
    margin-inline: auto;
  }

  .candidate-form {
    width: min(100%, 820px);
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .candidate-section {
    padding: 78px 0;
    background-size: 34px 34px, 34px 34px, auto, auto, auto;
  }

  .candidate-grid {
    gap: 36px;
  }

  .candidate-copy-badge {
    padding: 8px 11px;
    font-size: .68rem;
  }

  .candidate-copy h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .candidate-intro {
    font-size: .98rem !important;
  }

  .candidate-profile-pills {
    gap: 8px;
  }

  .candidate-profile-pills span {
    padding: 8px 11px;
    font-size: .78rem;
  }

  .candidate-journey {
    padding: 5px 16px;
  }

  .candidate-step {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 15px 0;
  }

  .candidate-step-number {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .candidate-trust-row {
    grid-template-columns: 1fr;
  }

  .candidate-trust-row > div {
    display: grid;
    grid-template-columns: 115px 1fr;
    gap: 8px;
    align-items: center;
  }

  .candidate-trust-row span {
    margin-top: 0;
  }

  .candidate-form {
    padding: 0 20px 26px;
    border-radius: 22px;
  }

  .candidate-form-header {
    grid-template-columns: 50px 1fr;
    gap: 13px;
    margin: 0 -20px 23px;
    padding: 28px 20px 22px;
  }

  .candidate-form-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .candidate-form-icon svg {
    width: 24px;
    height: 24px;
  }

  .candidate-form-title h3 {
    font-size: 1.3rem;
  }

  .candidate-form-title p {
    font-size: .8rem;
  }

  .candidate-form-time {
    grid-column: 2;
    justify-self: start;
    margin-top: -3px;
  }

  .candidate-fields-grid {
    grid-template-columns: 1fr;
  }

  .candidate-form input,
  .candidate-form select,
  .candidate-form textarea {
    font-size: 16px;
  }

  .candidate-file-field input[type="file"]::file-selector-button {
    display: block;
    margin: 0 0 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .candidate-submit,
  .candidate-submit span:last-child,
  .candidate-form input,
  .candidate-form select,
  .candidate-form textarea {
    transition: none;
  }
}

/* Mantiene el texto y el asterisco obligatorio en una sola línea. */
.candidate-form label:not(.candidate-consent) {
  display: block;
}

.candidate-form label:not(.candidate-consent) > input,
.candidate-form label:not(.candidate-consent) > select,
.candidate-form label:not(.candidate-consent) > textarea {
  display: block;
  margin-top: 8px;
}

.candidate-form label:not(.candidate-consent) > .field-note {
  display: block;
  margin-top: 7px;
}

.candidate-submit::after {
  content: "→";
  font-size: 1.25rem;
  transition: transform .2s ease;
}

.candidate-submit:hover::after {
  transform: translateX(4px);
}

.candidate-submit.form-is-sending::after,
.candidate-submit:disabled::after {
  content: "";
}

/* Identidad Grupo Industrial Talentum */
.brand-main{font-size:1.02rem;letter-spacing:.025em;white-space:nowrap}
@media(max-width:1180px){.brand-main{font-size:.88rem}.main-nav{gap:14px}}
