@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500&display=swap');

:root {
  color-scheme: dark;
  --bg: #050508;
  --surface: #0c0f17;
  --text-primary: #f3f4fa;
  --text-muted: #b6bed3;
  --accent-primary: #7cff6e;
  --accent-secondary: #c27eff;
  --accent-tertiary: #42d9ff;
  --layout-max: min(1280px, 94vw);
  --layout-narrow: min(1080px, 92vw);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(120% 120% at 50% 0%, rgba(66, 217, 255, 0.08), transparent 65%),
    radial-gradient(100% 140% at 0% 100%, rgba(194, 126, 255, 0.12), transparent 60%),
    linear-gradient(180deg, #050508, #070912);
  color: var(--text-primary);
  min-height: 100vh;
  font-size: 1.05rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1300;
  pointer-events: none;
}

.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, rgba(124, 255, 110, 0.9), rgba(66, 217, 255, 0.9), rgba(194, 126, 255, 0.9));
  transition: transform 120ms linear;
}

body::after {
  content: "";
  position: fixed;
  inset: -10% -10% auto -10%;
  height: 280px;
  background: radial-gradient(circle, rgba(66, 217, 255, 0.15), transparent 70%);
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

p {
  margin-block: 0;
}

p + p {
  margin-top: 0.9rem;
}

main {
  width: 100%;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 52px) 72px;
}

.neo-layout {
  max-width: var(--layout-max);
}

.quote-page {
  max-width: var(--layout-narrow);
}

.quote-page--neo {
  max-width: var(--layout-max);
  margin-inline: auto;
}

.quote-page--neo .actions {
  justify-items: center;
  grid-template-columns: minmax(0, 1fr);
}

.differentiators {
  margin-top: 48px;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 9, 13, 0.75);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.differentiators__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-tertiary);
  font-size: 0.85rem;
  margin: 0 0 12px;
}

.differentiators__title {
  margin: 0 0 24px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.differentiators__grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 780px) {
  .differentiators__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.differentiators__grid article {
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.differentiators__grid h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.manifesto {
  margin-top: 60px;
  border-radius: 32px;
  border: 1px solid rgba(124, 255, 110, 0.15);
  padding: clamp(32px, 6vw, 48px);
  background: radial-gradient(circle at 10% 20%, rgba(124, 255, 110, 0.18), transparent 45%),
    radial-gradient(circle at 100% 10%, rgba(66, 217, 255, 0.18), transparent 40%),
    rgba(8, 12, 18, 0.95);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.manifesto__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-primary);
  margin: 0 0 12px;
  font-size: 0.85rem;
}

.manifesto__content h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 2.8rem);
}

.manifesto__content p {
  margin: 0 0 12px;
  color: var(--text-muted);
}

.mini-stories {
  margin-top: 64px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(32px, 5vw, 48px);
  background: rgba(6, 8, 12, 0.85);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.mini-stories__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-secondary);
  font-size: 0.85rem;
  margin: 0 0 12px;
}

.mini-stories__header h2 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

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

.mini-stories__grid h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.mini-stories__grid article {
  border-radius: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.08), transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 220ms ease, border-color 220ms ease;
}

.mini-stories__grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 255, 110, 0.35);
}

.mini-stories__problem {
  color: #f9b3c1;
  font-weight: 600;
}

.mini-stories__solution {
  color: #b5ffcf;
}

.neo-product {
  margin-top: 64px;
}

.neo-product__card {
  border-radius: 32px;
  border: 1px solid rgba(66, 217, 255, 0.2);
  background: radial-gradient(circle at 20% 20%, rgba(66, 217, 255, 0.2), transparent 45%),
    rgba(6, 10, 15, 0.92);
  padding: clamp(32px, 5vw, 48px);
  display: grid;
  gap: 28px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
}

.neo-product__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-tertiary);
  font-size: 0.85rem;
  margin: 0 0 12px;
}

.neo-product__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(66, 217, 255, 0.45);
  text-decoration: none;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.neo-product__visual img {
  width: min(320px, 60vw);
  border-radius: 24px;
  border: 1px solid rgba(66, 217, 255, 0.35);
  background: rgba(3, 4, 6, 0.9);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  animation: neoGlow 10s ease-in-out infinite alternate;
}

