:root {
  --color-bg: #ffffff;
  --color-alt: #f8fafc;
  --color-title: #0f172a;
  --color-text: #334155;
  --color-muted: #64748b;
  --color-border: #e2e8f0;
  --color-focus: #0f172a;
  --color-accent: #2563eb;
  --max-width: 1120px;
  --radius-card: 16px;
  --radius-button: 12px;
  --radius-input: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  background: var(--color-bg);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.container {
  width: min(100% - 64px, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #005eb8;
  border-bottom: 0;
}

.nav {
  width: min(100% - 128px, 1796px);
  min-height: 103px;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 258px;
  height: 58px;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.nav-links {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(32px, 3.1vw, 58px);
  list-style: none;
  color: #ffffff;
  font-size: clamp(22px, 1.56vw, 30px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-links a {
  transition: opacity 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: #ffffff;
  opacity: 0.78;
}

.producers-page .nav-links {
  margin-left: auto;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: clamp(30px, 3.4vw, 64px);
  font-size: clamp(17px, 1.18vw, 23px);
  font-weight: 600;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.producers-page .nav {
  min-height: 101px;
  justify-content: space-between;
  gap: clamp(64px, 8vw, 150px);
}

.producers-page .nav-links a {
  white-space: nowrap;
}

.producers-page .brand img {
  width: 292px;
  height: 67px;
  object-fit: cover;
  object-position: center;
}

.site-hero {
  background: #ffffff;
}

.home-hero {
  padding: 64px 0 72px;
}

.producers-hero {
  padding: 38px 0 44px;
  background: #ffffff;
}

.hero-content {
  max-width: var(--max-width);
}

.home-hero h1,
.producers-hero h1 {
  color: var(--color-title);
  font-weight: 700;
}

.home-hero h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: 56px;
  line-height: 1.05;
}

.producers-hero h1 {
  max-width: none;
  margin-bottom: 16px;
  color: #008fa3;
  font-size: clamp(30px, 3.1vw, 52px);
  font-weight: 700;
  line-height: 1.02;
  text-align: center;
}

.hero-lede {
  max-width: 700px;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.producers-hero .hero-lede {
  max-width: 760px;
}

.producers-page .producers-hero-motive {
  max-width: 1680px;
  text-align: center;
}

.producers-page .producers-hero-motive p {
  max-width: 1510px;
  margin: 0 auto;
  color: #008fa3;
  font-size: clamp(20px, 1.72vw, 34px);
  font-weight: 700;
  line-height: 1.35;
}

.hero-proof {
  margin-top: 16px;
  margin-bottom: 24px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.section {
  padding: 88px 0;
  background: #ffffff;
}

.section-alt {
  background: var(--color-alt);
}

h2 {
  margin-bottom: 28px;
  color: var(--color-title);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
}

h3 {
  color: var(--color-title);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.button-row {
  display: flex;
  align-items: stretch;
  gap: 14px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-align: left;
}

.button-primary {
  color: #ffffff;
  background: var(--color-title);
  border-color: var(--color-title);
}

.button-secondary {
  color: var(--color-title);
  background: transparent;
  border-color: var(--color-title);
}

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

.info-card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #ffffff;
}

.info-card h3 {
  margin-bottom: 12px;
}

.info-card p {
  color: var(--color-text);
}

.audience-list {
  width: min(100%, 760px);
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  list-style: none;
}

.audience-list li {
  padding: 20px 24px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  color: var(--color-title);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  background: #ffffff;
}

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

.path-card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  background: #ffffff;
}

.path-card h3 {
  color: var(--color-title);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.editorial-block {
  max-width: 860px;
}

.editorial-block h2 {
  margin-bottom: 20px;
}

.editorial-block p {
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.7;
}

.section-intro {
  max-width: 820px;
  margin-bottom: 28px;
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.7;
}

#lo-que-cambia h2 {
  margin-bottom: 20px;
}

.change-list {
  max-width: 860px;
}

.change-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.change-block:last-child {
  border-bottom: 0;
}

.change-block h3 {
  margin-bottom: 14px;
}

.change-block p {
  color: var(--color-text);
  line-height: 1.75;
}

.change-block p + p {
  margin-top: 14px;
}

.producers-page #lo-que-cambia {
  padding: 32px 0 0;
  color: #ffffff;
  background-color: #075cb3;
  background-image: url("assets/web-design-reference/Productores/02-Beneficios/fondo template productores 02.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.producers-page #lo-que-cambia .container {
  width: min(100% - 128px, 1790px);
}

.producers-page #lo-que-cambia h2 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(32px, 2.8vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  transform: translateY(-14px);
}

.producers-page #lo-que-cambia .section-intro {
  max-width: 1620px;
  margin-bottom: 32px;
  color: #ffffff;
  font-size: clamp(18px, 1.28vw, 21px);
  font-weight: 500;
  line-height: 1.45;
  transform: translateY(-14px);
}

.producers-page #lo-que-cambia .change-list {
  max-width: 1710px;
}

.producers-page #lo-que-cambia .change-block {
  padding: 0 0 18px;
  border-bottom: 0;
}

.producers-page #lo-que-cambia .change-block + .change-block {
  padding-top: 8px;
}

.producers-page #lo-que-cambia .change-block h3 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 800;
  line-height: 1.18;
}

