/* MulticargaEC - Corporate styles */
:root {
  --green: #1a6b3c;
  --green-deep: #0f4a2a;
  --green-soft: #e8f5ee;
  --lime: #8bc63e;
  --lime-dark: #6fa82e;
  --sky: #3b9dd6;
  --sky-dark: #2a7fb0;
  --teal: #1e3a4c;
  --teal-soft: #2a4f66;
  --white: #ffffff;
  --off-white: #f6faf8;
  --mist: #eef4f1;
  --text: #1a2e28;
  --text-muted: #5a6f66;
  --border: #d7e5dc;
  --shadow: 0 12px 40px rgba(15, 74, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 74, 42, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --nav-h: 92px;
  --font: "Outfit", system-ui, sans-serif;
  --font-display: "Sora", "Outfit", system-ui, sans-serif;
  --max: 1140px;
  --transition: 0.28s ease;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--nav-h);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header ¯ fixed so it stays visible while scrolling */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(215, 229, 220, 0.8);
  box-shadow: 0 4px 18px rgba(15, 74, 42, 0.06);
}
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--nav-h);
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}
.brand img {
  height: 76px;
  width: auto;
  max-width: min(300px, 52vw);
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  padding: 0.55rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 999px;
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
  background: var(--green-soft);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.35rem;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition),
    color var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--sky);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(59, 157, 214, 0.28);
}
.btn-primary:hover {
  background: var(--sky-dark);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(26, 107, 60, 0.25);
}
.btn-green:hover {
  background: var(--green-deep);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}
.btn-outline-light {
  border-color: #fff;
  color: #fff;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.btn-lime {
  background: var(--lime);
  color: var(--teal);
}
.btn-lime:hover {
  background: var(--lime-dark);
  color: var(--white);
}
.btn-login {
  background: var(--sky);
  color: var(--white);
  border-color: var(--sky);
  padding: 0.62rem 1.2rem;
  box-shadow: 0 6px 18px rgba(59, 157, 214, 0.32);
}
.btn-login:hover {
  background: var(--sky-dark);
  border-color: var(--sky-dark);
  color: var(--white);
}
.btn-wa {
  background: #25d366;
  color: var(--white);
}
.btn-wa:hover {
  background: #1ebe57;
}

/* Hero + Slider */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(139, 198, 62, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 80%, rgba(59, 157, 214, 0.14), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f4faf7 100%);
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 2rem 0 2.4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
}
.hero-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.hero-brand img {
  height: 72px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}