@media (min-width: 860px) {
  .neo-product__card {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }

  .mini-stories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .cta-card {
    flex-direction: row;
    align-items: center;
    max-width: var(--layout-max);
    gap: 48px;
  }

  .cta-card__header {
    flex: 1 1 60%;
  }

  .cta-card__bullets {
    flex: 1 1 40%;
    margin: 0;
  }

  .cotizar-hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .cotizar-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.growth-note {
  margin-top: 48px;
  padding: 18px 22px;
  border-radius: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

.neo-return {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.neo-return__button {
  max-width: 360px;
  text-align: center;
}

.hero {
  background: var(--surface);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  isolation: isolate;
  animation: heroGlow 18s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 20% 20%, rgba(124, 255, 110, 0.12), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(66, 217, 255, 0.12), transparent 50%);
  filter: blur(32px);
  animation: heroAurora 20s linear infinite alternate;
  z-index: -1;
}

.hero-logo {
  width: min(80vw, 540px);
  min-width: min(280px, 100%);
  margin: 0 auto 30px;
  padding: clamp(12px, 3vw, 22px);
  border-radius: 36px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(8, 12, 18, 0.97), rgba(8, 12, 18, 0.8)),
    radial-gradient(circle at 20% 0%, rgba(124, 255, 110, 0.22), transparent 60%),
    radial-gradient(circle at 100% 25%, rgba(66, 217, 255, 0.2), transparent 50%);
  border: 1px solid rgba(124, 255, 110, 0.4);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 40px rgba(66, 217, 255, 0.25);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-logo::before {
  content: "";
  position: absolute;
  inset: clamp(4px, 1.2vw, 10px);
  border-radius: inherit;
  border: 1px solid rgba(66, 217, 255, 0.18);
  box-shadow: 0 0 24px rgba(66, 217, 255, 0.25);
  opacity: 0.65;
}

.hero-logo::after {
  content: "";
  position: absolute;
  inset: clamp(8px, 1.5vw, 14px);
  border-radius: inherit;
  border: 1px solid rgba(124, 255, 110, 0.24);
  pointer-events: none;
  box-shadow: 0 0 32px rgba(124, 255, 110, 0.25);
}

.hero-logo:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 38px 70px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 44px rgba(66, 217, 255, 0.3);
}

.hero-logo:focus-visible {
  outline: 3px solid rgba(194, 126, 255, 0.9);
  outline-offset: 8px;
}

.hero-logo img {
  width: 112%;
  height: 112%;
  max-height: none;
  display: block;
  object-fit: cover;
  border-radius: clamp(20px, 4vw, 30px);
  padding: 0;
  background: rgba(0, 0, 0, 0.92);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.55),
    0 0 36px rgba(66, 217, 255, 0.3);
}

.cotizar-hero__visual .hero-logo {
  max-width: min(420px, 90vw);
  min-width: 260px;
}

.cotizar-hero__visual .hero-logo img {
  width: 112%;
  height: 112%;
}

.hero--compact {
  margin-bottom: 36px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  color: var(--accent-secondary);
  margin: 0 0 8px;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  font-weight: 600;
  font-family: "Space Grotesk", "DM Sans", system-ui;
}

.eyebrow::after {
  content: "";
  display: inline-block;
  width: 54px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent);
}

.principal {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 0;
  font-family: "Space Grotesk", "DM Sans", system-ui;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #7cff6e 0%, #7cff6e 40%, #42d9ff 75%, #c27eff 100%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow:
    0 0 22px rgba(124, 255, 110, 0.45),
    0 0 38px rgba(124, 255, 110, 0.35),
    0 0 66px rgba(124, 255, 110, 0.25);
  position: relative;
  animation: titlePulse 8s ease-in-out infinite alternate;
}

.principal::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -50%);
  width: clamp(120px, 30vw, 260px);
  height: 10px;
  background: radial-gradient(circle, rgba(124, 255, 110, 0.7), transparent 60%);
  filter: blur(12px);
  pointer-events: none;
}

.intro {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 60ch;
  margin-inline: auto;
  font-feature-settings: "ss01" on, "cv11" on;
  text-wrap: pretty;
}

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

.neo-floating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: min(320px, 90vw);
  z-index: 1200;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 300ms ease, transform 300ms ease;
  pointer-events: none;
}