.producers-page #lo-que-cambia .change-block p {
  color: #ffffff;
  font-size: clamp(16px, 1.12vw, 20px);
  font-weight: 500;
  line-height: 1.5;
}

.producers-page #lo-que-cambia .change-block p + p {
  margin-top: 0;
}

.producers-page #lo-que-cambia .section-close {
  max-width: none;
  margin: 8px -64px 0;
  padding: 20px 64px 26px;
  color: #ffffff;
  font-size: clamp(24px, 2.1vw, 36px);
  font-weight: 300;
  line-height: 1.1;
  text-align: center;
  background: rgba(3, 77, 160, 0.56);
}

.section-close {
  max-width: 860px;
  margin-top: 28px;
  color: var(--color-title);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.profile-list {
  max-width: 860px;
  display: grid;
  gap: 18px;
}

.profile-card {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #ffffff;
}

.profile-card h3 {
  margin-bottom: 12px;
  line-height: 1.25;
}

.profile-card p {
  color: var(--color-text);
  line-height: 1.75;
}

.producers-page #para-quien-es-productores {
  padding: 34px 0 66px;
  background: #ffffff;
}

.producers-page #para-quien-es-productores .container {
  width: min(100% - 96px, 1660px);
}

.producers-page #para-quien-es-productores h2 {
  margin-bottom: 24px;
  color: #008fa3;
  font-size: clamp(42px, 3.95vw, 70px);
  font-weight: 800;
  line-height: 1;
}

.producers-page #para-quien-es-productores .profile-list {
  max-width: none;
  gap: 60px;
}

.producers-page #para-quien-es-productores .profile-card {
  padding: 34px 36px 38px;
  border: 0;
  border-radius: 0;
  background: #008f9f;
}

.producers-page #para-quien-es-productores .profile-card h3 {
  margin-bottom: 28px;
  color: #ffffff;
  font-size: clamp(28px, 2.35vw, 48px);
  font-weight: 700;
  line-height: 1.16;
}

.producers-page #para-quien-es-productores .profile-card p {
  color: #ffffff;
  font-size: clamp(18px, 1.45vw, 30px);
  font-weight: 700;
  line-height: 1.35;
}

.form-copy {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.7;
}

.lead-form {
  width: min(100%, 640px);
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-input);
  color: var(--color-title);
  font: inherit;
  background: #ffffff;
  box-shadow: none;
}

input:focus {
  outline: none;
  border-color: var(--color-focus);
}

