
:root {
  --bg: #050816;
  --card: #0b1020;
  --primary: #7c3aed;
  --secondary: #22d3ee;
  --text: #f9fafb;
  --muted: #9ca3af;
  --accent: #f97316;
  --radius: 14px;
  --container: 1100px;
  --nav-h: 72px;
  --bp-mobile: 639px;
  --bp-tablet: 1023px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 55%);
  color: var(--text);
  line-height: 1.6;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}
body.menu-open {
  overflow: hidden;
}
a { color: var(--secondary); text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(3, 7, 18, 0.92);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}
.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 102;
}
.nav-logo {
  object-fit: contain;
  display: block;
}
.nav-logo--full {
  height: clamp(40px, 10vw, 52px);
  width: auto;
  max-width: min(200px, 50vw);
}
.nav-logo--icon {
  display: none;
  height: 40px;
  width: 40px;
  border-radius: 8px;
}
@media (max-width: 639px) {
  .nav-logo--full { display: none; }
  .nav-logo--icon { display: block; }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  opacity: 0.95;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.8);
  cursor: pointer;
  z-index: 102;
  flex-shrink: 0;
}
.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.65);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.is-visible {
  display: block;
  opacity: 1;
}
.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  font-size: 0.95rem;
}
.nav-links a {
  color: var(--text);
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--secondary);
}
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}
.nav-cta {
  flex-shrink: 0;
  margin-left: auto;
}
.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover, .btn-outline:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #0b1020;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
}
.btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--text);
  background: transparent;
}


.btn-probar {
background: linear-gradient(90deg, #B0003A, #FF2E63);
color: #fff;
padding: 16px 32px;
border-radius: 14px;
font-weight: 700;
font-size: 18px;
text-decoration: none;
display: inline-block;
box-shadow: 0 6px 18px rgba(176, 0, 58, 0.35);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-probar:hover {
transform: scale(1.05);
box-shadow: 0 8px 22px rgba(176, 0, 58, 0.45);
}


main {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1rem, 4vw, 1.5rem) clamp(2.5rem, 6vw, 4rem);
}
section {
  margin: clamp(2.5rem, 6vw, 4rem) 0;
  scroll-margin-top: calc(var(--nav-h) + 12px);
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 3.2vw + 1.5rem, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 28rem;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-status {
  font-size: 0.85rem;
  color: var(--muted);
  min-height: 1.5rem;
}
.hero-status-line {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  animation: status-fade 0.4s ease;
}
.hero-status-line::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 8px var(--secondary);
  flex-shrink: 0;
  animation: status-pulse 1.5s ease infinite;
}
@keyframes status-fade {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes status-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.card {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 55%),
              radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.18), transparent 55%),
              var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}