.hero-kicker {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  line-height: 1.12;
  color: var(--green-deep);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 14ch;
}
.hero h1 span {
  color: var(--sky);
}
.hero-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 38ch;
  margin-bottom: 1.15rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.slider {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 340px;
  width: 100%;
  max-width: 100%;
  box-shadow: var(--shadow-lg);
  background: var(--teal);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background-size: cover;
  background-position: center;
}
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(30, 58, 76, 0.35) 0%, rgba(15, 74, 42, 0.82) 100%);
}
.slide > * {
  position: relative;
  z-index: 1;
}
.slide.is-active {
  opacity: 1;
  visibility: visible;
}
.slide-1 {
  background-image:
    linear-gradient(135deg, #1e3a4c 0%, #1a6b3c 55%, #3b9dd6 120%);
}
.slide-2 {
  background-image:
    linear-gradient(145deg, #0f4a2a 0%, #2a7fb0 70%, #8bc63e 130%);
}
.slide-3 {
  background-image:
    linear-gradient(160deg, #1e3a4c 10%, #3b9dd6 60%, #1a6b3c 110%);
}
.slide-4 {
  background-image:
    linear-gradient(150deg, #0f4a2a 0%, #1e3a4c 50%, #8bc63e 120%);
}
.slide-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.slide h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  line-height: 1.2;
  margin-bottom: 0.55rem;
  max-width: 16ch;
}
.slide p {
  opacity: 0.92;
  max-width: 32ch;
  font-size: 0.98rem;
}
.slider-nav {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  display: flex;
  gap: 0.45rem;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width var(--transition), background var(--transition);
}
.slider-dot.is-active {
  width: 28px;
  background: var(--lime);
}
.slider-arrows {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  display: flex;
  gap: 0.4rem;
}
.slider-arrows button {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: background var(--transition);
}
.slider-arrows button:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* Sections */
.section {
  padding: 2.4rem 0;
}
.section-alt {
  background: var(--off-white);
}
.section-head {
  max-width: 620px;
  margin-bottom: 1.35rem;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
}
.section-head--spaced {
  margin-top: 3rem;
}
.section-cta {
  margin-top: 2rem;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.65rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  color: var(--green-deep);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Operators */
.operators-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.operator {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 0.9rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.operator:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--lime);
}
.operator-logo {
  width: 100%;
  height: 88px;
  margin: 0 auto 0.75rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #f8faf9;
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 0.55rem;
}
.operator-logo img {
  max-height: 72px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.operator h3 {
  font-size: 1.05rem;
  color: var(--green-deep);
  margin-bottom: 0.25rem;
}
.operator p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.services-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.services-grid--spaced {
  margin-top: 1.75rem;
}
.service-item {
  padding: 1.2rem 1.15rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.service-item:hover {
  border-color: rgba(59, 157, 214, 0.45);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: var(--green-soft);
  color: var(--green);
  font-size: 1.35rem;
  overflow: hidden;
}
.service-icon img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
  display: block;
}
.service-icon--light {
  background: #fff;
  border: 1px solid var(--border);
}
.service-icon--stack {
  width: auto;
  max-width: 100%;
  min-width: 48px;
  height: 48px;
  padding: 0.35rem 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  flex-wrap: wrap;
}
.service-icon--stack img {
  max-width: 26px;
  max-height: 26px;
}
.chip-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 14px;
  background: #fff;
  max-width: 100%;
}
.chip-logo img {
  width: auto;
  height: 22px;
  max-width: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.service-item h3 {
  font-size: 1.12rem;
  color: var(--green-deep);
  margin-bottom: 0.45rem;
}
.service-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.service-item ul {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.35rem;
}
.service-item li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text);
}
.service-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.5rem 1.2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  min-width: 0;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 1.05rem;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}
.step p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Benefits strip */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.benefit {
  padding: 0.25rem 0.5rem;
  min-width: 0;
}
.benefit h3 {
  font-size: 1.15rem;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}
.benefit p {
  color: var(--text-muted);
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, var(--green-deep) 0%, var(--teal) 45%, var(--sky-dark) 100%);
  color: var(--white);
  padding: 2.4rem 0;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -120px;
  top: -160px;
  background: radial-gradient(circle, rgba(139, 198, 62, 0.35), transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 18ch;
  line-height: 1.2;
}
.cta-inner p {
  opacity: 0.9;
  margin-top: 0.5rem;
  max-width: 42ch;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 2rem 0 1.4rem;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(59, 157, 214, 0.12), transparent 55%),
    linear-gradient(180deg, #ffffff, var(--off-white));
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--green-deep);
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 54ch;
}