.neo-floating__toggle {
  display: none;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  background: linear-gradient(120deg, rgba(124, 255, 110, 0.4), rgba(66, 217, 255, 0.4));
  color: var(--bg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.neo-floating--visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.neo-floating__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 30px;
  padding: 18px;
  background: rgba(6, 9, 15, 0.92);
  border: 1px solid rgba(66, 217, 255, 0.25);
  text-decoration: none;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  cursor: pointer;
}

.neo-floating__card:hover {
  border-color: rgba(124, 255, 110, 0.5);
}

.neo-floating__badge {
  align-self: flex-start;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-tertiary);
}

.neo-floating__frame {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  border: 1px solid rgba(124, 255, 110, 0.35);
  background: radial-gradient(circle at 50% 30%, rgba(194, 126, 255, 0.25), rgba(5, 7, 10, 0.9));
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}

.neo-floating__glow {
  position: absolute;
  inset: 12%;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(66, 217, 255, 0.35), transparent 70%);
  filter: blur(18px);
  opacity: 0.75;
  pointer-events: none;
  animation: expressGlow 8s ease-in-out infinite;
}

.neo-portal__avatar {
  width: 85%;
  height: 85%;
  object-fit: contain;
  z-index: 1;
}

.neo-floating__text {
  text-align: left;
}

.neo-floating__message {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.neo-floating__hint {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-secondary);
}

.neo-chat-panel {
  margin-top: 18px;
  width: min(360px, 90vw);
  border-radius: 24px;
  background: rgba(6, 9, 15, 0.96);
  border: 1px solid rgba(66, 217, 255, 0.35);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-height: min(520px, 75vh);
  backdrop-filter: blur(12px);
}

.neo-chat-panel:not([hidden]) {
  display: flex;
}

.neo-chat__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.neo-chat__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  margin: 0;
  color: var(--accent-secondary);
}

.neo-chat__title {
  margin: 0;
  font-size: 1.1rem;
}

.neo-chat__close {
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0 6px;
}

.neo-chat__messages {
  flex: 1;
  min-height: 160px;
  max-height: min(340px, 50vh);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 6px;
}

.neo-chat__bubble {
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 0.95rem;
  line-height: 1.4;
  white-space: pre-line;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.neo-chat__bubble--assistant {
  align-self: flex-start;
  background: rgba(66, 217, 255, 0.08);
  border: 1px solid rgba(66, 217, 255, 0.45);
}

.neo-chat__bubble--user {
  align-self: flex-end;
  background: rgba(124, 255, 110, 0.12);
  border: 1px solid rgba(124, 255, 110, 0.4);
}

.neo-chat__status {
  min-height: 1.2em;
  font-size: 0.85rem;
  color: var(--accent-secondary);
  margin: 0;
}

.neo-chat__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.neo-chat__input {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(10, 12, 18, 0.9);
  color: var(--text-primary);
  padding: 10px 14px;
  resize: none;
  font: inherit;
}

.neo-chat__input:focus {
  outline: 2px solid rgba(66, 217, 255, 0.7);
  border-color: rgba(66, 217, 255, 0.7);
}

.neo-chat__submit {
  border-radius: 999px;
  border: none;
  padding: 12px 18px;
  background: linear-gradient(120deg, rgba(124, 255, 110, 0.8), rgba(66, 217, 255, 0.9));
  color: var(--bg);
  font-weight: 600;
  cursor: pointer;
  transition: transform 160ms ease;
}

.neo-chat__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.neo-chat__submit:not(:disabled):active {
  transform: scale(0.98);
}

.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: 720px) {
  .neo-floating {
    left: 16px;
    right: 16px;
    width: auto;
    bottom: 16px;
  }
}

@media (max-width: 520px) {
  .neo-floating__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .neo-floating__card {
    display: none;
  }

  .neo-floating__card.neo-floating__card--open {
    display: flex;
  }

  .neo-floating__card {
    flex-direction: row;
    align-items: center;
    padding: 14px;
    gap: 12px;
  }

  .neo-floating__frame {
    width: 36vw;
    max-width: 130px;
    border-radius: 18px;
  }

  .neo-floating__badge {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }

  .neo-floating__text {
    flex: 1;
  }

  .neo-floating__message {
    font-size: 0.85rem;
  }

  .neo-floating__hint {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }

  .neo-chat-panel {
    width: 100%;
    margin-top: 12px;
    max-height: 70vh;
  }
}