.hidden-field {
  display: none;
}

.producers-form .button {
  width: fit-content;
  min-width: 160px;
  min-height: 52px;
  margin-top: 8px;
  padding: 0 24px;
}

.producers-page #conoce-la-organizacion {
  min-height: 960px;
  padding: 46px 0 92px;
  background-color: #233a54;
  background-image: url("assets/web-design-reference/Productores/04-Formulario/fondo template productores 04.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.producers-page #conoce-la-organizacion .container {
  width: min(100% - 128px, 1660px);
}

.producers-page #conoce-la-organizacion h2 {
  margin-bottom: 12px;
  color: #6979ea;
  font-size: clamp(30px, 3.1vw, 52px);
  font-weight: 800;
  line-height: 1;
}

.producers-page #conoce-la-organizacion .form-copy {
  max-width: 1100px;
  margin-bottom: 28px;
  color: #ffffff;
  font-size: clamp(17px, 1.22vw, 22px);
  font-weight: 400;
  line-height: 1.24;
}

.producers-page #conoce-la-organizacion .lead-form {
  width: min(46vw, 765px);
  gap: 28px;
}

.producers-page #conoce-la-organizacion .field {
  gap: 10px;
}

.producers-page #conoce-la-organizacion label {
  padding-left: 28px;
  color: #6979ea;
  font-size: clamp(24px, 2.1vw, 42px);
  font-weight: 800;
  line-height: 1;
}

.producers-page #conoce-la-organizacion input {
  height: 48px;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.2;
  background: #ffffff;
}

.producers-page #conoce-la-organizacion .producers-form .button {
  width: min(100%, 300px);
  min-width: 0;
  min-height: 62px;
  margin-top: 42px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
  background: #0866c8;
  border-color: #0866c8;
}

.site-footer {
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  background: #ffffff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.5;
}

.simple-footer .footer-inner {
  justify-content: flex-start;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  color: var(--color-text);
}