/* Puntos+ */
.puntos-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), #b8e06a);
  color: var(--teal);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.puntos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.puntos-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  min-width: 0;
}
.puntos-card h3 {
  color: var(--green-deep);
  margin-bottom: 0.55rem;
  font-size: 1.12rem;
}
.puntos-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.flow {
  display: grid;
  gap: 0.85rem;
}
.flow-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 0;
}
.flow-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800;
}
.flow-item h3 {
  font-size: 1.05rem;
  color: var(--green-deep);
  margin-bottom: 0.25rem;
}
.flow-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.example-box {
  background: linear-gradient(135deg, var(--green-soft), #e8f4fb);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
}
.example-box h3 {
  color: var(--green-deep);
  margin-bottom: 0.6rem;
}
.example-box p {
  color: var(--text-muted);
}
.example-box strong {
  color: var(--green);
}

/* Forms */
.form-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
.form-panel,
.info-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  min-width: 0;
}
.form-panel h2,
.info-panel h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}
.form-panel > p,
.info-panel > p {
  color: var(--text-muted);
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
}
.form-group--check {
  display: block;
  margin-top: 0.35rem;
}
.checkbox-label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  margin: 0.2rem 0 0;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  max-width: 18px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  flex: 0 0 18px;
  align-self: flex-start;
  cursor: pointer;
}
.checkbox-label span {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
}
.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(59, 157, 214, 0.18);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 0.15rem;
}
.form-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.req-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.2rem 0 1.5rem;
}
.req-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.75rem;
  align-items: start;
}
.req-check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.req-item h4 {
  font-size: 0.98rem;
  color: var(--green-deep);
  margin-bottom: 0.15rem;
}
.req-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.alert {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}
.alert-success {
  background: #e8f8ef;
  color: #0f4a2a;
  border: 1px solid #b7e4c7;
}
.alert-error {
  background: #fdecea;
  color: #8a1f11;
  border: 1px solid #f5c6cb;
}

/* Toast popup ¯ mensaje enviado */
.toast-popup {
  position: fixed;
  left: 50%;
  top: 20%;
  transform: translate(-50%, -12px);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
  width: min(92vw, 380px);
}
.toast-popup.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.toast-popup__inner {
  background: #0f4a2a;
  color: #fff;
  border-radius: 14px;
  padding: 1.15rem 1.35rem;
  text-align: center;
  box-shadow: 0 18px 40px rgba(15, 74, 42, 0.28);
  border: 1px solid rgba(139, 198, 62, 0.45);
  font-size: 1.05rem;
}
.toast-popup--error .toast-popup__inner {
  background: #8a1f11;
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-ways {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}
.contact-way {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  background: var(--off-white);
  border: 1px solid var(--border);
}
.contact-way strong {
  display: block;
  color: var(--green-deep);
  font-size: 0.95rem;
}
.contact-way span,
.contact-way a {
  color: var(--text-muted);
  font-size: 0.9rem;
  word-break: break-word;
}
.contact-way a:hover {
  color: var(--sky);
}

/* Banks / chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}
.chip {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--mist);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  max-width: 100%;
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.75rem;
  max-width: 820px;
  margin-inline: auto;
}
.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--green-deep);
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq details[open] summary {
  margin-bottom: 0.55rem;
}
.faq p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: var(--teal);
  color: rgba(255, 255, 255, 0.88);
  padding: 2.4rem 0 1.25rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-brand img {
  height: 64px;
  width: auto;
  max-width: min(260px, 100%);
  margin-bottom: 0.85rem;
  object-fit: contain;
  background: #ffffff;
  padding: 0.45rem 0.7rem;
  border-radius: 12px;
}
.footer-brand p {
  font-size: 0.92rem;
  max-width: 42ch;
  opacity: 0.85;
  line-height: 1.55;
}
.footer-col h4 {
  color: var(--white);
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}
.footer-col a,
.footer-col li {
  display: block;
  font-size: 0.9rem;
  opacity: 0.82;
  margin-bottom: 0.45rem;
  transition: opacity var(--transition), color var(--transition);
  word-break: break-word;
}
.footer-col a:hover {
  opacity: 1;
  color: var(--lime);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer-bottom > span {
  opacity: 0.8;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-left: auto;
}
.footer-social-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  margin-right: 0.15rem;
  white-space: nowrap;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 3px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  border: 2px solid #fff;
  transition: transform var(--transition), box-shadow var(--transition);
  margin-bottom: 0 !important;
  opacity: 1 !important;
  overflow: hidden;
}
.footer-social a:hover {
  transform: translateY(-2px) scale(1.07);
  box-shadow: 0 10px 22px rgba(139, 198, 62, 0.4);
  color: inherit;
}
.footer-social img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
  filter: none;
  display: block;
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-social {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
  }
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.42);
  transition: transform var(--transition);
}
.wa-float:hover {
  transform: scale(1.06);
}
.wa-float svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive - tablet */
@media (max-width: 980px) {
  :root {
    --nav-h: 82px;
  }
  .brand img {
    height: 64px;
    max-width: min(240px, 42vw);
  }
  .hero-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding: 1.75rem 0 2rem;
  }
  .hero h1 {
    max-width: none;
  }
  .slider {
    min-height: 280px;
  }
  .slide {
    padding: 1.6rem;
  }
  .operators-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid,
  .services-grid--2,
  .benefits,
  .puntos-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .example-box {
    padding: 1.25rem 1.35rem;
  }
}

