.NexaLight {
  font-family: 'NexaLight', serif;
}

.NexaBold {
  font-family: "nexa-text", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.NexaBold {
  font-family: "nexa-text", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.MozaicGeo {
  font-family: "mozaic-geo-variable", sans-serif;
  font-variation-settings: "wght" 400;
}

:root {
  --bg: #ffffff;
  --fg: #111111;
  --muted: #6b7280;
  --accent: #a3d31f;
  --radius: 16px;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--fg);
  background: var(--bg);
  line-height: 1.5;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 9999;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: saturate(180%) blur(10px);
  transition: box-shadow .2s ease, background-color .2s ease;
  background-color: #1a1a1a;
}

.site-header.scrolled {
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(8px, 1.8vw, 16px) 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand img {
  height: 60px;
  width: auto;
  display: block;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 28px);
}

.menu a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.975rem;
}

.menu a:hover {
  opacity: .8;
}

.people img {
  width: 100%;
  line-height: 100vh;
  color: #ffffff;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 140px;
  font-weight: 600;
  text-decoration: none;
  background: var(--accent);
  color: #0a0a0a;
  border: 2px solid transparent;
  transition: transform .06s ease, box-shadow .2s ease, background-color .2s ease;
  font-size: 20px;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(163, 211, 31, .35);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(163, 211, 31, .35);
}

/* Mobile Nav */
.nav-toggle {
  display: none;
}

.nav-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px;
  border-radius: 10px;
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 900px) {
  .nav {
    padding: 10px 12px;
  }

  .menu {
    display: none;
  }

  .menu.open {
    display: flex;
    position: absolute;
    inset: 60px 12px auto 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
  }

  .menu.open a {
    padding: 12px;
    border-radius: 101px;
  }

  .nav-toggle {
    display: block;
  }
}

.hero {
  position: relative;
  min-height: clamp(55vh, 70vh, 80vh);
  display: grid;
  place-items: end center;
  background: #000 url('header.png') center/cover no-repeat;
  color: #fff;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .10) 0%, rgba(0, 0, 0, .55) 70%);
}

.hero-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px;
  line-height: 1;
  text-align-last: center;
}

.hero-inner h1 {
  font-family: "nexa-text", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: clamp(4.5rem, -1.7647rem + 4.6vw, 7rem);
  text-align: center;
}

.hero-inner p {
  text-align: center;
  font-size: clamp(1em, 1em + 0.6vw, 7rem);
}

.hero h1 {
  margin: 0 0 6px 0;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 6vw, 64px);
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 12px 30px rgba(0, 0, 0, .25);
}

.hero p {
  margin: 0 0 18px 0;
  color: #f3f4f6;
  max-width: 650px;
  font-size: clamp(14px, 1.8vw, 18px);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
}

.container h1 {
  font-family: "nexa-text", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: clamp(3.5rem, 1rem + 1vw, 7rem);
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: stretch;
}

.card {
  grid-column: span 4;
  border: 1px solid #f2f2f2;
  border-radius: var(--radius);
  padding: 10%;
  margin: 0% 5%;
  background: #f2f2f2;
}

.card h3 {
  margin: 0;
  font-size: 1.75rem;
  color: #b4d300;
  font-family: "mozaic-geo-variable", sans-serif;
  font-variation-settings: "wght" 700;
}

.card h4 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 1.25rem;
  color: #000000;
  font-family: "mozaic-geo-variable", sans-serif;
  font-variation-settings: "wght" 700;
}

.card p {
  margin: 0;
  color: #000000;
  font-family: "mozaic-geo-variable", sans-serif;
  font-variation-settings: "wght" 300;
  font-size: 1.1rem;
}

@media (max-width: 980px) {
  .card {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .card {
    grid-column: span 12;
  }
}

footer {
  border-top: 1px solid #e5e7eb;
  padding: 24px 16px;
  color: var(--muted);
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.beneficios-wide {
  --kinegreen: #b3dd00;
  background: var(--kinegreen);
  padding: clamp(32px, 4vw, 64px) 0;
  margin-inline: calc(50% - 50vw);
}

.beneficios-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 520px) 1fr;
  gap: clamp(0px, 3vw, 0px);
  align-items: center;
}

.beneficios-col {
  display: grid;
  gap: clamp(14px, 2.5vw, 24px);
}

.beneficio-pill {
  font-family: "mozaic-geo-variable", sans-serif;
  font-variation-settings: "wght" 300;
  background: #3a3a3a;
  color: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.35;
}