.card-service {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card-service:hover {
  transform: translateY(-3px);
}
.card-service--azul {
  background:
    radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.35), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(34, 211, 238, 0.2), transparent 50%),
    rgba(11, 16, 32, 0.72);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9), 0 0 28px rgba(59, 130, 246, 0.15);
}
.card-service--rosa {
  background:
    radial-gradient(circle at 0% 0%, rgba(236, 72, 153, 0.35), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(244, 114, 182, 0.22), transparent 50%),
    rgba(11, 16, 32, 0.72);
  border-color: rgba(244, 114, 182, 0.4);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9), 0 0 28px rgba(236, 72, 153, 0.15);
}
.card-service--verde {
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 197, 94, 0.35), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(52, 211, 153, 0.2), transparent 50%),
    rgba(11, 16, 32, 0.72);
  border-color: rgba(74, 222, 128, 0.4);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9), 0 0 28px rgba(34, 197, 94, 0.15);
}
.card-service--amarillo {
  background:
    radial-gradient(circle at 0% 0%, rgba(234, 179, 8, 0.38), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(250, 204, 21, 0.22), transparent 50%),
    rgba(11, 16, 32, 0.72);
  border-color: rgba(250, 204, 21, 0.45);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9), 0 0 28px rgba(234, 179, 8, 0.12);
}
.card-service--azul .pill { border-color: rgba(96, 165, 250, 0.5); color: #bfdbfe; }
.card-service--rosa .pill { border-color: rgba(244, 114, 182, 0.5); color: #fbcfe8; }
.card-service--verde .pill { border-color: rgba(74, 222, 128, 0.5); color: #bbf7d0; }
.card-service--amarillo .pill { border-color: rgba(250, 204, 21, 0.5); color: #fef08a; }
#beneficios {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2rem);
  border-radius: 20px;
  background:
    radial-gradient(ellipse 90% 60% at 50% -30%, rgba(124, 58, 237, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(34, 211, 238, 0.08), transparent 50%),
    rgba(8, 12, 28, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 48px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
#beneficios::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239ca3af' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}
.beneficios-header {
  position: relative;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.25rem;
  z-index: 1;
}
.beneficios-header h2 {
  letter-spacing: -0.03em;
  font-weight: 700;
}
.beneficios-header h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin: 0.85rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary), var(--primary), transparent);
}
.beneficios-header p {
  margin-top: 1rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--muted);
  font-weight: 400;
  line-height: 1.55;
}
.beneficios-grid {
  position: relative;
  z-index: 1;
  margin-top: 0;
}
.card-benefit {
  position: relative;
  padding: 1.5rem;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  animation: benefit-enter 0.65s ease backwards;
}
.beneficios-grid .card-benefit:nth-child(1) { animation-delay: 0.05s; }
.beneficios-grid .card-benefit:nth-child(2) { animation-delay: 0.1s; }
.beneficios-grid .card-benefit:nth-child(3) { animation-delay: 0.15s; }
.beneficios-grid .card-benefit:nth-child(4) { animation-delay: 0.2s; }
.beneficios-grid .card-benefit:nth-child(5) { animation-delay: 0.25s; }
.beneficios-grid .card-benefit:nth-child(6) { animation-delay: 0.3s; }
@keyframes benefit-enter {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.card-benefit::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
.card-benefit:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.28);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(124, 58, 237, 0.12);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(34, 211, 238, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.15);
  color: var(--secondary);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card-benefit:hover .benefit-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(34, 211, 238, 0.25);
}
.benefit-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-benefit h3 {
  color: #fafafa;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  padding-left: 0;
  border-left: none;
  line-height: 1.3;
}
.card-benefit-text {
  color: rgba(156, 163, 175, 0.95);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--secondary);
}
h2 {
  font-size: clamp(1.45rem, 3.5vw + 0.5rem, 1.8rem);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
h3 {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.2rem);
  margin-bottom: 0.35rem;
}
.section-lead {
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 34rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
}
.section-lead--highlight {
  position: relative;
  color: var(--text);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
  max-width: 38rem;
  padding: 1rem 1.25rem 1rem 3.25rem;
  margin-bottom: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(34, 211, 238, 0.4);
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.18) 0%,
    rgba(34, 211, 238, 0.08) 100%
  );
  box-shadow:
    0 0 28px rgba(124, 58, 237, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.section-lead--highlight::before {
  content: "●";
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.65rem;
  color: var(--secondary);
  text-shadow: 0 0 12px var(--secondary);
  animation: lead-pulse 2s ease-in-out infinite;
}
.section-lead--highlight strong {
  font-weight: 700;
  background: linear-gradient(90deg, var(--secondary), #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-lead--highlight em {
  font-style: normal;
  color: var(--secondary);
  font-weight: 600;
}
@keyframes lead-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.panel-live-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
}
.panel-live-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  color: var(--muted);
  opacity: 0.4;
  border: 1px solid transparent;
  transition:
    opacity 0.45s ease,
    color 0.45s ease,
    background 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    transform 0.45s ease;
}
.panel-live-item::before {
  content: "●";
  font-size: 0.55rem;
  flex-shrink: 0;
  color: rgba(148, 163, 184, 0.5);
  transition: color 0.45s ease, text-shadow 0.45s ease;
}
.panel-live-item.is-active {
  opacity: 1;
  color: var(--text);
  transform: translateX(4px);
  border-color: rgba(34, 211, 238, 0.45);
  background: linear-gradient(
    90deg,
    rgba(124, 58, 237, 0.2) 0%,
    rgba(34, 211, 238, 0.12) 100%
  );
  box-shadow:
    0 0 22px rgba(34, 211, 238, 0.25),
    inset 0 0 20px rgba(34, 211, 238, 0.06);
  text-shadow: 0 0 18px rgba(34, 211, 238, 0.35);
}
.panel-live-item.is-active::before {
  color: var(--secondary);
  text-shadow: 0 0 10px var(--secondary), 0 0 20px var(--secondary);
  animation: panel-dot-glow 1.2s ease-in-out infinite;
}
@keyframes panel-dot-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.35); }
}
.grid-2, .grid-3, .grid-4, .grid-process {
  display: grid;
  gap: clamp(1rem, 3vw, 1.5rem);
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
.grid-process { grid-template-columns: 1fr; }
.card .btn-outline,
.card .btn-primary {
  width: 100%;
}
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-process { grid-template-columns: repeat(2, 1fr); }
  .card .btn-outline,
  .card .btn-primary { width: auto; }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-process { grid-template-columns: repeat(5, 1fr); }
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
  border: 1px solid rgba(34, 197, 94, 0.5);
  margin-bottom: 0.5rem;
}
.testimonial {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.testimonial-name {
  font-weight: 600;
}
.testimonial-role {
  font-size: 0.85rem;
  color: var(--muted);
}
.cta-center {
  text-align: center;
  margin-top: 2rem;
}
.demo-form-wrap {
  max-width: 440px;
  margin: 0 auto;
  text-align: left;
}
.demo-form {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.1), transparent 50%),
              radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.14), transparent 50%),
              var(--card);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.85);
}
.demo-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.demo-form label span.optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.8rem;
}
.demo-form input,
.demo-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.85);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.demo-form input::placeholder {
  color: rgba(156, 163, 175, 0.7);
}
.demo-form input:focus,
.demo-form select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}
.demo-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239ca3af' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.demo-form select option {
  background: #0b1020;
  color: var(--text);
}
.demo-form .btn-primary {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.85rem 1.4rem;
  font-size: 1rem;
}
.demo-form-hint {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.75rem;
}
.demo-form-success,
.demo-form-error {
  display: none;
  margin-top: 0;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}