.hero--cta {
  margin-top: 72px;
  padding: clamp(30px, 5vw, 46px) 0;
  position: relative;
}

.hero--cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(124, 255, 110, 0.25), transparent 60%);
  filter: blur(30px);
  opacity: 0.8;
  pointer-events: none;
}

.cta-card {
  position: relative;
  isolation: isolate;
  background: linear-gradient(160deg, rgba(8, 12, 20, 0.92), rgba(5, 7, 10, 0.86));
  border-radius: 28px;
  padding: clamp(32px, 6vw, 56px);
  border: 1px solid rgba(255, 246, 122, 0.15);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 32px);
  max-width: 880px;
  margin: 0 auto;
  overflow: hidden;
}

.cta-card--neo {
  width: min(1020px, 100%);
  max-width: min(1020px, 100%);
  justify-self: center;
  margin-inline: auto;
}

.cta-card--neo label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  color: var(--text-primary);
}

.cta-card--neo input,
.cta-card--neo select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 8, 14, 0.85);
  color: var(--text-primary);
  font-size: 1rem;
}

.cta-card::before,
.cta-card::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}

.cta-card::before {
  inset: -1px;
  padding: 1px;
  background: linear-gradient(130deg, rgba(255, 246, 122, 0.65), rgba(66, 217, 255, 0.4), rgba(194, 126, 255, 0.5));
  filter: hue-rotate(0deg);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: ctaCardGlow 12s linear infinite;
}

.cta-card::after {
  inset: 25% -20% -55% -20%;
  background: radial-gradient(circle, rgba(124, 255, 110, 0.35), transparent 70%);
  filter: blur(40px);
  opacity: 0.8;
}

.cta-card__header {
  text-align: center;
}

.cta-eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
  color: var(--accent-tertiary);
  font-weight: 600;
}

.cta-card__title {
  font-family: "Space Grotesk", "DM Sans", system-ui;
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.cta-card__subtitle {
  margin: 12px auto 0;
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.7;
}

.cta-card__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.cta-card__bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

.cta-card__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 246, 122, 0.95), rgba(124, 255, 110, 0.7));
  box-shadow: 0 0 12px rgba(124, 255, 110, 0.6);
  transform: translateY(-50%);
}

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(1.05rem, 4vw, 1.35rem);
  font-weight: 600;
  font-family: "Space Grotesk", "DM Sans", system-ui;
  padding: 26px 46px;
  border-radius: 26px;
  text-decoration: none;
  color: #e9f6ff;
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(15, 22, 34, 0.9), rgba(5, 8, 14, 0.9));
  border: 1px solid rgba(255, 246, 122, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 25px 60px rgba(0, 0, 0, 0.55);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.hero-cta-button::before,
.hero-cta-button::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.hero-cta-button::before {
  inset: 4px;
  border-radius: inherit;
  border: 1px solid rgba(255, 246, 122, 0.45);
  box-shadow: 0 0 18px rgba(255, 246, 122, 0.25);
}

.hero-cta-button::after {
  inset: 12px 30px 50% 30px;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.65), transparent 70%);
  opacity: 0.4;
  filter: blur(1px);
  mix-blend-mode: screen;
  transition: opacity 200ms ease, transform 200ms ease;
}

.hero-cta-button:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 32px 70px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 246, 122, 0.6);
}

.hero-cta-button:hover::after {
  opacity: 0.7;
  transform: translateY(-4px);
}

.hero-cta-button:focus-visible {
  outline: 3px solid var(--accent-tertiary);
  outline-offset: 6px;
}

.neo-return__button {
  background: linear-gradient(120deg, #70ffb2, #46f0ff);
  color: #051012;
  border-color: rgba(112, 255, 178, 0.7);
}

.neo-return__button::before {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 25px rgba(112, 255, 178, 0.3);
}

.policy-page {
  max-width: var(--layout-narrow);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px) clamp(18px, 4vw, 42px) 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-hero {
  background: rgba(6, 9, 16, 0.82);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.52);
  padding: clamp(28px, 5vw, 52px);
  text-align: center;
}

.policy-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-secondary);
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 0.9rem;
}

.policy-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 5vw, 3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "Space Grotesk", "DM Sans", system-ui;
}

