:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #5f5f66;
  --muted: #5f5f66;
  --border: #e7e7ea;
  --soft: #f0f2f6;
  --primary: #2f6bff;
  --shadow: 0 24px 60px rgba(15, 15, 16, 0.08);
  --radius-lg: 28px;
  --radius-md: 16px;
  --section-pad: clamp(56px, 6vw, 96px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Archivo", sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.risk-bar {
  background: #4b4b57;
  color: #ffffff;
  font-size: 0.78rem;
  line-height: 1.4;
  padding: 10px 24px;
  text-align: center;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px 40px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0 36px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
}


.logo-img {
  width: 88px;
  height: 88px;
  border-radius: 16px;
  object-fit: contain;
  background: #ffffff;
  padding: 6px;
  box-shadow: 0 14px 28px rgba(15, 15, 16, 0.16);
  border: 1px solid rgba(30, 91, 255, 0.18);
}


.main-nav {
  display: flex;
  gap: 20px;
  font-size: 1rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lang-select select {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: start;
  padding: var(--section-pad) 0 26px;
}

.section-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: start;
}


.section-hero .hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 12px 0;
  line-height: 1.05;
}

@media (max-width: 600px) {
  .section-hero {
    grid-template-columns: 1fr;
  }
}

#registro {
  scroll-margin-top: 120px;
}

.hero-form .form-card {
  grid-template-columns: 1fr;
  width: min(520px, 100%);
  margin-left: auto;
}

.hero-form .form-copy {
  text-align: left;
}

.hero-form .lead-form {
  margin-top: 4px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 700;
}


.title {
  color: var(--primary);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.01em;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  margin: 12px 0;
  line-height: 1.05;
}

.hero-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 0 10px;
}

.hero-actions {
  margin-top: 18px;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.hero-media {
  width: min(520px, 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.hero-media-inline {
  margin-top: 18px;
}

.stock-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.pill {
  background: var(--soft);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pill:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 91, 255, 0.6);
  box-shadow: 0 10px 22px rgba(30, 91, 255, 0.2);
}

.section {
  padding: var(--section-pad) 24px;
  scroll-margin-top: 120px;
  background: #ffffff;
  border-radius: 32px;
  border: 1px solid #0f0f10;
}


.section + .section {
  margin-top: 28px;
}

.hero + .section {
  margin-top: 28px;
}

.section-alt {
  background: #e9edf2;
  margin: 0;
  padding: var(--section-pad) 24px;
  border-radius: 32px;
  border: 1px solid #0f0f10;
  box-shadow: none;
}


.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 4vw, 36px);
  align-items: center;
}

.section-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.section-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.benefit-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  background: var(--surface);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.04);
}

.benefit-card h3 {
  margin: 0 0 8px;
  color: var(--primary);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
}

.checklist li::before {
  content: "✔";
  margin-right: 8px;
  color: var(--primary);
}

.section-visual {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.media-card {
  width: min(520px, 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}


.media-card a,
.hero-media a {
  display: block;
}

.media-card a:hover img,
.hero-media a:hover img {
  transform: scale(1.01);
}

.media-card img,
.hero-media img {
  transition: transform 0.2s ease;
}


.media-card--xl {
  width: min(640px, 100%);
  box-shadow: 0 30px 70px rgba(15, 15, 16, 0.12);
}

.highlight-grid {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}


.reasons-section .section-copy {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.reason-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.04);
  display: grid;
  gap: 10px;
}

.reason-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(30, 91, 255, 0.18), rgba(30, 91, 255, 0.03));
  border: 1px solid rgba(30, 91, 255, 0.2);
}

.reason-card h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}

.reason-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.highlight-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--surface);
  color: var(--muted);
}













  .process-visual {
    justify-items: center;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-card:nth-child(3) {
    grid-column: auto;
  }

  .process-why-list {
    grid-template-columns: 1fr;
  }
}

.form-section.section-alt {
  background: transparent;
  margin: 0;
  padding: var(--section-pad) 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.form-card {
  border: 1px solid #e1e3e9;
  border-radius: 32px;
  padding: 40px;
  background: #eef1f6;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(340px, 1.05fr);
  gap: 28px;
  box-shadow: 0 24px 50px rgba(15, 15, 16, 0.08);
}

.form-copy p {
  color: var(--muted);
}

.form-points {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 12px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e2e4ea;
  box-shadow: 0 10px 26px rgba(15, 15, 16, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.lead-form input,
.lead-form select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  background: var(--surface);
  color: var(--text);
}

.lead-form button {
  border: none;
  border-radius: 14px;
  background: var(--primary);
  color: #ffffff;
  padding: 14px 16px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
}

.whatsapp-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: linear-gradient(135deg, #25d366, #1aa94f);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.35);
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateZ(0);
  animation: whatsapp-pulse 2.6s ease-in-out infinite;
}

.whatsapp-button:hover {
  filter: brightness(0.95);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1100px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .site-footer {
    text-align: center;    padding: 18px 16px;
  }

  .footer-links {
    justify-content: center;
  }
}
  .footer-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    justify-content: center;
  }

  .header-actions {
    width: 100%;
  }

  .main-nav {
    font-size: 0.85rem;
  }
}