.beneficio-pill strong {
  color: var(--accent, #a3d31f);
}

.beneficio-photo {
  width: clamp(300px, 42vw, 520px);
  max-width: 360px;
  justify-self: center;
  border-radius: 24px;
  overflow: hidden;
}

.beneficio-photo img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 980px) {
  .beneficios-inner {
    grid-template-columns: 1fr;
  }

  .beneficio-photo {
    order: -1;
  }

}

.audiencia-section,
.recursos-section {
  background: #fff;
  padding: clamp(28px, 5vw, 56px) 0;
}

.eligibility-section {
  background: #3a3a3a;
  color: #fff;
  padding: clamp(36px, 6vw, 72px) 0;
  margin-inline: calc(50% - 50vw);
  font-family: "nexa-text", sans-serif;
  font-style: normal;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

.audiencia-section h2,
.recursos-section h2 {
  font-family: "nexa-text", sans-serif;
  font-weight: 900;
  font-style: normal;
  text-align: center;
  letter-spacing: -0.015em;
  color: #3a3a3a;
  margin: 0 0 18px 0;
  font-size: clamp(2rem, 2.6vw, 3rem);
}

.eligibility-section h2 {
  font-family: "nexa-text", sans-serif;
  font-weight: 900;
  text-align: center;
  margin: 0 0 12px 0;
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  letter-spacing: -0.015em;
}

.eligibility-section .lead,
.eligibility-section .meta {
  text-align: center;
  margin: 6px 0;
}

.eligibility-section .meta {
  opacity: .9;
}

.pill-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: stretch;
  margin-top: clamp(10px, 2vw, 18px);
}

.pill-row .pill {
  grid-column: span 4;
  background: #7F7F7F;
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  color: #ffffff;
  line-height: 1.35;
  font-size: clamp(14px, 1.2vw, 18px);
  font-family: "mozaic-geo-variable", sans-serif;
  font-variation-settings: "wght" 400;
}

.pill-row .pill strong {
  color: #ffffff;
}

@media (max-width: 980px) {
  .pill-row .pill {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .pill-row .pill {
    grid-column: span 12;
  }
}

.divider-bullets {
  --kinegreen: #b4d300;
  background: var(--kinegreen);
  padding: 12px 0;
  margin-inline: calc(50% - 50vw);
}

.divider-bullets .bullets {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.2vw, 28px);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.divider-bullets .dot {
  opacity: .9;
}

.cta-join {
  background: #3a3a3a;
  color: #fff;
  padding: clamp(28px, 5vw, 56px) 0;
  margin-inline: 0;
}

.cta-join .wrap {
  text-align: center;
}

.cta-join h2 {
  font-family: "nexa-text", sans-serif;
  font-weight: 900;
  margin: 0 0 6px 0;
  letter-spacing: -.015em;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.cta-join .cta-sub {
  margin: 0 0 16px 0;
  font-family: "mozaic-geo-variable", sans-serif;
  opacity: .9;
}

.cta-btn {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  background: #b4d300;
  color: #111;
  font-weight: 800;
  text-align: center;
  padding: 16px 20px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

.faq-section {
  background: #fff;
  padding: clamp(28px, 5vw, 56px) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(16px, 3vw, 32px);
  align-items: start;
}

.faq-title {
  font-family: "nexa-text", sans-serif;
  font-weight: 900;
  color: #3a3a3a;
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: .95;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f1f1f1;
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
  font-weight: 700;
}

.faq-item::after {
  content: "›";
  font-size: 22px;
  line-height: 1;
  opacity: .65;
}

.faq-item:hover {
  background: #eaeaea;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-title {
    text-align: center;
  }
}

.amb-footer {
  background: #0d0d0d;
  color: #fff;
  padding: clamp(24px, 4vw, 40px) 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(12px, 3vw, 28px);
  align-items: center;
}

.footer-logo {
  height: 42px;
  width: auto;
  display: block;
}

.footer-text {
  margin: 0;
  opacity: .95;
}

.footer-text a {
  color: #fff;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}

.footer-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: clamp(12px, 2.4vw, 20px);
}

.store-badge img {
  height: 44px;
  width: auto;
  display: block;
}

@media (max-width:900px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto;
  }
}

.faq-list .faq-item::after {
  content: none !important;
}

.faq-list .faq-item {
  display: block !important;
  background: #f1f1f1;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
  overflow: hidden;
  margin: 0;
}

.faq-list .faq-item>summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0px 20px;
  font-weight: 700;
  color: #333;
  user-select: none;
  outline: none;
  font-family: "mozaic-geo-variable", sans-serif;
  font-size: 12px;
}