.policy-lead {
  margin: 0 auto;
  max-width: 70ch;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.policy-card {
  background: rgba(5, 8, 14, 0.85);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: clamp(22px, 4vw, 32px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 36px rgba(0, 0, 0, 0.5);
}

.policy-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: "Space Grotesk", "DM Sans", system-ui;
}

.policy-card p {
  margin: 0;
  color: var(--text-muted);
}

.policy-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.policy-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-primary);
  font-weight: 500;
}

.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(120deg, #7cff6e, #42d9ff);
  box-shadow: 0 0 14px rgba(124, 255, 110, 0.45);
  transform: translateY(-50%);
}

.policy-card a {
  color: var(--accent-tertiary);
  font-weight: 600;
  text-decoration: none;
}

.policy-card a:hover {
  text-decoration: underline;
}

.policy-card + .policy-card {
  margin-top: 6px;
}

.policy-card:last-of-type {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 40px rgba(0, 0, 0, 0.52);
}

.express-page {
  background: var(--bg);
  color: var(--text-primary);
}

.express-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 20px 96px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section-express {
  background: rgba(6, 9, 16, 0.78);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  padding: clamp(32px, 5vw, 56px);
}

.express-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#hero-express {
  text-align: center;
  background: radial-gradient(circle at top, rgba(124, 255, 110, 0.18), rgba(6, 9, 16, 0.9));
  gap: 18px;
}

.hero-express h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Space Grotesk", "DM Sans", system-ui;
}

.express-chip {
  align-self: center;
  background: rgba(124, 255, 110, 0.12);
  border: 1px solid rgba(124, 255, 110, 0.3);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-tertiary);
  font-weight: 600;
}

.express-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0 auto;
  max-width: 65ch;
}

.express-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  text-align: left;
}

.express-list li {
  position: relative;
  padding-left: 26px;
  font-weight: 500;
  color: var(--text-primary);
}

.express-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(120deg, #7cff6e, #42d9ff);
  box-shadow: 0 0 12px rgba(124, 255, 110, 0.5);
  transform: translateY(-50%);
}

.express-list--hero {
  max-width: 520px;
  margin: 0 auto;
}

.btn-primary {
  align-self: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 18px 32px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  color: #050508;
  background: linear-gradient(115deg, #7cff6e, #42d9ff);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 18px 40px rgba(0, 0, 0, 0.5);
  border: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 24px 50px rgba(0, 0, 0, 0.55);
}

.btn-primary:focus-visible {
  outline: 3px solid var(--accent-tertiary);
  outline-offset: 6px;
}

.btn-primary--wide {
  width: min(100%, 360px);
}

.btn-secondary {
  align-self: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  border-radius: 18px;
  border: 1px solid rgba(124, 255, 110, 0.4);
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 180ms ease, transform 180ms ease;
}

.btn-secondary:hover {
  background: rgba(124, 255, 110, 0.12);
  transform: translateY(-3px);
}

.express-price-note {
  margin: 0;
  color: var(--accent-primary);
  font-weight: 600;
}

.express-link {
  align-self: center;
  color: var(--accent-tertiary);
  text-decoration: none;
  font-weight: 600;
}

.express-link:hover {
  text-decoration: underline;
}

.express-grid {
  display: grid;
  gap: 18px;
}

.express-grid--cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

#incluye-express {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(8, 12, 20, 0.92), rgba(10, 18, 32, 0.9));
}

#incluye-express::before,
#incluye-express::after {
  content: "";
  position: absolute;
  inset: -30% -30% auto -30%;
  height: 220px;
  background: radial-gradient(circle, rgba(124, 255, 110, 0.4), transparent 65%);
  filter: blur(35px);
  opacity: 0.6;
  animation: expressGlow 12s ease-in-out infinite alternate;
  pointer-events: none;
}

#incluye-express::after {
  inset: auto -25% -35% -25%;
  background: radial-gradient(circle, rgba(66, 217, 255, 0.35), transparent 65%);
  animation-delay: 3s;
}

#incluye-express .express-heading {
  margin-bottom: 8px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.express-heading--glow {
  color: var(--text-primary);
  text-shadow:
    0 0 18px rgba(124, 255, 110, 0.35),
    0 0 32px rgba(66, 217, 255, 0.25);
}

#incluye-express .express-list {
  background: rgba(5, 8, 14, 0.7);
  border-radius: 24px;
  padding: 28px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