/* Responsive - nav collapse */
@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
    order: 3;
  }
  .brand {
    order: 1;
  }
  .nav-actions {
    order: 2;
    margin-left: auto;
  }
  .nav-links {
    display: none;
  }
  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.25rem 1rem;
    gap: 0.25rem;
    box-shadow: var(--shadow);
    z-index: 20;
  }
  .nav.is-open .nav-links a {
    width: 100%;
    padding: 0.75rem 0.9rem;
  }
  .nav-actions .btn-login {
    display: inline-flex;
    padding: 0.55rem 0.95rem;
    font-size: 0.88rem;
  }
}

/* Responsive - mobile */
@media (max-width: 640px) {
  :root {
    --nav-h: 72px;
  }
  .container {
    width: min(100% - 1.5rem, var(--max));
  }
  .brand img {
    height: 52px;
    max-width: min(180px, 46vw);
  }
  .nav-actions .btn-login {
    padding: 0.5rem 0.8rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }
  .hero {
    padding: 1.35rem 0 1.75rem;
  }
  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .slider {
    min-height: 240px;
    border-radius: 16px;
  }
  .slide {
    padding: 1.25rem;
  }
  .slide h2 {
    max-width: none;
  }
  .slide p {
    max-width: none;
    font-size: 0.9rem;
  }
  .slider-arrows {
    top: 0.75rem;
    right: 0.75rem;
  }
  .slider-nav {
    bottom: 0.85rem;
    right: 0.85rem;
  }
  .section {
    padding: 2rem 0;
  }
  .page-hero {
    padding: 1.5rem 0 1.15rem;
  }
  .operators-grid,
  .services-grid,
  .services-grid--2,
  .steps,
  .benefits,
  .puntos-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-panel,
  .info-panel {
    padding: 1.25rem;
  }
  .form-actions .btn {
    width: 100%;
  }
  .cta-actions {
    width: 100%;
  }
  .cta-actions .btn {
    width: 100%;
  }
  .flow-item {
    grid-template-columns: 40px 1fr;
    gap: 0.75rem;
    padding: 1rem;
  }
  .flow-num {
    width: 40px;
    height: 40px;
  }
  .wa-float {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 64px;
    height: 64px;
  }
  .wa-float svg {
    width: 32px;
    height: 32px;
  }
  .footer-brand img {
    height: 52px;
  }
}

@media (max-width: 380px) {
  .brand img {
    height: 46px;
    max-width: 140px;
  }
  .nav-actions .btn-login {
    padding: 0.45rem 0.65rem;
    font-size: 0.78rem;
  }
}