.faq-list .faq-item>summary::-webkit-details-marker {
  display: none;
}

.faq-list .faq-item>summary::after {
  content: "›";
  font-size: 20px;
  line-height: 1;
  opacity: .7;
  transform-origin: center;
  transition: transform .2s ease, opacity .2s ease;
  margin-left: 12px;
}

.faq-list .faq-item[open]>summary::after {
  transform: rotate(90deg);
  opacity: .95;
}

.faq-list .faq-item>.faq-content {
  padding: 0 20px;
  color: #444;
  line-height: 1.55;
  border-top: 1px solid #e7e7e7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.faq-list .faq-item[open]>.faq-content {
  padding: 12px 20px 16px 20px;
  max-height: 420px;
  font-family: "mozaic-geo-variable", sans-serif;
}

.faq-list .faq-item>summary:hover {
  background: #ececec;
  border-radius: 12px;
}

.hero-video {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  min-height: 70vh;
  display: grid;
  place-items: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .45) 70%);
}

.hero-logo {
  padding: 10% 0% 0% 0%;
  width: clamp(180px, 25vw, 520px);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, .35));
}

.btn-video {
  padding: 12px 24px;
  font-weight: 800;
  border-radius: 25px;
  color: #ffffff;
  border-color: #ffffff;
  color: #ffffff;
  background-color: #0000;
  font-family: "nexa-text", sans-serif;
  font-weight: 700;
  font-style: normal
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(900px, 92vw);
  margin: 6vh auto;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal-body {
  padding: 0;
}

.responsive-iframe {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.responsive-iframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.btn-video .icon-play {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  fill: currentColor;
  flex: 0 0 auto;
  vertical-align: -2px;
}

.apply-dialog {
  width: min(1100px, 96vw);
  height: auto;
  margin: 4vh auto;
  background: #f6f6f6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

.apply-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.4fr;
  min-height: 72vh;
}

.apply-media {
  background: #222 url('form-bg.jpg') center/cover no-repeat;
  order: 1;/ position: relative;
}

.apply-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .18));
}

.apply-form {
  order: 2;
  background: #f6f6f6;
  padding: clamp(20px, 3.6vw, 40px);
}

.apply-form h2 {
  margin: 0 0 6px 0;
  font-family: "nexa-text", sans-serif;
  font-weight: 900;
  color: #333;
  letter-spacing: -.015em;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}

.apply-sub {
  margin: 0 0 14px 0;
  color: #666;
}

.apply-fields {
  display: grid;
  gap: 16px;
}

.apply-fields label {
  display: block;
  color: #555;
  font-weight: 600;
  font-size: .95rem;
}

.apply-fields input,
.apply-fields textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #ddd;
  padding: 10px 0 12px 0;
  font: inherit;
  color: #222;
  outline: none;
}

.apply-fields textarea {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  resize: vertical;
}

.apply-fields input:focus,
.apply-fields textarea:focus {
  border-color: #b4d300;
}

.apply-fields .row-2 {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.apply-submit {
  display: block;
  width: 100%;
  background: #b4d300;
  color: #111;
  font-weight: 800;
  padding: 14px 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.apply-submit:hover {
  filter: brightness(0.98);
}

@media (max-width: 960px) {
  .apply-grid {
    grid-template-columns: 1fr;
  }

  .apply-media {
    order: -1;
    min-height: 220px;
  }
}

.menu a[href="#postular"] {
  position: relative;
  border-radius: 999px;
  padding: 10px 16px;
}

.menu a[href="#postular"]::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 2px solid #fff;
  border-radius: inherit;
  pointer-events: none;
  opacity: .35;
  transform: scale(0.98);
  animation: postular-border 2.4s ease-in-out infinite;
}

@keyframes postular-border {

  0%,
  100% {
    opacity: .25;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}


@media (prefers-reduced-motion: reduce) {
  .menu a[href="#postular"]::after {
    animation: none;
    opacity: .7;
  }
}

.iti {
  width: 100%;
}

.iti--allow-dropdown input[type="tel"] {
  width: 100%;
  padding-left: 54px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #ddd;
}

.iti--allow-dropdown input[type="tel"]:focus {
  border-bottom-color: #b4d300;
}

/* --- Íconos en inputs --- */
.input-icon {
  position: relative;
}

.input-icon>input {
  padding-left: 34px;
}

.input-icon::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 63%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: .85;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
}

/* TikTok (SVG embebido) */
.input-icon.tiktok::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'><path fill='%23333' d='M168 24a56 56 0 0 0 48 27v30a86 86 0 0 1-49-15v78a66 66 0 1 1-66-66h10v30h-10a36 36 0 1 0 36 36V24z'/></svg>");
}