/* mobile-header */
@media (max-width: 600px) {
  .risk-bar {
    font-size: 0.74rem;
    padding: 8px 16px;
  }

  .site-header {
    align-items: flex-start;
    gap: 12px;
    padding: 18px 0 20px;
  }

  .logo {
    width: 100%;
    justify-content: flex-start;
  }

  .logo-img {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    padding: 6px;
    box-shadow: 0 16px 32px rgba(15, 15, 16, 0.18);
  }

  .main-nav {
    width: 100%;
    row-gap: 12px;
    column-gap: 14px;
    font-size: 0.88rem;
    justify-content: flex-start;
  }

  .header-actions {
    width: 100%;
    display: grid;
    gap: 12px;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .lang-select {
    width: auto;
  }

  .lang-select select {
    padding: 10px 12px;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero-form .form-card {
    margin-left: 0;
    width: 100%;
  }
}


/* form-mobile */
@media (max-width: 600px) {

  .form-card {
    padding: 22px;
    border-radius: 26px;
    gap: 18px;
  }

  .form-copy {
    text-align: left;
  }

  .lead-form {
    padding: 18px;
    border-radius: 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .lead-form label {
    font-size: 0.9rem;
  }

  .lead-form input,
  .lead-form select {
    width: 100%;
  }

  .lead-form button {
    width: 100%;
    padding: 14px;
  }

  .form-note {
    text-align: left;
  }
}


.privacy-content {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.privacy-content h1 {
  margin-top: 0;
}

.privacy-content h2 {
  margin: 12px 0 0;
  font-size: 1.25rem;
}

.privacy-content p {
  color: var(--muted);
  line-height: 1.7;
}


.whatsapp-cta {
  background: rgba(255, 255, 255, 0.18);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

@keyframes whatsapp-pulse {
  0%, 100% {
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.35);
    transform: translateY(0) scale(1);
  }
  50% {
    box-shadow: 0 22px 44px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px) scale(1.03);
  }
}


.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-consent input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
}


.legal-hero {
  display: grid;
  align-items: center;
}

.legal-hero-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 40px);
  background: linear-gradient(135deg, #ffffff, #f6f8fb);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.legal-sub {
  color: var(--muted);
  max-width: 720px;
  line-height: 1.6;
}

.legal-hero-points {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 600;
}

.legal-grid {
  display: grid;
  gap: clamp(16px, 3vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.legal-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  display: grid;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(15, 15, 16, 0.05);
}

.legal-card h2 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--primary);
}

.legal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.legal-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.legal-footer .legal-footer-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 8px;
}

@media (max-width: 700px) {
  .legal-hero-card {
    border-radius: 22px;
  }

  .legal-footer .legal-footer-inner {
    text-align: left;
  }
}


.site-footer {
  margin-top: 48px;
  padding: 28px 0 12px;
  border-top: none;
  display: grid;
  gap: 10px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links a {
  text-decoration: none;
  background: #f3f4f6;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  color: var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-links a:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 15, 16, 0.08);
}

@media (max-width: 700px) {
  .site-footer {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}


.site-footer .form-note {
  text-align: center;  font-weight: 700;
}


  
  .process-visual {
    justify-items: center;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-card:nth-child(3) {
    grid-column: auto;
  }

  .process-why-list {
    grid-template-columns: 1fr;
  }
}


  .process-block .section-visual {
    justify-items: center;
  }
}


  .process-visual {
    justify-items: center;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-card:nth-child(3) {
    grid-column: auto;
  }

  .process-why-list {
    grid-template-columns: 1fr;
  }
}

/* Proceso layout based on Tecnologia */
.process-block {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.process-block .section-copy {
  max-width: 560px;
}

.process-block .highlight-grid {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

.process-block .highlight-card {
  display: grid;
  gap: 6px;
}

@media (max-width: 900px) {
  .process-block {
    grid-template-columns: 1fr;
  }

  .process-block .section-visual {
    justify-items: center;
  }
}

/* Proceso layout (cards, no image) */
.process-centered {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.process-centered .section-sub {
  color: var(--muted);
  margin: 10px auto 0;
  max-width: 720px;
}

.process-cards {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  text-align: left;
}

.process-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: var(--surface);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
  display: grid;
  gap: 8px;
}

.process-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.process-why-title {
  margin: 28px 0 0;
  font-size: 1.1rem;
  color: var(--primary);
}

.process-reasons .process-card {
  font-weight: 600;
}

@media (max-width: 700px) {
  .process-centered {
    text-align: left;
  }

  .process-why-title {
    text-align: left;
  }
}

@media (min-width: 901px) {
  .markets-block .section-visual {
    padding-left: 24px;
  }
}

@media (min-width: 901px) {
  .markets-block .section-visual {
    padding-left: 40px;
  }
}

.markets-block .section-visual {
  margin-top: 16px;
}

}

.site-footer {
  border: none !important;
  box-shadow: none !important;
}

.site-footer::before,
.site-footer::after {
  content: none !important;
}

.process-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.process-card:hover,
.process-card:focus-within {
  transform: translateY(-3px);
  border-color: #0f0f10;
  box-shadow: 0 18px 40px rgba(15, 15, 16, 0.12);
}

.highlight-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.highlight-card:hover,
.highlight-card:focus-within {
  transform: translateY(-3px);
  border-color: #0f0f10;
  box-shadow: 0 18px 40px rgba(15, 15, 16, 0.12);
}

.benefit-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.benefit-card:hover,
.benefit-card:focus-within {
  transform: translateY(-3px);
  border-color: #0f0f10;
  box-shadow: 0 18px 40px rgba(15, 15, 16, 0.12);
}

.no-border {
  border: none !important;
  box-shadow: none !important;
}

.main-nav a {
  font-weight: 700;
}

.emph {
  font-weight: 700;
  color: var(--muted);
}



@media (max-width: 700px) {
  .combined-block {
    gap: 36px;
  }
  .markets-block .media-card {
    margin-bottom: 28px;
  }
  .benefits-block .media-card {
    margin-top: 28px;
  }
  .benefits-block {
    margin-top: 10px;
  }
}