.footer-social a:hover,
.footer-social a:focus {
  color: var(--color-title);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.producers-page .home-footer {
  padding: 0;
  background: #ffffff;
  border-top: 0;
}

.producers-page .home-footer .footer-inner {
  width: min(100% - 144px, 1780px);
  min-height: 134px;
  gap: 40px;
}

.producers-page .footer-social {
  gap: 30px;
}

.producers-page .footer-social a {
  min-width: 62px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.producers-page .footer-social img,
.producers-page .footer-social svg {
  width: 62px;
  height: 62px;
}

.footer-brand {
  flex: 0 0 auto;
  display: block;
}

.footer-brand img {
  width: 294px;
  height: 64px;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.success-page {
  min-height: calc(100vh - 67px);
  padding: 88px 0;
  display: grid;
  place-items: center;
  background: #ffffff;
}

.success-panel {
  width: min(100% - 64px, 640px);
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #ffffff;
}

.success-panel img {
  width: auto;
  height: 34px;
  margin-bottom: 24px;
}

.success-panel h1 {
  margin-bottom: 16px;
  color: var(--color-title);
  font-size: 42px;
  line-height: 1.1;
}

.success-panel .button-row {
  margin-top: 24px;
}

@media (max-width: 1023px) {
  .container {
    width: min(100% - 48px, var(--max-width));
  }

  .nav {
    width: min(100% - 48px, 1796px);
    min-height: 94px;
    gap: 28px;
  }

  .brand img {
    width: 230px;
    height: 52px;
  }

  .nav-links {
    gap: 24px;
    font-size: 20px;
  }

  .section {
    padding: 72px 0;
  }

  .home-hero {
    padding: 56px 0 64px;
  }

  .producers-hero {
    padding: 34px 0 40px;
  }

  .home-hero h1 {
    font-size: 44px;
  }

  .producers-hero h1 {
    font-size: 34px;
  }

  .producers-page .producers-hero-motive p {
    font-size: 22px;
  }

  .producers-page #para-quien-es-productores .container {
    width: min(100% - 56px, 1660px);
  }

  .producers-page #para-quien-es-productores h2 {
    font-size: 40px;
  }

  .producers-page #para-quien-es-productores .profile-list {
    gap: 34px;
  }

  .producers-page #para-quien-es-productores .profile-card {
    padding: 28px;
  }

  .producers-page #para-quien-es-productores .profile-card h3 {
    margin-bottom: 18px;
    font-size: 28px;
  }

  .producers-page #para-quien-es-productores .profile-card p {
    font-size: 19px;
    line-height: 1.42;
  }

  .producers-page #conoce-la-organizacion {
    min-height: 820px;
    padding: 42px 0 72px;
  }

  .producers-page #conoce-la-organizacion .container {
    width: min(100% - 56px, 1660px);
  }

  .producers-page #conoce-la-organizacion .lead-form {
    width: min(100%, 620px);
    gap: 22px;
  }

  .producers-page #conoce-la-organizacion h2 {
    font-size: 34px;
  }

  .producers-page #conoce-la-organizacion .form-copy {
    font-size: 19px;
    font-weight: 400;
  }

  .producers-page #conoce-la-organizacion label {
    font-size: 25px;
  }

  .producers-page #conoce-la-organizacion input {
    height: 44px;
    min-height: 44px;
    font-size: 16px;
  }

  .producers-page #conoce-la-organizacion .producers-form .button {
    width: min(100%, 260px);
    min-height: 52px;
    margin-top: 32px;
    font-size: 19px;
    font-weight: 700;
  }

  .producers-page .home-footer .footer-inner {
    width: min(100% - 56px, 1780px);
  }

  .producers-page #lo-que-cambia {
    padding-top: 28px;
  }

  .producers-page #lo-que-cambia .container {
    width: min(100% - 56px, 1790px);
  }

  .producers-page #lo-que-cambia h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .producers-page #lo-que-cambia .section-intro {
    margin-bottom: 26px;
    font-size: 19px;
    line-height: 1.45;
  }

  .producers-page #lo-que-cambia .change-block {
    padding-bottom: 16px;
  }

  .producers-page #lo-que-cambia .change-block + .change-block {
    padding-top: 6px;
  }

  .producers-page #lo-que-cambia .change-block h3 {
    font-size: 24px;
    line-height: 1.18;
  }

  .producers-page #lo-que-cambia .change-block p {
    font-size: 16px;
    line-height: 1.5;
  }

  .producers-page #lo-que-cambia .section-close {
    margin-right: -28px;
    margin-left: -28px;
    padding: 18px 28px 24px;
    font-size: 28px;
    line-height: 1.1;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-lede {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
  }

  .nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 22px;
    font-size: 18px;
  }

  .producers-page .nav-links {
    margin-left: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 20px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 32px, var(--max-width));
  }

  .nav {
    width: min(100% - 32px, 1796px);
    min-height: auto;
  }

  .brand img {
    width: 204px;
    height: 46px;
  }

  .nav-links {
    gap: 10px 18px;
    font-size: 15px;
  }

  .section {
    padding: 56px 0;
  }

  .home-hero {
    padding: 40px 0 48px;
  }

  .producers-hero {
    padding: 34px 0 36px;
  }

  .home-hero h1,
  .producers-hero h1 {
    font-size: 28px;
  }

  .producers-page .producers-hero-motive p {
    font-size: 18px;
    line-height: 1.42;
  }

  .producers-page #para-quien-es-productores {
    padding: 40px 0 48px;
  }

  .producers-page #para-quien-es-productores .container {
    width: min(100% - 32px, 1660px);
  }

  .producers-page #para-quien-es-productores h2 {
    margin-bottom: 20px;
    font-size: 32px;
  }

  .producers-page #para-quien-es-productores .profile-list {
    gap: 22px;
  }

  .producers-page #para-quien-es-productores .profile-card {
    padding: 22px 20px;
  }

  .producers-page #para-quien-es-productores .profile-card h3 {
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 1.2;
  }

  .producers-page #para-quien-es-productores .profile-card p {
    font-size: 16px;
    line-height: 1.45;
  }

  .producers-page #conoce-la-organizacion {
    min-height: 760px;
    padding: 38px 0 56px;
    background-position: center;
  }

  .producers-page #conoce-la-organizacion .container {
    width: min(100% - 32px, 1660px);
  }

  .producers-page #conoce-la-organizacion h2 {
    margin-bottom: 12px;
    font-size: 28px;
  }

  .producers-page #conoce-la-organizacion .form-copy {
    margin-bottom: 26px;
    font-size: 17px;
    font-weight: 400;
  }

  .producers-page #conoce-la-organizacion .lead-form {
    width: 100%;
    gap: 18px;
  }

  .producers-page #conoce-la-organizacion label {
    padding-left: 16px;
    font-size: 20px;
  }

  .producers-page #conoce-la-organizacion input {
    height: 40px;
    min-height: 40px;
    padding: 0 16px;
    font-size: 15px;
    line-height: 1.2;
  }

  .producers-page #conoce-la-organizacion .producers-form .button {
    width: min(100%, 220px);
    min-height: 46px;
    margin-top: 24px;
    font-size: 18px;
    font-weight: 700;
  }

  .producers-page .home-footer .footer-inner {
    width: min(100% - 32px, 1780px);
    min-height: 112px;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 14px;
  }

  .producers-page .footer-brand img {
    width: 144px;
    height: 32px;
  }

  .producers-page .footer-social {
    gap: 10px;
  }

  .producers-page .footer-social a {
    min-width: 30px;
    min-height: 30px;
  }

  .producers-page .footer-social img,
  .producers-page .footer-social svg {
    width: 30px;
    height: 30px;
  }

  .producers-page #lo-que-cambia {
    padding-top: 26px;
  }

  .producers-page #lo-que-cambia .container {
    width: min(100% - 32px, 1790px);
  }

  .producers-page #lo-que-cambia h2 {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.08;
  }

  .producers-page #lo-que-cambia .section-intro {
    margin-bottom: 22px;
    font-size: 17px;
    line-height: 1.45;
  }

  .producers-page #lo-que-cambia .change-block {
    padding-bottom: 15px;
  }

  .producers-page #lo-que-cambia .change-block + .change-block {
    padding-top: 6px;
  }

  .producers-page #lo-que-cambia .change-block h3 {
    margin-bottom: 7px;
    font-size: 22px;
    line-height: 1.18;
  }

  .producers-page #lo-que-cambia .change-block p {
    font-size: 15px;
    line-height: 1.5;
  }

  .producers-page #lo-que-cambia .section-close {
    margin: 8px -16px 0;
    padding: 16px 16px 20px;
    font-size: 24px;
    line-height: 1.1;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-lede,
  .editorial-block p,
  .section-intro {
    font-size: 16px;
  }

  .button-row,
  .path-grid,
  .help-grid {
    grid-template-columns: 1fr;
  }

  .button-row {
    display: grid;
    gap: 12px;
  }

  .button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .help-grid,
  .path-grid {
    display: grid;
  }

  .info-card,
  .path-card {
    padding: 24px;
  }

  .audience-list li {
    padding: 18px 20px;
    font-size: 16px;
  }

  .home-footer .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .success-panel {
    width: min(100% - 32px, 640px);
    padding: 24px;
  }

  .success-panel h1 {
    font-size: 34px;
  }
}