/* Destacado ¯ pron¯sticos deportivos */
.destacado-hero {
  position: relative;
  overflow: hidden;
  padding: 2.4rem 0 2.6rem;
  background:
    radial-gradient(ellipse 70% 80% at 95% 10%, rgba(139, 198, 62, 0.2), transparent 55%),
    radial-gradient(ellipse 55% 60% at 5% 90%, rgba(59, 157, 214, 0.16), transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #f3faf6 45%, #eaf4fb 100%);
  border-bottom: 1px solid var(--border);
}
.destacado-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}
.destacado-hero .hero-brand {
  margin-bottom: 0.75rem;
}
.destacado-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.8vw, 2.9rem);
  color: var(--green-deep);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  max-width: 16ch;
}
.destacado-hero h1 span {
  color: var(--sky);
}
.destacado-hero-lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 42ch;
  margin-bottom: 1.25rem;
}
.destacado-hero-visual {
  display: grid;
  place-items: center;
  min-height: 260px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(30, 58, 76, 0.94) 0%, rgba(26, 107, 60, 0.92) 55%, rgba(59, 157, 214, 0.88) 120%);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  color: #fff;
  text-align: center;
}
.destacado-hero-visual img {
  width: auto;
  max-width: 120px;
  max-height: 100px;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}
.destacado-hero-visual strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.destacado-hero-visual p {
  opacity: 0.9;
  font-size: 0.95rem;
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.feature-card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  min-width: 0;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  border-color: rgba(59, 157, 214, 0.4);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  background: var(--green-soft);
  overflow: hidden;
}
.feature-card-icon img {
  max-width: 34px;
  max-height: 34px;
  object-fit: contain;
}
.feature-card h3 {
  font-size: 1.08rem;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
}
.ecuabet-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: stretch;
}
.ecuabet-highlight {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, var(--green-deep) 0%, var(--teal) 50%, var(--sky-dark) 110%);
  color: #fff;
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ecuabet-highlight::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 198, 62, 0.35), transparent 65%);
  pointer-events: none;
}
.ecuabet-highlight > * {
  position: relative;
  z-index: 1;
}
.ecuabet-highlight .brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.45rem 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin: 0 auto 1rem;
}
.ecuabet-highlight .brand-mark img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 0.25rem 0.4rem;
}
.ecuabet-highlight h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  line-height: 1.25;
  margin: 0 auto 0.65rem;
  text-align: center;
}
.ecuabet-highlight p {
  opacity: 0.92;
  font-size: 0.98rem;
  max-width: 36ch;
  margin-inline: auto;
  text-align: center;
}
.ecuabet-benefits {
  display: grid;
  gap: 0.75rem;
}
.ecuabet-benefit {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1.05rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.ecuabet-benefit-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--teal);
  font-weight: 800;
  font-size: 0.9rem;
}
.ecuabet-benefit h3 {
  font-size: 1.02rem;
  color: var(--green-deep);
  margin-bottom: 0.2rem;
}
.ecuabet-benefit p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}
.platform-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 0.85rem 1.05rem;
  text-align: center;
  min-width: 0;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.platform-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--lime);
}
.platform-logo {
  width: 100%;
  height: 92px;
  margin: 0 auto 0.7rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #f8faf9;
  border: 1px solid var(--border);
  padding: 0.55rem;
  overflow: hidden;
}
.platform-logo img {
  max-height: 72px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.platform-card h3 {
  font-size: 0.98rem;
  color: var(--green-deep);
}
.agent-note {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-soft), #e8f4fb);
  border: 1px solid var(--border);
}
.agent-note strong {
  color: var(--green-deep);
}
.agent-note p {
  color: var(--text-muted);
  margin-top: 0.35rem;
  font-size: 0.98rem;
}
.chips--logos .chip-logo img {
  height: 26px;
  max-width: 56px;
}

@media (max-width: 980px) {
  .destacado-hero-grid,
  .ecuabet-panel {
    grid-template-columns: 1fr;
  }
  .destacado-hero h1 {
    max-width: none;
  }
  .feature-cards {
    grid-template-columns: 1fr;
  }
  .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .destacado-hero {
    padding: 1.6rem 0 1.9rem;
  }
  .destacado-hero-visual {
    min-height: 200px;
    padding: 1.5rem;
  }
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