/* Instagram (SVG embebido) */
.input-icon.instagram::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='3' y='3' width='18' height='18' rx='5' ry='5' fill='%23333'/><circle cx='12' cy='12' r='4' fill='%23fff'/><circle cx='17.5' cy='6.5' r='1.5' fill='%23fff'/></svg>");
}

.comuna-select {
  position: relative;
  display: block;
}

#comunaInput {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #ddd;
  padding: 10px 0 12px 0;
  font: inherit;
  color: #222;
  outline: none;
}

#comunaInput:focus {
  border-bottom-color: #b4d300;
}

.comuna-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .10);
  max-height: 280px;
  overflow: auto;
  padding: 6px;
  display: none;
  z-index: 50;
}

.comuna-select.open .comuna-dropdown {
  display: block;
}

.comuna-option {
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  line-height: 1.2;
}

.comuna-option:hover,
.comuna-option[aria-selected="true"] {
  background: #f3f4f6;
}

.comuna-empty {
  padding: 10px 12px;
  color: #666;
  font-style: italic;
}

@media (max-width:640px) {
  .comuna-dropdown {
    max-height: 50vh;
  }
}

.hero-inner.people.web {
  display: block;
}

.hero-inner.people.mob {
  display: none;
}

@media (max-width: 900px) {
  .hero-logo {
    padding: 20% 0% 0% 0%;
    width: clamp(360px, 25vw, 520px);
  }

  .btn-video {
    margin: -40% 0% 0% 0%;
  }

  .hero-inner {
    padding: 0px;
  }

  .hero-inner h1 {
    font-size: clamp(2.5rem, -1.7647rem + 4.6vw, 7rem);
  }

  .hero-inner p {
    padding: 0% 10%;
  }

  .hero-inner.people.mob {
    display: block;
    padding: 8% 0% 1% 0%;
  }

  .hero-inner.people.web {
    display: none;
  }

  .btn {
    padding: 20px 80px;
    font-size: 16px;
  }

  .container h1 {
    font-size: clamp(2rem, 1rem + 1vw, 7rem);
  }

  article.card {
    padding: 4% 0% !important;
  }

  .card h3 {
    padding: 0% 4% !important;
    margin: -2% 0% 0% 0% !important;
  }

  .card h4 {
    padding: 0% 4% !important;
  }

  .card p {
    padding: 0% 4% !important;
    line-height: 18px;
  }

  .beneficios-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    grid-auto-rows: 1fr;
    gap: 20px;
    padding: 0 16px;
    align-items: stretch;
  }

  .beneficio-photo {
    order: -1;
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    border-radius: 20px;
    overflow: hidden;
  }

  .beneficios-col {
    display: contents;
  }

  .beneficio-pill {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 4% 10%;
    font-size: 15px;
  }

  .beneficios-wide>h1 {
    margin: 0 16px 14px;
    text-align: center;
  }

  .beneficio-pill br {
    display: none;
  }

  section.beneficios-wide {
    margin-inline: calc(50% - 50vw);
  }

  .brand img {
    height: 40px;
  }

  .divider-bullets {
    padding: 1% 0;
  }

  .divider-bullets .bullets {
    font-size: 8px;
  }

  .nav-toggle button svg {
    stroke: #fff;
  }

  .nav-toggle {
    display: block;
  }

  .menu {
    display: none;
  }

  .menu.open {
    display: flex;
    position: absolute;
    inset: 64px 12px auto 12px;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, .35);
    z-index: 1200;
  }

  .menu.open a {
    color: #fff;
    padding: 12px;
    border-radius: 10px;
  }

  .modal-dialog.apply-dialog {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    margin: 0;
    overflow: auto;
  }

  .apply-grid {
    grid-template-columns: 1fr;
  }

  .apply-form {
    padding: 18px 16px 24px;
  }

  .apply-media {
    background: #222 url(media-form-mob.jpg) center / cover no-repeat;
    order: 1;
    position: relative;
    min-height: 230px;
  }

  .amb-footer .footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 12px 24px;
  }

  .amb-footer .footer-top .footer-col:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .amb-footer .footer-top .footer-col:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .amb-footer .footer-top .footer-col:nth-child(3) {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
    text-align: right;
  }

  .amb-footer .footer-badges {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 12px;
    text-align: right;
    padding: 0px;
  }

  .amb-footer .store-badge img {
    height: 28px;
    width: auto;
    display: block;
  }

  .footer-logo {
    height: 30px;
    float: left;
  }

  .footer-text {
    font-size: 10px;
    text-align: left;
  }

  .apply-fields textarea {
    width: 93%;
  }

  input#tiktok,
  input#instagram {
    width: 80%;
  }
}