#incluye-express .express-list li {
  padding: 18px 18px 18px 36px;
  border-radius: 18px;
  background: rgba(12, 18, 26, 0.8);
  border: 1px solid rgba(124, 255, 110, 0.15);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

#incluye-express .express-list li::before {
  width: 14px;
  height: 14px;
  background: linear-gradient(120deg, #7cff6e, #c4ff7e);
}

#incluye-express .express-list li:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 255, 110, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.express-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(160deg, rgba(8, 12, 20, 0.92), rgba(5, 7, 10, 0.85));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 15px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.express-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(124, 255, 110, 0.12);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.express-card::after {
  content: "";
  position: absolute;
  inset: 35% -30% -45% -30%;
  background: radial-gradient(circle, rgba(124, 255, 110, 0.25), transparent 70%);
  filter: blur(25px);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.express-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 255, 110, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 25px 45px rgba(0, 0, 0, 0.55);
}

.express-card:hover::before,
.express-card:hover::after {
  opacity: 1;
}

.express-card h3 {
  margin-top: 0;
}

.express-note {
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

.note-express {
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  padding: 18px;
  background: rgba(15, 20, 28, 0.6);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.express-grid--timeline {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.express-step {
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(20, 30, 45, 0.95), rgba(5, 8, 14, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 30px rgba(0, 0, 0, 0.45);
  transform-style: preserve-3d;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.express-step::before {
  content: "";
  position: absolute;
  inset: 30% -25% -40% -25%;
  background: radial-gradient(circle, rgba(66, 217, 255, 0.25), transparent 70%);
  filter: blur(30px);
  opacity: 0;
  transition: opacity 250ms ease;
  pointer-events: none;
}

.express-step:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 45px rgba(0, 0, 0, 0.6);
}

.express-step:hover::before {
  opacity: 1;
}

.express-step__badge {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-tertiary);
  margin: 0 0 8px;
}

.express-list--bullets li {
  font-weight: 600;
}

.confianza-express {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(10, 14, 25, 0.95), rgba(8, 12, 20, 0.85));
}

.confianza-express::before {
  content: "";
  position: absolute;
  inset: -40% 10% auto 10%;
  height: 280px;
  background: radial-gradient(circle, rgba(194, 126, 255, 0.35), transparent 65%);
  filter: blur(40px);
  opacity: 0.75;
  pointer-events: none;
}

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

.conviction-card {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 10, 18, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 28px rgba(0, 0, 0, 0.45);
  position: relative;
  transition: transform 220ms ease, border-color 220ms ease;
}

.conviction-card::after {
  content: "";
  position: absolute;
  inset: 35% -25% -45% -25%;
  background: radial-gradient(circle, rgba(124, 255, 110, 0.25), transparent 70%);
  filter: blur(25px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.conviction-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 255, 110, 0.3);
}

.conviction-card:hover::after {
  opacity: 1;
}

.express-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.express-message {
  border-radius: 18px;
  padding: 14px 18px;
  font-weight: 600;
}

.express-message--success {
  background: rgba(124, 255, 110, 0.15);
  border: 1px solid rgba(124, 255, 110, 0.3);
  color: var(--text-primary);
}

.express-message--error {
  background: rgba(255, 110, 110, 0.15);
  border: 1px solid rgba(255, 110, 110, 0.3);
  color: #ffdede;
}

.express-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.express-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.express-field span {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.express-field input,
.express-field select {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(12, 15, 23, 0.85);
  color: var(--text-primary);
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
}

.express-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.6) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.6) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) calc(50% - 2px),
    calc(100% - 16px) calc(50% - 2px);
  background-size: 10px 10px;
  background-repeat: no-repeat;
  padding-right: 48px;
}

.express-field input:focus-visible,
.express-field select:focus-visible {
  outline: none;
  border-color: var(--accent-tertiary);
  box-shadow: 0 0 0 3px rgba(66, 217, 255, 0.25);
}

.cotizar-page {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) clamp(20px, 4vw, 52px) 96px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.cotizar-section {
  background: rgba(6, 9, 16, 0.78);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  padding: clamp(32px, 5vw, 56px);
}

.cotizar-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cotizar-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.cotizar-hero__content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Space Grotesk", "DM Sans", system-ui;
}

.cotizar-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.cotizar-hero__visual {
  display: flex;
  justify-content: center;
}