.demo-form-success.is-visible,
.demo-form-error.is-visible {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  animation: form-success-in 0.45s ease;
}
@keyframes form-success-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.demo-form-success {
  border: 1px solid rgba(34, 211, 238, 0.5);
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.15) 0%,
    rgba(34, 211, 238, 0.1) 100%
  );
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.2);
}
.demo-form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0b1020;
  background: linear-gradient(135deg, #22d3ee, #4ade80);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.5);
}
.demo-form-success strong {
  font-size: 1.25rem;
  color: var(--text);
}
.demo-form-success p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  max-width: 28rem;
}
.demo-form-error {
  border: 1px solid rgba(248, 113, 113, 0.5);
  background: rgba(248, 113, 113, 0.1);
  color: #fecaca;
  font-size: 0.9rem;
}
.demo-form.is-sent,
.demo-form-hint.is-hidden {
  display: none;
}
.demo-form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: wait;
}
#contacto {
  text-align: center;
}
#contacto .section-lead {
  margin-left: auto;
  margin-right: auto;
}
footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  background: #020617;
}
.sector-carousel {
  overflow: hidden;
  margin-top: 1.5rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  padding: 0.5rem 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.sector-carousel-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: sector-scroll 45s linear infinite;
}
.sector-carousel:hover .sector-carousel-track {
  animation-play-state: paused;
}
@keyframes sector-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.sector-slide {
  position: relative;
  flex: 0 0 280px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.85);
}
.sector-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  transition: transform 0.5s ease;
}
.sector-slide:hover img {
  transform: scale(1.06);
}
.sector-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2, 6, 23, 0.92) 0%,
    rgba(2, 6, 23, 0.35) 45%,
    transparent 100%
  );
  pointer-events: none;
}
.sector-slide h3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1rem 1.1rem;
  font-size: 1.05rem;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .section-lead--highlight::before {
    animation: none;
  }
  .panel-live-item {
    opacity: 1;
    transform: none;
  }
  .panel-live-item.is-active::before {
    animation: none;
  }
  .demo-form-success.is-visible {
    animation: none;
  }
  .card-benefit,
  .beneficios-grid .card-benefit {
    animation: none;
  }
  .sector-carousel-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: 1100px;
    margin: 0 auto;
  }
  .sector-carousel {
    -webkit-mask-image: none;
    mask-image: none;
    overflow: visible;
  }
  .sector-slide[aria-hidden="true"] {
    display: none;
  }
}
/* —— Tablet y móvil: menú lateral —— */
@media (max-width: 1023px) {
  .nav-toggle { display: flex; }
  .nav-cta {
    display: none;
    font-size: 0.8rem;
    padding: 0.55rem 0.9rem;
  }
  .nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100dvh;
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--nav-h) + 1rem) 1.5rem 2rem;
    background: rgba(5, 8, 22, 0.98);
    border-left: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 101;
    overflow-y: auto;
  }
  .nav-panel.is-open {
    transform: translateX(0);
  }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links a {
    padding: 0.9rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  }
  .nav-links a.is-active::after {
    display: none;
  }
  .nav-links a.is-active {
    padding-left: 0.5rem;
    border-left: 3px solid var(--secondary);
  }
  .nav-panel .nav-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 0.75rem;
    margin-left: 0;
    justify-content: center;
  }
  .hero { grid-template-columns: 1fr; }
  .hero p { max-width: none; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    flex: 1 1 auto;
    min-width: 140px;
  }
  .sector-slide {
    flex: 0 0 min(260px, 75vw);
    height: clamp(160px, 28vw, 190px);
  }
  .sector-carousel {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
@media (max-width: 639px) {
  :root { --nav-h: 64px; }
  .nav { padding: 0.6rem 1rem; }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
  }
  .cta-center .btn-primary { width: 100%; max-width: 320px; }
  footer { padding: 1.25rem 1rem; font-size: 0.8rem; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .hero-status { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

.stars {
  color: #FFC107;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  letter-spacing: 1px;
}


