/* Home commercial visual pass */
.home-page {
  --brand-deep: #073b78;
  --brand-blue: #0059a5;
  --brand-sky: #00aeca;
  --brand-soft: #e9f7fb;
  --brand-soft-2: #f2fbfd;
  --brand-line: #b9dce9;
}

.home-page .site-header {
  background: #005eb8;
}

.home-page .nav-links {
  color: #ffffff;
}

.home-page .nav-links a:hover,
.home-page .nav-links a:focus {
  color: #ffffff;
  opacity: 0.78;
}

.home-page .home-hero {
  padding: 10px 0 66px;
  background: #ffffff;
}

.home-page .home-hero .hero-content {
  width: min(100% - 128px, 1664px);
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  column-gap: clamp(34px, 5.6vw, 108px);
  row-gap: 30px;
  align-items: center;
}

.hero-message-panel,
.hero-brand-panel {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.home-page .hero-message-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(300px, 18.2vw, 350px);
  padding: clamp(26px, 2.45vw, 46px) clamp(34px, 3.65vw, 70px);
  background: #005eb8;
}

.home-page .home-hero h1 {
  max-width: 100%;
  margin-bottom: clamp(18px, 1.55vw, 30px);
  color: #ffffff;
  font-size: clamp(30px, 2.14vw, 41px);
  line-height: 1.14;
}

