:root {
    --p300: #242044;   --p400: #191630;

    --s50:  #EAF7FF;   --s100: #86CFFF;   --s200: #52BBFF;   --s75:  #A9DDFF; 
    --a50:  #F7EFE2;   --a300: #F0A400; 
    --n50:  #ECECEC;   --p50:  #E9E9EC;   --white:#FFFFFF;

  --font-display: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius-card: 16px;
  --radius-btn-tl-br: 8px;
  --header-h: 64px;

  --container-pad: 16px;
  --max-width: 1680px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--p300);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; margin: 0; }
.regular { font-weight: 400; }
p { margin: 0; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--p300); color: var(--white); padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--s200);
  outline-offset: 2px;
}

.icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--p300); }
.icon svg, .icon img { width: 100%; height: 100%; display: block; object-fit: contain; }
.icon--sm { width: 16px; height: 16px; }
.icon--lg { width: 32px; height: 32px; }
.icon--xl { width: 48px; height: 48px; }

.section {
  padding: 48px var(--container-pad);
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-title {
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.2;
  margin-bottom: 8px;
}
.section-title strong { font-weight: 700; }
.section-title.center { text-align: center; }
.section-subtitle {
  font-size: clamp(0.75rem, 2vw, 1.1875rem);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 640px;
}
.section-subtitle.center { margin-left: auto; margin-right: auto; text-align: center; }
.lead { font-size: clamp(0.75rem, 2vw, 1.1875rem); line-height: 1.5; }
.asset-note { font-size: 0.75rem; opacity: .55; margin-top: 12px; text-align: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 8px 20px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  border-radius: 0 var(--radius-btn-tl-br) 0 var(--radius-btn-tl-br);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-main {
  background: var(--s100);
  color: var(--p300);
}
.btn-main:hover { background: #6fc4ff; }
.btn-main:active { transform: translateY(1px); background: #59b9ff; }
.btn-main:disabled { background: var(--p50); color: #9a98a8; cursor: not-allowed; }

.btn-icon {
  width: 48px; height: 48px; padding: 0;
  border: 1.5px solid var(--p300);
  border-radius: 0 var(--radius-btn-tl-br) 0 var(--radius-btn-tl-br);
}
.btn-icon:hover { background: var(--p300); color: var(--white); }
.btn-icon:hover .icon { color: var(--white); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  box-shadow: 0 11px 53.7px rgba(0,0,0,0.04);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.header-inner {
  width: 100%; max-width: var(--max-width); margin: 0 auto;
  padding: 8px var(--container-pad);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.header-brand { display: flex; align-items: center; gap: 12px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.logo-img { height: 44px; width: auto; max-width: 180px; object-fit: contain; }
.logo-word { display: none; }
.menu-toggle {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  color: var(--p300);
}
.menu-toggle svg { width: 22px; height: 22px; }

.primary-nav {
  position: fixed; inset: var(--header-h) 0 0 0;
  background: var(--white);
  padding: 24px var(--container-pad);
  display: flex; flex-direction: column; gap: 24px;
  transform: translateX(100%);
  transition: transform .25s ease;
  overflow-y: auto;
}
.primary-nav.open { transform: translateX(0); }
.primary-nav ul { display: flex; flex-direction: column; gap: 4px; }
.nav-link {
  display: block; padding: 12px 4px; font-size: 15px; border-bottom: 1px solid var(--p50);
}
.nav-link.active { font-weight: 600; color: var(--s200); }
.nav-categories { border-top: 1px solid var(--p50); padding-top: 16px; }
.nav-categories a { display: block; padding: 10px 4px; font-size: 14px; }
.nav-cta { align-self: stretch; text-align: center; }

.hero { padding: 32px var(--container-pad) 24px; max-width: var(--max-width); margin: 0 auto; }
.hero-grid { display: flex; flex-direction: column; gap: 24px; }
.hero-copy h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1.2;
}
.hero-copy h1 .regular { font-family: var(--font-body); font-weight: 400; font-family: var(--font-display); font-weight: 400; }
.hero-copy .lead { margin-top: 16px; }
.hero-media { order: -1; }
.hero-media img {
  width: 100%; height: 280px; object-fit: cover;
  border-radius: 24px;
}

.trust-row { display: flex; gap: 16px; margin-top: 24px; }
.trust-chip {
  flex: 1;
  background: var(--s50);
  border-radius: 8px;
  padding: 16px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center;
}
.trust-text { display: flex; flex-direction: column; gap: 2px; }
.trust-text strong { font-family: var(--font-body); font-weight: 600; font-size: 12px; }
.trust-text small { font-size: 10px; font-weight: 400; }

.hero-cta { margin-top: 24px; width: 100%; }

.benefit-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px;
  margin-top: 32px;
}
.benefit-card {
  padding: 16px 4px; text-align: center;
  border-top: 1px solid var(--p50);
}
.benefit-card .icon { margin: 0 auto 16px; }
.benefit-card h3 { font-size: 16px; line-height: 1.2; margin-bottom: 8px; }
.benefit-card p { font-size: 12px; line-height: 1.5; }

.process { background: var(--n50); max-width: none; padding-left: var(--container-pad); padding-right: var(--container-pad); }
.process-steps { display: flex; flex-direction: column; gap: 32px; margin-top: 24px; }
.process-step { text-align: center; padding: 16px; border-radius: var(--radius-card); }
.step-marker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.step-number {
  width: 64px; height: 64px; border-radius: 100px;
  background: var(--s200); color: var(--p400);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 24px;
}
.step-arrow { display: none; }
.process-step h3 { font-size: clamp(1.5rem, 4vw, 1.75rem); margin-bottom: 16px; }
.process-step p { font-size: 12px; line-height: 1.5; }
.process-steps {
  list-style: none;
  padding-left: 0;
}

.partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.partner-logo { height: 130px; }

.promo { background: var(--a50); max-width: none; padding: 64px var(--container-pad); }
.promo-grid { display: flex; flex-direction: column; gap: 24px; max-width: var(--max-width); margin: 0 auto; }
.promo-media img { width: 100%; height: 250px; object-fit: cover; border-radius: var(--radius-card); }
.promo-copy h2 { font-size: clamp(2.5rem, 6vw, 3rem); line-height: 1.2; margin-bottom: 24px; }
.promo-copy .lead { margin-bottom: 32px; display: block; }
.promo-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.promo-list li { display: flex; gap: 16px; align-items: flex-start; }
.promo-list strong { display: block; font-family: var(--font-display); font-size: 16px; margin-bottom: 8px; }
.promo-list p { font-size: 12px; line-height: 1.5; }
.promo-copy .btn { width: 100%; }

#producto { scroll-margin-top: calc(var(--header-h) + 16px); }
#producto .section-subtitle { max-width: 900px; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.product-card { display: flex; flex-direction: column; gap: 8px; }
.product-card img { width: 100%; height: 108px; object-fit: cover; border-radius: 4px; }
.product-card.is-attention {
  animation: productAttention 1.4s ease;
  border-radius: 8px;
}
@keyframes productAttention {
  0%   { box-shadow: 0 0 0 0 rgba(240,164,0,0); }
  20%  { box-shadow: 0 0 0 4px rgba(240,164,0,.55); }
  60%  { box-shadow: 0 0 0 4px rgba(240,164,0,.55); }
  100% { box-shadow: 0 0 0 0 rgba(240,164,0,0); }
}
@media (prefers-reduced-motion: reduce) {
  .product-card.is-attention { animation: none; }
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 2px solid var(--a300); padding-top: 8px;
}
.product-footer h3 { font-family: var(--font-body); font-weight: 600; font-size: 14px; }

.testimonials { padding-bottom: 24px; }
.testimonial-carousel { overflow: hidden; margin-top: 24px; }
.testimonial-track {
  display: flex; gap: 16px;
  transition: transform .4s ease;
}
.testimonial-card {
  flex: 0 0 100%;
  background: linear-gradient(256deg, #FEF6E6 22%, #EAF7FF 96%);
  border-radius: var(--radius-card);
  padding: 16px;
}
.quote-mark { display: block; font-family: var(--font-display); font-weight: 700; font-size: 48px; line-height: .77; margin-bottom: 8px; }
.testimonial-card p { font-size: 12px; line-height: 1.5; margin-bottom: 16px; }
.testimonial-card footer { display: flex; flex-direction: column; gap: 2px; }
.testimonial-card footer strong { font-size: 14px; font-weight: 600; }
.testimonial-card footer span { font-size: 10px; }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.carousel-dots button {
  width: 8px; height: 8px; border-radius: 50%; background: var(--p50);
}
.carousel-dots button[aria-selected="true"] { background: var(--s200); }

.faq-grid { display: flex; flex-direction: column; gap: 8px; }
.faq-heading h2 { font-size: clamp(2rem, 6vw, 3rem); margin-bottom: 8px; }
.faq-list { display: flex; flex-direction: column; gap: 4px; margin-top: 16px; }
.faq-item { border-bottom: 1px solid var(--p50); }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 15px 0; font-family: var(--font-body); font-weight: 600; font-size: 12px; text-align: left;
}
.faq-trigger .chevron { transition: transform .2s ease; }
.faq-trigger[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.faq-panel { padding: 0 0 16px; font-size: 12px; line-height: 1.5; }
.faq-panel[hidden] { display: none; }

.location-grid { display: flex; flex-direction: column; gap: 24px; margin-top: 24px; }

.location-map {
  position: relative;
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--n50);
}
.location-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.location-directions {
  position: absolute; left: 16px; bottom: 16px;
  box-shadow: 0 4px 12px rgba(15,15,20,.18);
}

.location-info { display: flex; flex-direction: column; gap: 16px; }
.location-item { display: flex; align-items: flex-start; gap: 16px; padding: 4px; }
.location-icon {
  flex-shrink: 0; width: 52px; height: 52px; padding: 12px;
  border-radius: 100px; background: var(--s75); color: var(--p300);
  display: flex; align-items: center; justify-content: center;
}
.location-item h3 { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.location-item p { font-family: var(--font-body); font-size: 14px; line-height: 1.5; }
.location-item p a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.location-schedule {
  background: var(--p50); border-radius: 16px; padding: 16px; margin-top: 8px;
}
.location-schedule .location-icon { background: transparent; padding: 0; width: 36px; height: 36px; }

@media (min-width: 768px) {
  .location-map { height: 340px; }
}

@media (min-width: 1024px) {
  .location-grid { flex-direction: row; align-items: stretch; gap: 36px; }
  .location-map { flex: 1 1 0%; height: auto; min-height: 471px; }
  .location-directions { left: 24px; bottom: 24px; }
  .location-info { flex: 1 1 0%; justify-content: space-between; gap: 8px; }
  .location-item { padding: 8px; }
  .location-item h3 { font-size: 19px; }
  .location-item p { font-size: 16px; }
  .location-icon { width: 68px; height: 68px; padding: 16px; }
  .location-schedule { padding: 16px 24px; }
  .location-schedule .location-icon { width: 36px; height: 36px; }
}

.site-footer { background: var(--p300); color: var(--white); padding: 36px var(--container-pad) 0; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; display: flex; flex-direction: column; gap: 36px; padding-bottom: 36px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { height: 64px; width: auto; max-width: 200px; object-fit: contain; object-position: left; align-self: flex-start; }
.footer-brand p { font-size: 12px; line-height: 1.5; max-width: 480px; }
.social-list { display: flex; gap: 8px; }
.social-list a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--white); }
.social-list .icon { width: 24px; height: 24px; }
.social-list svg { color: var(--white); }

.footer-links { display: flex; flex-direction: column; gap: 0; width: 100%; }
.footer-links-group { border-top: 1px solid rgba(255, 255, 255, 0.15); }
.footer-links-group:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.15); }

.footer-accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; color: var(--white); cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  padding: 16px 0; text-align: left;
}
.footer-accordion-trigger .chevron { transition: transform 0.2s ease; flex-shrink: 0; }
.footer-accordion-trigger[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.footer-accordion-panel { padding-bottom: 8px; }
.footer-accordion-panel[hidden] { display: none; }
.footer-links ul { display: flex; flex-direction: column; gap: 2px; }
.footer-links a { display: block; padding: 8px 0; font-size: 12px; color: var(--white); }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.15); margin: 0 auto; max-width: var(--max-width); }
.footer-copyright { text-align: center; font-size: 10px; padding: 16px var(--container-pad); }
@media (max-width: 374px) {
  :root { --container-pad: 12px; }
  .hero-copy h1 { font-size: 2.1rem; }
  .trust-row { gap: 8px; }
}

@media (min-width: 768px) {
  :root { --container-pad: 32px; }

  .logo-word { display: inline; }

  .trust-row { gap: 16px; }
  .benefit-list { grid-template-columns: repeat(4, 1fr); }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .product-card img { height: 140px; }

  .promo-grid { flex-direction: row; align-items: center; }
  .promo-media, .promo-copy { flex: 1; }
  .promo-media img { height: 100%; min-height: 320px; }

  .testimonial-card { flex: 0 0 calc(50% - 8px); }

  .process-steps { flex-direction: row; align-items: flex-start; }
  .process-step { flex: 1; }

  .faq-heading { max-width: 100%; }
}

@media (min-width: 1024px) {
  :root { --container-pad: 48px; --header-h: 96px; }

  .menu-toggle { display: none; }
  .logo-img { height: 72px; max-width: 330px; }

  .primary-nav {
    position: static; inset: auto; transform: none;
    flex-direction: row; align-items: center; justify-content: flex-end;
    flex: 1; padding: 0; background: transparent; overflow: visible;
  }
  .primary-nav ul { flex-direction: row; gap: 16px; }
  .nav-link { padding: 8px 0; font-size: 14px; border-bottom: none; }
  .nav-categories { border-top: none; padding-top: 0; display: flex; gap: 16px; }
  .nav-categories a { padding: 8px 0; position: relative; }
  .nav-categories li:not(:last-child) a::after {
    content: ""; position: absolute; right: -8px; top: 50%; transform: translateY(-50%);
    width: 1px; height: 16px; background: var(--p50);
  }
  .nav-cta { width: auto; margin-left: 8px; }

  .hero { padding-top: 48px; }
  .hero-grid { flex-direction: row; align-items: center; gap: 48px; }
  .hero-copy { flex: 1; }
  .hero-media { flex: 1; align-self: stretch; order: 0; }
  .hero-media img { height: 100%; min-height: 480px; border-radius: 24px; }
  .hero-cta { width: auto; }
  .trust-chip { padding: 16px; text-align: left; flex-direction: row; align-items: flex-start; }
  .trust-text { text-align: left; }
  .trust-text strong { font-size: 19px; }
  .trust-text small { font-size: 16px; }

  .section-title { font-size: 3rem; }
  .section-subtitle { font-size: 19px; }
  .lead { font-size: 19px; }

  .benefit-list { grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
  .benefit-card { border-top: none; padding: 36px; position: relative; }
  .benefit-card:not(:last-child)::after {
    content: ""; position: absolute; right: 0; top: 10%; bottom: 10%; width: 1px; background: var(--p50);
  }
  .benefit-card h3 { font-size: 28px; }
  .benefit-card p { font-size: 16px; }

  .process-steps { gap: 0; align-items: stretch; position: relative; }
  .step-arrow { display: inline-flex; }
  .process-step h3 { font-size: 28px; }
  .process-step p { font-size: 16px; }

  .partner-grid { grid-template-columns: repeat(6, 1fr); }
  .partner-logo { height: 130px; }
  .partner-logo img { max-height: 64px; }

  .promo { padding: 64px var(--container-pad); }
  .promo-media img { border-radius: 24px; }
  .promo-copy .btn { width: auto; }
  .promo-list strong { font-size: 19px; }
  .promo-list p { font-size: 16px; }

  .product-grid { gap: 24px; }
  .product-card img { height: 220px; border-radius: 8px; }
  .product-footer { padding: 16px 24px; }
  .product-footer h3 { font-size: 23px; }

  .testimonial-card { flex: 0 0 calc(25% - 18px); }
  .quote-mark { font-size: 56px; }
  .testimonial-card footer strong { font-size: 19px; }
  .testimonial-card footer span { font-size: 16px; }

  .faq-grid { flex-direction: row; gap: 48px; align-items: flex-start; }
  .faq-heading { flex: 0 0 420px; min-width: 0; }
  .faq-list { flex: 1; margin-top: 0; min-width: 0; }
  .faq-trigger { font-size: 19px; padding: 12px 0; }

  .footer-inner { flex-direction: row; justify-content: space-between; }
  .footer-brand { flex: 0 0 430px; }
  .footer-links { flex: 1 1 auto; flex-direction: row; gap: 64px; justify-content: flex-end; }
  .footer-links-group { border-top: none; flex: 0 0 auto; }
  .footer-links-group:last-child { border-bottom: none; }
  .footer-logo { height: 80px; max-width: 260px; object-position: left; }
  .footer-accordion-trigger { pointer-events: none; padding: 0 0 16px; font-size: 16px; }
  .footer-accordion-trigger .chevron { display: none; }
  .footer-accordion-panel[hidden] { display: block; }
  .footer-accordion-panel { padding-bottom: 0; }
  .footer-links a { font-size: 14px; }
}

@media (min-width: 1280px) {
  :root { --container-pad: 80px; }
}

@media (min-width: 1440px) {
  :root { --container-pad: 120px; }
  .hero-copy h1 { font-size: 4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

.stats-list { display: flex; flex-direction: column; margin-top: 24px; }
.stat-item {
  display: flex; align-items: center; gap: 12px; padding: 16px 0;
  border-bottom: 1px solid var(--p50);
}
.stat-item:last-child { border-bottom: none; }
.stat-item .icon { width: 48px; height: 48px; }
.stat-number { font-family: var(--font-display); font-weight: 700; font-size: 2rem; line-height: 1.2; }
.stat-label { font-size: 14px; }

.process-alt { background: var(--s50); max-width: none; padding: 48px var(--container-pad); }
.process-alt-grid { display: flex; flex-direction: column; gap: 32px; margin-top: 24px; max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.process-alt-heading { text-align: center; }
.process-alt-heading h2 { font-size: clamp(2rem, 6vw, 3rem); margin-bottom: 8px; }
.process-alt-heading .section-subtitle { margin-left: auto; margin-right: auto; }
.process-alt-steps { display: flex; flex-direction: column; gap: 24px; list-style: none; padding-left: 0; }
.process-alt-step { padding: 16px 12px; min-width: 0; }
.process-alt-step .step-plain-number {
  font-family: var(--font-display); font-weight: 700; font-size: 2.5rem; color: var(--p300);
  display: block; margin-bottom: 12px;
}
.process-alt-step h3 {
  font-size: 16px; margin-bottom: 8px; line-height: 1.3; min-height: 2.6em;
  overflow-wrap: break-word; word-break: break-word;
}
.process-alt-step p {
  font-size: 14px; line-height: 1.5; min-height: 3em;
  overflow-wrap: break-word; word-break: break-word;
}

.network { background: var(--s75); max-width: none; padding: 48px var(--container-pad) 24px; }
.network-inner { max-width: var(--max-width); margin: 0 auto; }
.network-list { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
.network-item { display: flex; align-items: center; gap: 16px; padding: 8px 0; }
.network-item .icon { width: 52px; height: 52px; }
.network-item strong { font-family: var(--font-body); font-weight: 600; font-size: 16px; }

.goal-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
.goal-card { background: var(--n50); border-radius: var(--radius-card); padding: 16px 12px; }
.goal-card .icon { margin-bottom: 16px; }
.goal-card h3 { font-size: 16px; margin-bottom: 8px; }
.goal-card ul { list-style: disc; padding-left: 18px; font-size: 12px; line-height: 1.5; }
.goal-card li + li { margin-top: 2px; }

.contact-form { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 16px; }
.form-field label { font-family: var(--font-body); font-weight: 600; font-size: 14px; }
.form-field input,
.form-field textarea {
  font-family: var(--font-body); font-size: 12px; color: var(--p300);
  border: 1px solid #807E93; border-radius: 8px; padding: 12px;
  background: var(--white); width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #807E93; }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--s200); }
.form-field textarea { min-height: 120px; resize: vertical; }

.form-consent {
  display: flex; align-items: center; gap: 8px; justify-content: flex-end;
  font-size: 10px;
}
.form-consent input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--s200); }
.form-actions { display: flex; justify-content: flex-end; margin-top: 8px; }
.form-status { font-size: 12px; margin-top: 8px; text-align: right; }
.form-status[data-state="ok"] { color: #1a7f37; }
.form-status[data-state="error"] { color: #b3261e; }

@media (min-width: 768px) {
  .stats-list { flex-direction: row; }
  .stat-item { flex: 1; flex-direction: column; text-align: center; border-bottom: none; border-right: 1px solid var(--p50); min-width: 0; }
  .stat-item:last-child { border-right: none; }

  .process-alt-steps { flex-direction: row; gap: 24px; }
  .process-alt-step { flex: 1; min-width: 0; }

  .network-list { flex-direction: row; }
  .network-item { flex: 1; flex-direction: column; text-align: center; min-width: 0; }

  .goal-grid { grid-template-columns: repeat(2, 1fr); }

  .form-row { flex-direction: row; gap: 24px; }
  .form-field { flex: 1; }
}

@media (min-width: 1024px) {
  .stat-item { padding: 36px 16px; gap: 24px; }
  .stat-item .icon { width: 64px; height: 64px; }
  .stat-number { font-size: 4rem; }
  .stat-label { font-size: 19px; }

  .process-alt-step { padding: 36px 12px; }
  .process-alt-step .step-plain-number { font-size: 4rem; }
  .process-alt-step h3 { font-size: 28px; }
  .process-alt-step p { font-size: 16px; }

  .network-item .icon { width: 64px; height: 64px; }
  .network-item strong { font-size: 19px; }

  .goal-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .goal-card { padding: 36px; }
  .goal-card h3 { font-size: 23px; }
  .goal-card ul { font-size: 19px; padding-left: 22px; }

  .form-field input,
  .form-field textarea { font-size: 16px; }
  .form-consent { font-size: 12px; }
}

.credit-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  z-index: 200;
}
.credit-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.credit-modal {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 560px;
  background: var(--white);
  box-shadow: -23px 0 54px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 201;
  display: flex;
  flex-direction: column;
  visibility: hidden;
}
.credit-modal.is-open {
  transform: translateX(0);
  visibility: visible;
}

.credit-modal-head {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 16px 0;
}
.credit-modal-logo { height: 46px; width: auto; }
.credit-modal-close {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  color: var(--p300); flex-shrink: 0;
}
.credit-modal-close svg { width: 24px; height: 24px; }

.credit-modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 16px;
  -webkit-overflow-scrolling: touch;
}

.credit-modal-title {
  font-size: 28px; line-height: 1.2; margin-bottom: 16px;
}
.credit-modal-desc {
  font-size: 12px; line-height: 1.5; margin-bottom: 24px;
}

.credit-modal-entities { display: flex; flex-direction: column; }
.credit-modal-entity-item {
  border-bottom: 1px solid var(--p50);
  border-radius: 0;
  margin: 0 -12px;
  padding: 0 12px;
  transition: border-radius .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.credit-modal-entity-item:last-child { border-bottom: none; }
.credit-modal-entity-item:hover {
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(36,32,68,0.10);
}
.credit-modal-entity {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0;
  border: none;
  text-align: left; width: 100%; background: none; cursor: pointer;
}
.credit-modal-entity-logo {
  flex-shrink: 0; width: 96px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; overflow: hidden;
}
.credit-modal-entity-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.credit-modal-entity-logo.is-placeholder {
  background: var(--p50); color: var(--p300);
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
}
.credit-modal-entity-info { flex: 1; min-width: 0; }
.credit-modal-entity-name {
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.credit-modal-entity-cta {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; margin-top: 2px;
}
.credit-modal-entity-cta .icon { width: 16px; height: 16px; transform: rotate(-45deg); }

.credit-modal-tooltip { position: relative; display: inline-flex; }
.credit-modal-tooltip-trigger {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.4px solid currentColor; background: none; color: inherit;
  font-family: var(--font-display); font-size: 10px; font-style: italic; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 0; cursor: pointer;
}
.credit-modal-tooltip-bubble {
  display: none;
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  width: 200px; padding: 8px 10px; border-radius: 8px;
  background: var(--p300); color: var(--white);
  font-family: var(--font-body); font-weight: 400; font-size: 11px; line-height: 1.4;
  text-align: left; z-index: 1;
}
.credit-modal-tooltip.is-open .credit-modal-tooltip-bubble,
.credit-modal-tooltip:hover .credit-modal-tooltip-bubble,
.credit-modal-tooltip:focus-within .credit-modal-tooltip-bubble { display: block; }

.credit-modal-entity-form { padding: 0 0 16px; }
.credit-modal-entity-form .contact-form,
.credit-modal-entity-form form { display: flex; flex-direction: column; gap: 12px; }
.credit-modal-entity-form .form-field { gap: 6px; }
.credit-modal-entity-form .form-field label { font-size: 12px; }
.credit-modal-entity-form .form-field input {
  height: 44px; padding: 0 12px; border-radius: 8px;
  border: 1px solid var(--p50); font-family: var(--font-body); font-size: 14px;
}
.credit-modal-entity-form .form-field input::placeholder { color: #807E93; }
.credit-modal-entity-form .form-field input:focus { border-color: var(--s200); outline: none; }
.credit-modal-entity-form .form-consent { font-size: 12px; }
.credit-modal-entity-form .form-actions { justify-content: flex-start; margin-top: 0; }
.credit-modal-entity-form .form-actions .btn {
  display: inline-flex; align-items: center; gap: 8px;
}

.credit-modal-foot {
  flex-shrink: 0;
  padding: 16px;
}
.credit-modal-cta {
  width: 100%; height: 48px;
  background: var(--s100); color: var(--p300);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  border-radius: 0 8px 0 8px;
}
.credit-modal-cta .icon { width: 16px; height: 16px; }

body.credit-modal-locked { overflow: hidden; }

@media (min-width: 1024px) {
  .credit-modal { max-width: 620px; }
  .credit-modal-head { padding: 48px 48px 0; }
  .credit-modal-logo { height: 64px; }
  .credit-modal-body { padding: 32px 48px; }
  .credit-modal-title { font-size: 40px; margin-bottom: 24px; }
  .credit-modal-desc { font-size: 19px; margin-bottom: 24px; }
  .credit-modal-entity { gap: 16px; padding: 12px 0; }
  .credit-modal-entity-logo { width: 130px; height: 64px; }
  .credit-modal-entity-name { font-family: var(--font-display); font-size: 19px; white-space: normal; }
  .credit-modal-entity-cta { font-size: 16px; }
  .credit-modal-entity-cta .icon { width: 24px; height: 24px; }
  .credit-modal-tooltip-trigger { width: 20px; height: 20px; font-size: 12px; }
  .credit-modal-tooltip-bubble { width: 240px; font-size: 13px; padding: 10px 12px; }
  .credit-modal-entity-form .form-field label { font-size: 14px; }
  .credit-modal-entity-form .form-field input { height: 48px; font-size: 16px; }
  .credit-modal-entity-form .form-consent { font-size: 13px; }
  .credit-modal-foot { padding: 32px 48px 48px; }
  .credit-modal-cta { font-size: 19px; }
  .credit-modal-cta .icon { width: 24px; height: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .credit-modal, .credit-modal-overlay { transition: none !important; }
}

.prizes-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  z-index: 200;
}
.prizes-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.prizes-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: calc(100% - 24px);
  max-width: 960px;
  max-height: calc(100vh - 24px);
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  z-index: 201;
  display: flex;
  flex-direction: column;
}
.prizes-modal.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.prizes-modal-head {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 16px 16px 0;
}
.prizes-modal-close {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  color: var(--p300); flex-shrink: 0;
}
.prizes-modal-close svg { width: 24px; height: 24px; }

.prizes-modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 8px 16px 24px;
  -webkit-overflow-scrolling: touch;
}

.prizes-modal-note {
  font-family: var(--font-body); color: var(--p300);
  font-size: 13px; line-height: 1.5; margin: 0 0 16px;
}

.prizes-accordion-item { border-bottom: 1px solid var(--p50); }
.prizes-accordion-heading { margin: 0; }
.prizes-accordion-trigger {
  width: 100%;
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
  text-align: left; background: none; border: none; cursor: pointer;
  padding: 16px 0;
  color: var(--p300);
}
.prizes-accordion-title {
  flex: 1 1 auto; min-width: 0;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
}
.prizes-accordion-trigger .icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--p300); }
.prizes-accordion-trigger .chevron { transition: transform 0.2s ease; }
.prizes-accordion-trigger[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.prizes-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--p300);
  border: 1.5px solid var(--p300);
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  padding: 6px 12px; border-radius: 999px;
  white-space: normal;
  order: 3;
  flex-basis: 100%;
}
.prizes-badge .icon { width: 16px; height: 16px; flex-shrink: 0; }

.prizes-accordion-panel { padding: 0 0 20px; }
.prizes-accordion-panel[hidden] { display: none; }

.prizes-table {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2px;
}
.prizes-cell {
  font-family: var(--font-body); color: var(--p300);
  font-size: 14px; line-height: 1.5;
  padding: 2px 0;
}
.prizes-cell--head { display: none; }
.prizes-row-start {
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid var(--p50);
}
.prizes-table > .prizes-row-start:first-of-type { margin-top: 0; border-top: none; }
.prizes-cell:not(.prizes-cell--head)::before {
  content: attr(data-label) ': ';
  font-weight: 700;
}

body.prizes-modal-locked { overflow: hidden; }

@media (min-width: 1024px) {
  .prizes-modal { border-radius: 32px; }
  .prizes-modal-head { padding: 32px 48px 0; }
  .prizes-modal-body { padding: 8px 48px 48px; }

  .prizes-modal-note { font-size: 16px; margin-bottom: 24px; }

  .prizes-accordion-trigger { flex-wrap: nowrap; padding: 24px 0; gap: 16px; }
  .prizes-accordion-title { font-size: 20px; }
  .prizes-accordion-trigger .icon { width: 24px; height: 24px; }
  .prizes-badge { order: 0; flex-basis: auto; font-size: 13px; padding: 8px 16px; }
  .prizes-accordion-panel { padding-bottom: 32px; }

  .prizes-table {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 32px; row-gap: 14px;
  }
  .prizes-cell {
    grid-column: var(--col);
    grid-row: var(--row);
    font-size: 16px;
  }
  .prizes-cell--head {
    display: block;
    font-family: var(--font-display); font-weight: 700; font-size: 18px;
    padding-bottom: 12px; margin-bottom: 8px;
    border-bottom: 1px solid var(--p50);
  }
  .prizes-cell[data-col="2"], .prizes-cell[data-col="3"], .prizes-cell[data-col="4"] {
    border-left: 1px solid var(--p50);
    padding-left: 24px;
  }
  .prizes-row-start {
    margin-top: 0; padding-top: 2px; border-top: none;
  }
  .prizes-cell:not(.prizes-cell--head)::before { content: none; }
}

@media (prefers-reduced-motion: reduce) {
  .prizes-modal, .prizes-modal-overlay { transition: none !important; }
}

.thankyou-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}

.thankyou-modal-overlay.is-open {
  display: flex;
}

.thankyou-modal {
  position: relative;
  display: flex;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  max-width: 980px;
  width: 100%;
  max-height: 90vh;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.thankyou-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.thankyou-modal__media {
  flex: 0 0 45%;
}

.thankyou-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thankyou-modal__content {
  flex: 1;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.thankyou-modal__title {
  font-size: 34px;
  line-height: 1.2;
  color: #1A1A3B;
  font-weight: 400;
  margin: 0 0 20px;
}

.thankyou-modal__title strong {
  display: block;
  font-weight: 800;
}

.thankyou-modal__text {
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A3B;
  margin: 0 0 28px;
}

.thankyou-modal__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  background: #7EC8F2;
  color: #1A1A3B;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.thankyou-modal__btn:hover {
  background: #63bbee;
}

@media (max-width: 767px) {
  .thankyou-modal {
    flex-direction: column;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 20px;
  }

  .thankyou-modal__media {
    flex: 0 0 auto;
    height: 220px;
  }

  .thankyou-modal__close {
    top: 12px;
    right: 12px;
  }

  .thankyou-modal__content {
    padding: 28px 24px 32px;
  }

  .thankyou-modal__title {
    font-size: 26px;
  }

  .thankyou-modal__btn {
    width: 100%;
    justify-content: center;
  }
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(-45deg, rgba(163, 230, 183, 0.85) 20%, rgba(163, 230, 183, 0.45) 80%);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: -5px 4px 38px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: -5px 6px 42px rgba(0, 0, 0, 0.22);
}

body.credit-modal-locked .whatsapp-float,
body.prizes-modal-locked .whatsapp-float,
body:has(.thankyou-modal-overlay.is-open) .whatsapp-float {
  display: none;
}

.whatsapp-float__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.whatsapp-float__icon svg {
  width: 100%;
  height: 100%;
}

.whatsapp-float__text {
  display: none;
  font-weight: 700;
  font-size: 20px;
  color: #1A1A3B;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .whatsapp-float {
    right: 48px;
    bottom: 48px;
    width: auto;
    height: 80px;
    padding: 0 28px 0 8px;
    justify-content: flex-start;
  }

  .whatsapp-float__icon {
    width: 64px;
    height: 64px;
  }

  .whatsapp-float__text {
    display: inline-block;
  }
}

.seasonal-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.seasonal-grid__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.seasonal-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ececec;
  border-radius: 16px;
  text-decoration: none;
  color: #1A1A3B;
  font-weight: 700;
  font-size: 16px;
  min-height: 160px;
  transition: opacity 0.2s ease;
}

.seasonal-banner:hover {
  opacity: 0.85;
}

.seasonal .section-subtitle {
  max-width: none;
}

@media (min-width: 992px) {
  .seasonal-grid {
    flex-direction: row;
    gap: 24px;
  }

  .seasonal-banner--large {
    flex: 0 0 55%;
    min-height: 480px;
  }

  .seasonal-grid__col {
    flex: 1;
  }

  .seasonal-grid__col .seasonal-banner--small {
    flex: 1;
    min-height: 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.goal-card,
.product-card,
.benefit-card {
  transition: transform .25s ease, box-shadow .25s ease, border-radius .25s ease;
}
.goal-card:hover,
.product-card:hover,
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(36,32,68,0.12);
  border-radius: 24px;
}

.site-header {
  box-shadow: none;
  transition: box-shadow .25s ease, height .25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 11px 32px rgba(36,32,68,0.10);
}
.logo-img { transition: height .25s ease; }
.site-header.is-scrolled .logo-img { height: 34px; }

@media (min-width: 1024px) {
  .site-header.is-scrolled .logo-img { height: 40px; }
}