/* ---- FIX: la imagen lateral no debe tapar el formulario ---- */
.apply-media {
  position: relative;
  z-index: 0;
  pointer-events: none;
  /* no captura clics */
}

/* si hay overlays/gradientes en pseudo-elementos */
.apply-media::before,
.apply-media::after {
  pointer-events: none !important;
  /* <- el culpable de la captura */
  z-index: 0;
  /* por debajo del form */
}

/* el panel del formulario siempre por arriba */
.apply-form {
  position: relative;
  z-index: 2;
}

/* por si algún contenedor del modal restringe el stacking */
.apply-dialog {
  position: relative;
  z-index: 1001;
}

/* === Popup éxito Kinegun === */
.kg-success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  display: none;
  /* se activa por JS */
  justify-content: center;
  align-items: center;
  animation: kgFadeIn .4s ease forwards;
  z-index: 99999;
  /* por encima de tus modales */
}

@keyframes kgFadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.kg-success-modal {
  background: #fff;
  border-radius: 25px;
  padding: 40px 30px 30px;
  text-align: center;
  width: 340px;
  position: relative;
  transform: scale(.8);
  opacity: 0;
  animation: kgPopIn .4s ease forwards;
}

@keyframes kgPopIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.kg-success-logo {
  width: 160px;
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.kg-like-container {
  margin: 0 auto 25px;
  position: relative;
  width: 150px;
  height: 110px;
  animation: kgPulse 3s ease-in-out infinite;
}

@keyframes kgPulse {
  0% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.05)
  }

  100% {
    transform: scale(1)
  }
}

.kg-like-bubble {
  width: 100%;
  height: 100%;
  background: #ff5a5f;
  /* rojo IG-like */
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
  position: relative;
}

.kg-like-bubble::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #ff5a5f;
}

.kg-heart {
  width: 32px;
  height: 32px;
  margin-bottom: 6px;
  background: #fff;
  mask: url('https://cdn-icons-png.flaticon.com/512/833/833472.png') no-repeat center;
  mask-size: contain;
  -webkit-mask: url('https://cdn-icons-png.flaticon.com/512/833/833472.png') no-repeat center;
  -webkit-mask-size: contain;
}

.kg-like-number {
  font-size: 38px;
}

.kg-message {
  font-size: 17px;
  color: #333;
  opacity: 0;
  transform: translateY(10px);
  animation: kgFadeUp .8s ease .3s forwards;
}

@keyframes kgFadeUp {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* Botón Cerrar del popup */
.kg-close {
  margin-top: 18px;
  padding: 10px 16px;
  border: 0;
  border-radius: 10px;
  background: #111;
  /* oscuro neutro */
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform .06s ease, opacity .2s ease;
}

.kg-close:hover {
  transform: translateY(-1px);
  opacity: .9;
}

.kg-close:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}
/* logos bajo el hero logo */
.hero-overlay .partner-logos{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;     /* separación respecto al hero-logo */
}

.hero-overlay .partner-logo{
  height: 54px;         /* ajusta si necesitas más/menos grande */
  width: auto;
  object-fit: contain;
  /* opcional si el fondo del video es claro/oscuro:
     filter: drop-shadow(0 1px 2px rgba(0,0,0,.25)); */
}

/* mobile: apilados */
@media (max-width: 768px){
  .hero-overlay .partner-logos{
    flex-direction: column;
    gap: 10px;
    margin: 0% 0% 30% 0%;
  }
  .hero-overlay .partner-logo{
    height: 46px;
  }
}