.cotizar-illustration {
  width: min(320px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  border: 1px solid rgba(66, 217, 255, 0.35);
  background: radial-gradient(circle at top, rgba(124, 255, 110, 0.2), rgba(5, 8, 14, 0.95));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6);
}

.cotizar-illustration span {
  font-size: 0.9rem;
  color: var(--accent-tertiary);
}

.cotizar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.cotizar-card {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 20, 0.85);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 25px rgba(0, 0, 0, 0.35);
  transition: transform 200ms ease, border-color 200ms ease;
}

.cotizar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 255, 110, 0.35);
}

.cotizar-grid--steps .cotizar-card {
  background: rgba(6, 10, 18, 0.9);
}

.cotizar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.cotizar-list--two {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cotizar-list li {
  position: relative;
  padding-left: 28px;
}

.cotizar-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(120deg, #7cff6e, #42d9ff);
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(124, 255, 110, 0.45);
}

.cotizar-note {
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

.cotizar-form .quote-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.cotizar-form .field--full {
  grid-column: 1 / -1;
}

.talento-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 20px 96px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.talento-section {
  background: rgba(6, 9, 16, 0.78);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  padding: clamp(32px, 5vw, 56px);
}

.talento-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.talento-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.talento-hero__content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Space Grotesk", "DM Sans", system-ui;
}

.talento-hero__visual {
  display: flex;
  justify-content: center;
}

.talento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.talento-card {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 20, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 25px rgba(0, 0, 0, 0.35);
  transition: transform 200ms ease, border-color 200ms ease;
}

.talento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 255, 110, 0.3);
}

.talento-note {
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

.talento-form .quote-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.talento-highlight {
  text-align: center;
}
.express-faq details {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 20px;
  background: rgba(8, 12, 20, 0.85);
}

.express-faq summary {
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.express-faq details + details {
  margin-top: 12px;
}

.cta-express-final {
  text-align: center;
  background: linear-gradient(160deg, rgba(8, 12, 20, 0.9), rgba(20, 26, 40, 0.85));
}

.quote-form-wrapper {
  background: rgba(5, 5, 8, 0.75);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}

.field input,
.field textarea,
.field select {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 15, 23, 0.85);
  color: var(--text-primary);
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.5) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5) 50%, transparent 50%);
  background-position:
    calc(100% - 26px) calc(50% - 3px),
    calc(100% - 18px) calc(50% - 3px);
  background-repeat: no-repeat;
  background-size: 10px 10px;
  padding-right: 48px;
  cursor: pointer;
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: none;
  border-color: var(--accent-tertiary);
  box-shadow: 0 0 0 3px rgba(66, 217, 255, 0.25);
}

.field--file input[type="file"] {
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 18px;
  background: rgba(5, 5, 8, 0.5);
  color: var(--text-muted);
  cursor: pointer;
}

.field--file input[type="file"]::file-selector-button {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  margin-right: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: rgba(124, 255, 110, 0.15);
  color: var(--text-primary);
  cursor: pointer;
}

.primary-button {
  border: none;
  border-radius: 999px;
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(120deg, #7cff6e, #42d9ff, #c27eff);
  color: #050508;
  cursor: pointer;
  opacity: 1;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(5, 5, 8, 0.35);
}

.form-hint {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: -4px;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--accent-tertiary);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 150ms ease;
}

.secondary-link:hover {
  color: var(--accent-secondary);
}