.home-page .home-hero .hero-lede {
  max-width: 100%;
  color: #ffffff;
  font-size: clamp(17px, 1.28vw, 24px);
  font-weight: 400;
  line-height: 1.34;
}

.hero-brand-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: #ffffff;
}

.hero-logo {
  width: min(100%, 900px);
  max-width: 100%;
  height: auto;
}

.home-page .hero-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  column-gap: clamp(34px, 5.6vw, 108px);
  justify-content: stretch;
  margin-top: 0;
}

.home-page .hero-actions .button {
  width: 100%;
  min-height: clamp(86px, 6.35vw, 122px);
  padding: 0 clamp(22px, 2.4vw, 46px);
  border-radius: 999px;
  font-size: clamp(20px, 1.45vw, 28px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  justify-self: center;
}

.home-page .hero-actions .button-primary {
  color: #ffffff;
  background: #005eb8;
  border-color: #005eb8;
}

.home-page .hero-actions .button-secondary {
  color: #ffffff;
  background: #12b4c4;
  border-color: #12b4c4;
}

.home-page .button-primary {
  color: #ffffff;
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.home-page .button-secondary {
  color: var(--brand-deep);
  background: transparent;
  border-color: var(--brand-blue);
}

.home-page #ayuda {
  padding: 36px 0 66px;
  background: #eaf2f7;
}

.home-page #ayuda .container {
  width: min(100% - 128px, 1664px);
  max-width: none;
}

.home-page #ayuda h2 {
  margin-bottom: 44px;
  color: #10b4c5;
  font-size: clamp(34px, 3vw, 58px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-page #ayuda .help-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 62px 100px;
}

.home-page #ayuda .info-card {
  min-height: 260px;
  padding: 18px 32px 30px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
}

.home-page #ayuda .info-card:nth-child(even) {
  background: #ffffff;
}

.home-page #ayuda .info-card h3 {
  margin-bottom: 24px;
  color: #10b4c5;
  font-size: clamp(34px, 2.55vw, 49px);
  font-weight: 700;
  line-height: 1.08;
}

.home-page #ayuda .info-card p {
  color: #202124;
  font-size: clamp(20px, 1.4vw, 27px);
  font-weight: 700;
  line-height: 1.35;
}

.home-page #para-quien-es {
  scroll-margin-top: 128px;
  padding: 58px 0 66px;
  background: #005eb8;
}

.home-page #para-quien-es .container {
  width: min(100% - 128px, 1664px);
  max-width: none;
}

.home-page #para-quien-es h2 {
  margin-bottom: 48px;
  color: #f4f8fb;
  font-family: inherit;
  font-size: clamp(42px, 3.05vw, 58px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

.home-page #para-quien-es .audience-list {
  width: min(100%, 1514px);
  gap: 72px;
}

