  --rojo: #d4142a;
  --rojo-oscuro: #a80f21;
  --rojo-intenso: #b81024;
  --rojo-suave: #fff0f2;
  --rojo-glow: rgba(212, 20, 42, 0.15);
  --blanco: #ffffff;
  --texto: #3d3d3d;
  --texto-suave: #6b6b6b;
  --red-gradient: linear-gradient(135deg, var(--rojo-oscuro) 0%, var(--rojo) 50%, var(--rojo-intenso) 100%);
  --border-radius: 20px;
  --icon-size: 2.25rem;
  --circle-size: 4.2rem;
  --shadow: 0 8px 24px rgba(212, 20, 42, 0.1);
  --transition: 0.25s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  --section-gap: 1.75rem;
  --container-max: 920px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--texto);
  background: var(--blanco);
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 0% 100%, var(--rojo-glow) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(212, 20, 42, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--blanco) 0%, var(--rojo-suave) 100%);
  z-index: 0;
  pointer-events: none;
}

.deco-ring {
  position: fixed;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border: 3px solid rgba(212, 20, 42, 0.08);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.deco-blob {
  position: fixed;
  bottom: -60px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: var(--rojo);
  opacity: 0.04;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.site {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.site-hero {
  background: var(--red-gradient);
  border-radius: var(--border-radius);
  margin-top: 1.25rem;
  padding: 2rem 1.5rem 2.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(212, 20, 42, 0.18),
    0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.site-hero-inner {
  position: relative;
  z-index: 1;
}

.logo {
  max-width: 220px;
  width: min(220px, 75vw);
  height: auto;
  display: block;
  margin: 0 auto 1.25rem;
}

.main-title {
  font-size: clamp(1.35rem, 4.5vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 1rem;
  color: var(--blanco);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.hero-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  margin: 0 auto 1.25rem;
  border-radius: 2px;
}

.options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.option-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  background: var(--blanco);
  color: var(--rojo-oscuro);
  padding: 0.85rem 1.35rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.option-btn:hover,
.option-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.option-btn .icon {
  color: var(--rojo);
}

.site-main {
  margin-top: var(--section-gap);
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.panel {
  background: var(--blanco);
  border-radius: var(--border-radius);
  border: 1px solid rgba(212, 20, 42, 0.1);
  box-shadow:
    0 12px 40px rgba(212, 20, 42, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.04);
  padding: 1.75rem 1.5rem;
}

.img-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.img-section img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--border-radius) - 4px);
  margin: 0;
  background: #eee;
  object-fit: cover;
}

.img-section .img-caption {
  font-size: 1rem;
  font-weight: 600;
  color: var(--rojo);
  text-align: center;
  margin: 1rem 1.25rem 1.25rem;
  letter-spacing: -0.02em;
}

.img-section .img-slogan {
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  color: var(--blanco);
  background: var(--red-gradient);
  border-radius: 999px;
  display: inline-block;
  padding: 0.5em 1.2em;
  margin: -1.5rem auto 0.25rem;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}

.img-section:has(.img-slogan) {
  padding-bottom: 0.75rem;
}

.container.features {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  max-width: none;
  width: 100%;
}

.feature {
  background: var(--blanco);
  border-radius: 16px;
  border: 1px solid rgba(212, 20, 42, 0.1);
  box-shadow: 0 6px 20px rgba(212, 20, 42, 0.08);
  padding: 1.75rem 1.25rem 1.5rem;
  flex: 1 1 260px;
  max-width: 300px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 300px;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(212, 20, 42, 0.14);
}

.feature-circle {
  background: var(--red-gradient);
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 8px 24px rgba(212, 20, 42, 0.2);
  border: 3px solid var(--rojo-suave);
  flex-shrink: 0;
}

.feature-circle .icon {
  width: var(--icon-size);
  height: var(--icon-size);
  fill: #fff;
  display: block;
}

.icon {
  display: block;
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
  flex-shrink: 0;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  text-align: center;
  color: var(--rojo-oscuro);
  letter-spacing: -0.02em;
}

.feature-subtitle {
  font-size: 0.98rem;
  color: var(--texto-suave);
  text-align: center;
  line-height: 1.55;
}

.features-wrap {
  text-align: center;
}

.features-wrap .process-title {
  text-align: center;
  width: 100%;
  margin-top: 0;
}

.features.panel {
  padding: 1.5rem 1rem 1.75rem;
}

.process-section,
.benefits-section,
.cta-section,
.faq-section {
  text-align: center;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-title,
.benefits-title,
.cta-title,
.faq-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--rojo-oscuro);
  letter-spacing: -0.02em;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--rojo), transparent);
  margin: 0 auto 1.25rem;
  border-radius: 2px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.process-step-btn {
  background: var(--red-gradient);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  cursor: default;
  box-shadow: 0 4px 14px rgba(212, 20, 42, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeInStep 0.5s forwards;
}

.process-step-btn .icon {
  width: 1.15em;
  height: 1.15em;
  color: #fff;
  flex-shrink: 0;
}

@keyframes fadeInStep {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  text-align: left;
}

.benefit-list li {
  font-size: 1rem;
  color: var(--texto-suave);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.45;
}

.benefit-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--rojo);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--rojo-suave);
}

.cta-sub {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  color: var(--texto-suave);
  line-height: 1.6;
  max-width: 520px;
}

.cta-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.cta-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  background: var(--rojo-suave);
  color: var(--rojo-oscuro);
  border: 1px solid rgba(212, 20, 42, 0.15);
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  font-weight: 600;
}

.cta-contact-item .icon {
  width: 1.15em;
  height: 1.15em;
  color: var(--rojo);
}

.cta-contact-item a {
  color: inherit;
  text-decoration: none;
}

.cta-contact-item a:hover {
  text-decoration: underline;
}

.faqs-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  max-width: 640px;
}

.faq-item {
  border-radius: 12px;
  background: var(--rojo-suave);
  border: 1px solid rgba(212, 20, 42, 0.1);
  overflow: hidden;
  text-align: left;
}

.faq-item.open {
  box-shadow: 0 6px 18px rgba(212, 20, 42, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--texto);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  cursor: pointer;
  font-weight: 600;
  text-align: left;
}

.faq-question:hover,
.faq-item.open .faq-question {
  background: rgba(212, 20, 42, 0.06);
}

.faq-question span:first-child {
  flex: 1 1 auto;
}

.faq-arrow.icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--rojo);
  transition: transform 0.22s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  margin-left: auto;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1rem 0 1rem;
  font-size: 0.98rem;
  color: var(--texto-suave);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.46, 0.03, 0.52, 0.96), padding 0.35s;
  opacity: 0;
}

.faq-item.open .faq-answer {
  padding: 0.5rem 1rem 1rem;
  max-height: 400px;
  opacity: 1;
}

.site-footer {
  text-align: center;
  padding: 1rem 1.5rem;
  background: var(--rojo-suave);
  border-radius: var(--border-radius);
  border: 1px solid rgba(212, 20, 42, 0.08);
  font-size: 0.85rem;
  color: var(--texto-suave);
}

.site-footer a {
  color: var(--rojo);
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.between-header-features {
  display: none;
}

@media (max-width: 700px) {
  .site-hero {
    padding: 1.6rem 1rem 2.4rem;
  }

  .panel {
    padding: 1.35rem 1rem;
  }

  .feature {
    max-width: 100%;
    min-height: auto;
  }

  .img-section .img-slogan {
    margin-top: -1.2rem;
    font-size: 0.98rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-step-btn {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