.flash-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.flash {
  border-radius: 16px;
  padding: 14px 18px;
  backdrop-filter: blur(10px);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.flash--success {
  background: rgba(124, 255, 110, 0.15);
  border: 1px solid rgba(124, 255, 110, 0.3);
  color: #c7ffd1;
}

.flash--error {
  background: rgba(255, 110, 110, 0.15);
  border: 1px solid rgba(255, 110, 110, 0.3);
  color: #ffdada;
}

.action-card {
  position: relative;
  border-radius: 22px;
  padding: 42px 26px;
  background: linear-gradient(165deg, rgba(15, 18, 28, 0.95), rgba(5, 5, 8, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateY(0);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 30px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.action-chip {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(124, 255, 110, 0.9), rgba(66, 217, 255, 0.9));
  color: #031306;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

.action-card::before,
.action-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.action-card::before {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 65%);
  opacity: 0.55;
}

.action-card::after {
  inset: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.55;
}

.action-card:focus-visible {
  outline: 3px solid var(--accent-tertiary);
  outline-offset: 2px;
}

.action-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(124, 255, 110, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 26px 46px rgba(0, 0, 0, 0.65);
}

.action-card:hover::before {
  opacity: 0.85;
}

.action-card:hover::after {
  opacity: 0.85;
}

.action-title {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "Space Grotesk", "DM Sans", system-ui;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.action-chip {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(124, 255, 110, 0.9), rgba(66, 217, 255, 0.9));
  color: #031306;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  animation: chipPulse 6s ease-in-out infinite;
}

.action-card--quote {
  border-color: rgba(124, 255, 110, 0.35);
  background: linear-gradient(160deg, rgba(40, 60, 44, 0.95), rgba(5, 5, 8, 0.85));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 36px rgba(27, 66, 38, 0.65);
  animation: cardPulse 6s ease-in-out infinite;
}

.action-card--jobs {
  border-color: rgba(194, 126, 255, 0.35);
  background: linear-gradient(160deg, rgba(56, 34, 70, 0.95), rgba(5, 5, 8, 0.85));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 36px rgba(46, 25, 62, 0.65);
}

.action-card--contact {
  border-color: rgba(66, 217, 255, 0.35);
  background: linear-gradient(160deg, rgba(24, 48, 64, 0.95), rgba(5, 5, 8, 0.85));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 36px rgba(16, 40, 54, 0.65);
}

@media (min-width: 700px) {
  .actions {
    grid-template-columns: repeat(3, 1fr);
  }

  .action-card {
    min-height: 180px;
  }
}

@media (max-width: 640px) {
  main {
    padding: 32px 16px 48px;
  }

  .hero {
    padding: 28px 18px;
  }

  .principal {
    letter-spacing: 0.05em;
  }

  .intro {
    font-size: 1rem;
  }

  .actions {
    gap: 18px;
  }

  .action-card {
    padding: 24px 20px;
  }

  .action-title {
    font-size: 1.05rem;
    letter-spacing: 0.04em;
  }

  .action-detail {
    font-size: 0.9rem;
  }

  .quote-form-wrapper {
    padding: 24px 18px;
  }
}

@keyframes titlePulse {
  0% {
    text-shadow:
      0 0 18px rgba(124, 255, 110, 0.35),
      0 0 32px rgba(66, 217, 255, 0.35),
      0 0 48px rgba(194, 126, 255, 0.2);
  }
  100% {
    text-shadow:
      0 0 28px rgba(124, 255, 110, 0.55),
      0 0 50px rgba(66, 217, 255, 0.45),
      0 0 70px rgba(194, 126, 255, 0.35);
  }
}

@supports (text-wrap: balance) {
  .intro {
    text-wrap: balance;
  }
}

@media (prefers-reduced-motion: reduce) {
  .principal {
    animation: none;
  }

  .cta-card::before {
    animation: none;
  }
}

@keyframes ctaCardGlow {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

@keyframes heroGlow {
  0% {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.06);
  }
  100% {
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.55), 0 0 25px rgba(124, 255, 110, 0.25);
    border-color: rgba(124, 255, 110, 0.25);
  }
}

@keyframes heroAurora {
  0% {
    transform: translate3d(-4%, -4%, 0) scale(1);
  }
  100% {
    transform: translate3d(4%, 6%, 0) scale(1.1);
  }
}

@keyframes cardPulse {
  0% {
    border-color: rgba(124, 255, 110, 0.2);
  }
  100% {
    border-color: rgba(124, 255, 110, 0.5);
  }
}

@keyframes chipPulse {
  0% {
    box-shadow: 0 0 0 rgba(124, 255, 110, 0.3);
  }
  100% {
    box-shadow: 0 0 18px rgba(66, 217, 255, 0.4);
  }
}

@keyframes neoGlow {
  0% {
    filter: drop-shadow(0 0 10px rgba(66, 217, 255, 0.4));
  }
  100% {
    filter: drop-shadow(0 0 25px rgba(124, 255, 110, 0.6));
  }
}

@keyframes expressGlow {
  0% {
    opacity: 0.45;
    transform: scale(1);
  }
  100% {
    opacity: 0.85;
    transform: scale(1.2);
  }
}