.home-page #para-quien-es .audience-list li {
  min-height: 108px;
  padding: 24px 32px;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  color: #005eb8;
  font-family: inherit;
  font-size: clamp(25px, 1.78vw, 34px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
  background: #eaf2f7;
}

.home-page .home-path-section {
  scroll-margin-top: 128px;
  padding: 116px 0 82px;
  background: #eaf2f7;
}

.home-page .home-path-section .container {
  width: min(100% - 128px, 1664px);
  max-width: none;
}

.home-page .home-path-section h2 {
  margin-bottom: 44px;
  color: #334155;
  font-family: inherit;
  font-size: clamp(28px, 2vw, 38px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.home-page .home-path-section .path-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 5.2vw, 100px);
}

.home-page .home-path-section .path-card {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  align-items: center;
  text-align: center;
  gap: 56px;
  background: transparent;
}

.home-page .home-path-section .path-card h3 {
  width: 100%;
  min-height: 146px;
  margin: 0;
  padding: 24px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4f8fb;
  font-family: inherit;
  font-size: clamp(20px, 1.42vw, 27px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
  background: #2f4158;
}

.home-page .home-path-section .button {
  width: 100%;
  min-height: 122px;
  padding: 0 clamp(28px, 3vw, 56px);
  border-radius: 999px;
  color: #ffffff;
  font-family: inherit;
  font-size: clamp(22px, 1.58vw, 30px);
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
}

.home-page .home-path-section .button-primary {
  background: #005eb8;
  border-color: #005eb8;
}

.home-page .home-path-section .button-secondary {
  background: #12b4c4;
  border-color: #12b4c4;
}

.home-page .home-footer {
  padding: 0;
  background: #ffffff;
  border-top: 0;
}

.home-page .home-footer .footer-inner {
  width: min(100% - 144px, 1780px);
  min-height: 134px;
  gap: 40px;
}

.home-page .footer-social {
  gap: 30px;
}

.home-page .footer-social a {
  min-width: 62px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #005eb8;
}

.home-page .footer-social-whatsapp {
  color: #25d366;
}

.home-page .footer-social-instagram {
  color: #f56040;
}

.home-page .footer-social img,
.home-page .footer-social svg {
  width: 62px;
  height: 62px;
}

.home-page .footer-social a:hover,
.home-page .footer-social a:focus {
  color: var(--brand-deep);
}

@media (max-width: 1023px) {
  .home-page .home-path-section {
    padding: 78px 0 64px;
  }

  .home-page .home-path-section .container {
    width: min(100% - 48px, 1664px);
  }

  .home-page .home-path-section h2 {
    margin-bottom: 30px;
    font-size: 25px;
  }

  .home-page .home-path-section .path-grid {
    gap: 32px;
  }

  .home-page .home-path-section .path-card {
    gap: 24px;
  }

  .home-page .home-path-section .path-card h3 {
    min-height: 96px;
    padding: 22px 16px;
    font-size: 18px;
    line-height: 1.16;
  }

  .home-page .home-path-section .button {
    min-height: 70px;
    font-size: 18px;
  }

  .home-page #para-quien-es {
    padding: 48px 0 56px;
  }

  .home-page #para-quien-es .container {
    width: min(100% - 48px, 1664px);
  }

  .home-page #para-quien-es h2 {
    margin-bottom: 36px;
    font-size: 38px;
  }

  .home-page #para-quien-es .audience-list {
    gap: 28px;
  }

  .home-page #para-quien-es .audience-list li {
    min-height: 86px;
    padding: 20px 26px;
    font-size: 26px;
  }

  .home-page #ayuda {
    padding: 34px 0 56px;
  }

  .home-page #ayuda .container {
    width: min(100% - 48px, 1664px);
  }

  .home-page #ayuda h2 {
    margin-bottom: 34px;
    font-size: 34px;
    letter-spacing: 0.13em;
  }

  .home-page #ayuda .help-grid {
    gap: 28px;
  }

  .home-page #ayuda .info-card {
    min-height: 210px;
    padding: 22px 24px 26px;
  }

  .home-page #ayuda .info-card h3 {
    margin-bottom: 20px;
    font-size: 31px;
  }

  .home-page #ayuda .info-card p {
    font-size: 19px;
  }

  .home-page .home-hero .hero-content {
    width: min(100% - 48px, 1664px);
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    column-gap: 32px;
    row-gap: 24px;
  }

  .home-page .hero-message-panel {
    min-height: 260px;
  }

  .home-page .hero-brand-panel {
    min-height: 300px;
  }

  .home-page .home-hero h1 {
    font-size: 24px;
  }

  .home-page .home-hero .hero-lede {
    font-size: 16px;
    line-height: 1.32;
  }

  .hero-logo {
    width: min(100%, 520px);
  }

  .home-page .hero-actions {
    column-gap: 32px;
  }

  .home-page .hero-actions .button {
    min-height: 72px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .home-page .home-path-section {
    padding: 52px 0 48px;
  }

  .home-page .home-path-section .container {
    width: min(100% - 32px, 1664px);
  }

  .home-page .home-path-section h2 {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.16;
  }

  .home-page .home-path-section .path-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-page .home-path-section .path-card {
    gap: 14px;
  }

  .home-page .home-path-section .path-card h3 {
    min-height: 76px;
    padding: 18px 14px;
    font-size: 15px;
    line-height: 1.16;
  }

  .home-page .home-path-section .button {
    min-height: 56px;
    font-size: 15px;
  }

  .home-page #para-quien-es {
    padding: 40px 0 44px;
  }

  .home-page #para-quien-es .container {
    width: min(100% - 32px, 1664px);
  }

  .home-page #para-quien-es h2 {
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 1.12;
  }

  .home-page #para-quien-es .audience-list {
    gap: 16px;
  }

  .home-page #para-quien-es .audience-list li {
    min-height: 74px;
    padding: 16px 20px;
    font-size: 19px;
    line-height: 1.24;
  }

  .home-page #ayuda {
    padding: 32px 0 44px;
  }

  .home-page #ayuda .container {
    width: min(100% - 32px, 1664px);
  }

  .home-page #ayuda h2 {
    margin-bottom: 26px;
    font-size: 27px;
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .home-page #ayuda .help-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-page #ayuda .info-card {
    min-height: 0;
    padding: 20px 18px 24px;
  }

  .home-page #ayuda .info-card h3 {
    margin-bottom: 14px;
    font-size: 29px;
  }

  .home-page #ayuda .info-card p {
    font-size: 18px;
  }

  .home-page .home-hero {
    padding: 0 0 40px;
  }

  .home-page .home-hero .hero-content {
    width: min(100% - 32px, 1664px);
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .home-page .hero-message-panel,
  .home-page .hero-brand-panel {
    min-height: auto;
  }

  .home-page .home-hero h1 {
    font-size: 23px;
  }

  .home-page .home-hero .hero-lede {
    font-size: 16px;
    line-height: 1.32;
  }

  .hero-logo {
    width: min(100%, 430px);
  }

  .home-page .hero-actions {
    grid-template-columns: 1fr;
    row-gap: 14px;
    justify-content: stretch;
    margin-top: 0;
  }

  .home-page .hero-actions .button {
    width: 100%;
    min-height: 68px;
    font-size: 17px;
  }

  .home-page .home-footer .footer-inner {
    width: min(100% - 32px, 1780px);
    min-height: 112px;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 14px;
  }

  .home-page .footer-brand img {
    width: 144px;
    height: 32px;
  }

  .home-page .footer-social {
    gap: 10px;
  }

  .home-page .footer-social a {
    min-width: 30px;
    min-height: 30px;
  }

  .home-page .footer-social img,
  .home-page .footer-social svg {
    width: 30px;
    height: 30px;
  }
}
