.hero {
  background: #fff;
  padding: clamp(2.5rem, 4vw, 3.5rem);
  border-radius: 36px;
  box-shadow: 0 40px 80px rgba(15, 27, 27, 0.12);
  animation: fadeInUp 0.9s ease both;
}

:root {
  --green: #0ba360;
  --green-dark: #08804a;
  --white: #ffffff;
  --black: #0f1b1b;
  --gray: #f5f7f7;
  --soft-gray: #dfe6e4;
  --text-muted: #556064;
  --danger: #e53935;
  --shadow: 0 25px 60px rgba(10, 28, 22, 0.12);
  --radius: 22px;
  --transition: all 0.35s ease;
  --gradient: radial-gradient(circle at top left, rgba(11, 163, 96, 0.15), transparent 60%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  background-color: #f8fbfa;
  color: var(--black);
  line-height: 1.6;
  background-image: var(--gradient);
  min-height: 100vh;
}

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

main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 0;
  max-width: 100%;
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.5rem, 4vw, 8rem);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 27, 27, 0.06);
  backdrop-filter: blur(12px);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand img {
  height: 70px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a,
.link-btn {
  background: none;
  border: none;
  color: rgba(15, 27, 27, 0.65);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.2s ease, border-color 0.2s ease;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.link-btn:hover {
  color: var(--black);
  border-color: rgba(11, 163, 96, 0.4);
}

/* Ocultar menú hamburguesa en desktop */
.menu-toggle,
.mobile-menu,
.mobile-menu-overlay {
  display: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--danger);
  margin-bottom: 0.4rem;
}

.hero {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 100vh;
  max-height: 100vh;
  box-shadow: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.hero-mediaLayer {
  position: absolute;
  inset: 0;
}

.hero-mediaLayer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
}

.hero-mediaLayer__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 9, 9, 0.85), rgba(5, 9, 9, 0.35));
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: clamp(2rem, 3vw, 3rem);
  color: var(--white);
  min-height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
}

.hero-copy {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInUp 0.9s ease both;
}

.hero-copy h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin: 0;
  line-height: 1.2;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.5;
}

.hero-copy p strong {
  color: var(--white);
  font-weight: 700;
}

.hero-amount {
  color: #ffd700;
  font-size: 1.2em;
  font-weight: 800;
  display: inline-block;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  animation: heroGlow 2s ease-in-out infinite;
  position: relative;
}

@keyframes heroGlow {
  0%, 100% {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 215, 0, 0.4);
  }
  50% {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 215, 0, 0.7);
  }
}

.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: slideUp 1s 0.1s ease both;
}

.badge {
  display: inline-flex;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(11, 163, 96, 0.18);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  width: fit-content;
}

.hero-highlights {
  margin: 0.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  animation: slideUp 1s 0.2s ease both;
}

.hero-highlights div {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-highlights small {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
}

.hero-highlights strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.1rem;
  color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  animation: fadeInUp 1s 0.2s ease both;
}

.stat-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-card strong {
  display: block;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.stat-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.stat-card.highlight {
  background: rgba(11, 163, 96, 0.25);
  border: 2px solid rgba(11, 163, 96, 0.5);
  box-shadow: 0 8px 24px rgba(11, 163, 96, 0.3);
}

.stat-card.highlight strong {
  color: #0ba360;
  font-size: 1.5rem;
}

.value-card.highlight {
  background: linear-gradient(135deg, rgba(11, 163, 96, 0.08), rgba(11, 163, 96, 0.15));
  border: 2px solid rgba(11, 163, 96, 0.3);
  box-shadow: 0 8px 24px rgba(11, 163, 96, 0.2);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 0.5rem;
  animation: fadeInUp 1s 0.3s ease both;
}

.hero-security-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
  padding: 0.5rem 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.9;
  line-height: 1.5;
}

.btn-hero-cta {
  position: relative;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  min-width: 280px;
  max-width: 400px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(11, 163, 96, 0.35);
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(11, 163, 96, 0.45);
  background: #0f7c5a;
}

.hero-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  margin-top: 0.5rem;
}

.microcopy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: left;
  margin: 0;
  line-height: 1.4;
}

.btn-small {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  min-width: auto;
}

.hero-ctas .btn-ghost {
  background: rgba(255, 255, 255, 0.95);
  color: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-ctas .btn-ghost:hover {
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-ticket {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 1.5rem;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  animation: floatIn 1s 0.4s ease both;
}

.hero-ticket p {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.hero-ticket strong {
  font-size: 1.5rem;
  color: var(--white);
}

.hero-ticket span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.btn {
  border-radius: 999px;
  padding: 0.95rem 1.8rem;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  color: inherit;
  background: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(11, 163, 96, 0.3);
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  min-width: 280px;
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-outline {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-ghost {
  background: rgba(26, 26, 26, 0.08);
  color: var(--black);
}

.btn-ghost:hover {
  background: rgba(26, 26, 26, 0.15);
}

.btn.center {
  margin: 2rem auto 0;
  display: flex;
}

.cta-center {
  text-align: center;
  margin-top: 2rem;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 clamp(1.5rem, 4vw, 8rem);
}

.section:first-of-type {
  padding: 0;
}

.section.alt {
  background: var(--gray);
  padding: 3rem;
  border-radius: var(--radius);
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0;
}

.video-section {
  padding: 4rem clamp(1.5rem, 4vw, 8rem);
  background: #fff;
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.video-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.video-header .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.video-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin: 0 0 1rem 0;
}

.video-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(10, 28, 22, 0.15);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Estilos específicos para formato reel (vertical) */
.video-wrapper.video-reel {
  max-width: 400px;
  margin: 0 auto;
}

.explicative-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #000;
  min-height: 400px;
}

.video-reel .explicative-video {
  max-height: 85vh;
  max-width: 100%;
  aspect-ratio: 9 / 16;
}

.explicative-video::-webkit-media-controls-panel {
  background-color: rgba(0, 0, 0, 0.8);
}

.explicative-video::-webkit-media-controls-play-button,
.explicative-video::-webkit-media-controls-volume-slider,
.explicative-video::-webkit-media-controls-fullscreen-button {
  filter: brightness(1.2);
}

.video-error {
  padding: 2rem;
  text-align: center;
  color: var(--danger);
  background: rgba(229, 57, 53, 0.1);
  border: 1px solid var(--danger);
  border-radius: 12px;
  margin-top: 1rem;
}

.video-error p {
  margin: 0.5rem 0;
  color: var(--danger);
}

.video-steps {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(15, 27, 27, 0.08);
  box-shadow: 0 4px 12px rgba(15, 27, 27, 0.05);
  transition: all 0.3s ease;
}

.step-item:hover {
  box-shadow: 0 8px 24px rgba(15, 27, 27, 0.1);
  transform: translateY(-2px);
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 700;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 0.5rem 0;
}

.step-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.step-final {
  margin-top: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(11, 163, 96, 0.08), rgba(11, 163, 96, 0.12));
  border-radius: 16px;
  border: 2px solid rgba(11, 163, 96, 0.2);
  text-align: center;
}

.step-final .final-message {
  font-size: 1.1rem;
  color: var(--black);
  line-height: 1.7;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.step-final .final-cta {
  font-size: 1.05rem;
  color: var(--green-dark);
  font-weight: 700;
  margin: 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  background: var(--black);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-strip article {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.trust-strip strong {
  font-size: 2rem;
}

.mejoravit-banner {
  background: linear-gradient(135deg, #0ba360 0%, #0f7c5a 100%);
  color: var(--white);
  padding: 4rem 2.5rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(11, 163, 96, 0.3);
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.mejoravit-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.mejoravit-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mejoravit-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.mejoravit-banner h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.highlight-amount {
  color: #ffd700;
  font-size: 3rem;
  display: inline-block;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.3);
  }
  50% {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.6);
  }
}

.mejoravit-uses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
}

.use-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.use-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.use-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.use-icon svg {
  width: 100%;
  height: 100%;
}

.use-item p {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.mejoravit-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.benefit-text {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.mejoravit-cta {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.cta-text {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.cta-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

.mejoravit-cta .btn {
  margin-top: 0.5rem;
  background: var(--white);
  color: var(--green);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.mejoravit-cta .btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.info-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 27, 27, 0.05);
}

.info-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.info-card li {
  position: relative;
  padding-left: 1.2rem;
}

.info-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--green);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

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

.eligibility-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid rgba(15, 27, 27, 0.08);
  box-shadow: 0 20px 40px rgba(15, 27, 27, 0.05);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.value-card {
  display: flex;
  gap: 1rem;
  padding: 1.6rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 27, 27, 0.06);
  box-shadow: 0 18px 45px rgba(15, 27, 27, 0.05);
}

.icon-bullet {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: rgba(15, 27, 27, 0.05);
  display: grid;
  place-items: center;
}

.icon-bullet svg {
  width: 60px;
  height: 60px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.timeline.modern .timeline-step {
  text-align: left;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 27, 27, 0.08);
  padding: 1.5rem;
  background: #fff;
}

.timeline-step span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(11, 163, 96, 0.15);
  color: var(--green);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-panel {
  background: linear-gradient(135deg, #0b3b33, #0f1b1b);
  padding: 3rem;
  border-radius: 36px;
  color: var(--white);
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.contact-card .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.contact-card .btn-outline:hover {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.15);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-meta {
  display: grid;
  gap: 1rem;
}

.contact-meta small {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.faq-list details {
  border: 1px solid var(--soft-gray);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(15, 27, 27, 0.04);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: 0 20px 45px rgba(15, 27, 27, 0.08);
  border: 1px solid rgba(15, 27, 27, 0.06);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-list details {
  border: 1px solid var(--soft-gray);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.form-section {
  background: linear-gradient(135deg, rgba(11, 163, 96, 0.05), rgba(15, 27, 27, 0.02));
  padding: 5rem clamp(1.5rem, 4vw, 8rem);
  border-top: 1px solid var(--soft-gray);
}

.form-container {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 32px;
  padding: 3.5rem clamp(2rem, 4vw, 4rem);
  box-shadow: 0 30px 80px rgba(15, 27, 27, 0.12);
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin: 0.75rem 0 1rem;
}

.form-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form label span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
}

.contact-form input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--soft-gray);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: var(--white);
  color: var(--black);
}

.contact-form input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(11, 163, 96, 0.1);
}

.contact-form input::placeholder {
  color: rgba(15, 27, 27, 0.4);
}

.contact-form .error {
  color: var(--danger);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}

.contact-form .error:not(:empty) {
  display: block;
}

.contact-form input[aria-invalid="true"] {
  border-color: var(--danger);
}

.btn-large {
  padding: 1.15rem 2rem;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

.form-privacy {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .form-container {
    padding: 2.5rem 1.5rem;
  }
  
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  
  .form-section {
    padding: 3rem 1.5rem;
  }
  
  .form-header h2 {
    font-size: 1.75rem;
  }
  
  .contact-form input {
    padding: 0.9rem 1rem;
  }
}

.site-footer {
  background: #050909;
  color: var(--white);
  padding: 4rem clamp(1.5rem, 4vw, 8rem) 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}

.footer-brand strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social a {
  color: var(--white);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.footer-contact h4,
.footer-location h4,
.footer-legal h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 700;
}

.contact-item {
  margin-bottom: 1rem;
}

.contact-item small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item p {
  color: var(--white);
  text-decoration: none;
  display: block;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: var(--green);
}

.footer-location p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--white);
  text-decoration: underline;
}

.legal-text {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-text strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}

.floating-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--green);
  color: var(--white);
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 15px 35px rgba(11, 163, 96, 0.35);
  font-weight: 700;
  text-decoration: none;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.floating-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(11, 163, 96, 0.45);
}

.floating-wa:active {
  transform: translateY(0);
}

.wa-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.wa-text {
  white-space: nowrap;
  font-size: 1rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  z-index: 40;
}

.modal-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  width: min(520px, 100%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.close-btn {
  border: none;
  background: var(--gray);
  border-radius: 999px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.2rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
}

.modal-form input {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--soft-gray);
  font-size: 1rem;
}

.modal-subtitle {
  color: var(--text-muted);
  margin: 0;
}

.whatsapp-loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
  z-index: 60;
}

.whatsapp-loading-card {
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 230px;
}

.whatsapp-loading-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--black);
  font-weight: 600;
}

.whatsapp-spinner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid rgba(11, 163, 96, 0.2);
  border-top-color: var(--green);
  animation: whatsapp-spin 0.8s linear infinite;
}

@keyframes whatsapp-spin {
  to {
    transform: rotate(360deg);
  }
}

.error {
  font-size: 0.85rem;
  color: var(--danger);
  min-height: 1.1em;
}

.privacy-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.location-restriction {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(11, 163, 96, 0.1);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--black);
}

.location-restriction strong {
  color: var(--green-dark);
}

.modal-location-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-warning {
  padding: 1rem;
  background: rgba(11, 163, 96, 0.1);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  margin: 0;
  font-size: 0.95rem;
  color: var(--black);
}

.location-warning strong {
  color: var(--green-dark);
}

.location-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid var(--soft-gray);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.location-option:hover {
  border-color: var(--green);
  background: rgba(11, 163, 96, 0.05);
}

.location-option input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--green);
}

.location-option input[type="radio"]:checked + span {
  color: var(--green-dark);
  font-weight: 600;
}

.location-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.modal-legal {
  max-width: min(700px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
}

.modal-legal-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  line-height: 1.7;
}

.modal-legal-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  margin-top: 0.5rem;
}

.modal-legal-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.modal-legal-content ul,
.modal-legal-content ol {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.modal-legal-content li {
  margin: 0.5rem 0;
  line-height: 1.6;
}

.modal-legal-content strong {
  color: var(--black);
  font-weight: 700;
}

.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
}

.fade-up.in-view {
  animation: fadeUp 0.8s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  /* Header optimizado para móvil */
  .site-header {
    flex-direction: row;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    position: relative;
  }

  .brand img {
    height: 50px;
  }

  /* Ocultar navegación desktop en móvil */
  .nav-links,
  .site-header > .btn {
    display: none;
  }

  /* Botón hamburguesa */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 25;
    margin-left: auto;
  }

  .menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--black);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  /* Overlay para el menú móvil */
  .mobile-menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 23;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Menú móvil */
  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    padding: 5rem 1.5rem 2rem;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 24;
    transition: right 0.3s ease;
    overflow-y: auto;
  }

  .mobile-menu[aria-hidden="false"] {
    right: 0;
  }

  .mobile-menu a,
  .mobile-menu .link-btn {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--soft-gray);
    transition: color 0.2s ease;
  }

  .mobile-menu a:hover,
  .mobile-menu .link-btn:hover {
    color: var(--green);
  }

  .mobile-menu .btn {
    width: 100%;
    margin-top: 0.5rem;
    border-bottom: none;
    padding: 0.95rem 1.8rem;
  }

  /* Main content spacing */
  main {
    padding: 0;
    gap: 2.5rem;
  }

  .section {
    padding: 2.5rem 1.5rem;
  }

  .section:first-of-type {
    padding: 0;
  }

  /* Hero optimizado */
  .hero {
    min-height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }

  .hero-inner {
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
    min-height: 100vh;
    max-height: 100vh;
    justify-content: center;
    align-items: flex-start;
  }

  .hero-copy {
    gap: 1.25rem;
    max-width: 100%;
    width: 100%;
  }

  .badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.9rem;
    margin-bottom: 0.5rem;
    display: inline-block;
  }

  .hero-headline {
    gap: 0.75rem;
  }

  .hero-copy h1 {
    font-size: 1.65rem;
    line-height: 1.35;
    margin: 0;
    letter-spacing: -0.01em;
  }

  .hero-amount {
    font-size: 1.25em;
    display: block;
    margin-top: 0.75rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  .hero-copy p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.01em;
  }

  .hero-copy p strong {
    font-weight: 700;
    display: inline;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-highlights div {
    padding: 0.85rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-card strong {
    font-size: 1.1rem;
  }

  .stat-card p {
    font-size: 0.8rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0 1rem;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    min-width: auto;
  }

  .btn-hero-cta {
    padding: 1.1rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    min-width: 100%;
    max-width: 100%;
    border-radius: 12px;
    letter-spacing: 0.01em;
  }

  .hero-security-note {
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
  }

  .hero-contact-info {
    gap: 0.5rem;
    margin-top: 0.75rem;
    width: 100%;
  }

  .microcopy {
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: left;
    letter-spacing: 0.01em;
  }

  .btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .btn-large {
    width: 100%;
    min-width: auto;
    padding: 1rem 1.8rem;
    font-size: 1rem;
  }

  .hero-ticket {
    width: 100%;
    padding: 1.25rem;
  }

  /* Section headers */
  .section-header {
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .section-header .eyebrow {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin: 0 0 0.75rem 0;
  }

  .section-header p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
  }

  .section {
    padding: 2.5rem 1.5rem;
  }

  .section.alt {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    margin: 0 1.5rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    margin: 0 1.5rem;
    border-radius: 16px;
  }

  .trust-strip article {
    text-align: center;
    padding: 0;
  }

  .trust-strip strong {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.4rem;
  }

  .trust-strip p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
  }

  .mejoravit-banner {
    padding: 2.5rem 1.5rem;
    margin: 0 1.5rem 2.5rem;
    border-radius: 20px;
  }

  .mejoravit-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }

  .mejoravit-banner h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }

  .highlight-amount {
    font-size: 1.8rem;
    display: block;
    margin-top: 0.5rem;
    line-height: 1.2;
  }

  .mejoravit-uses {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .use-item {
    padding: 1.5rem 1.25rem;
    text-align: center;
  }

  .use-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
  }

  .use-item p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
  }

  .mejoravit-benefits {
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
  }

  .benefit-text {
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
    text-align: center;
  }

  .mejoravit-cta {
    margin-top: 1.5rem;
    text-align: center;
  }

  .cta-text {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }

  .cta-subtitle {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    opacity: 0.9;
  }

  .btn-hero-cta {
    padding: 1.25rem 1.8rem;
    font-size: 1.1rem;
  }

  .btn-hero-cta .cta-icon {
    font-size: 1.3rem;
  }

  .btn-hero-cta .cta-subtext {
    font-size: 0.8rem;
  }

  .info-panel {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .info-card {
    padding: 1.5rem;
  }

  /* Buttons */
  .btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    min-width: auto;
    width: 100%;
  }

  .btn-large {
    padding: 1rem 1.75rem;
    font-size: 1rem;
  }

  /* Cards y grids */
  .value-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .value-card {
    padding: 1.5rem;
  }

  .value-card h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
  }

  .value-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
  }

  .icon-bullet {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .authority-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .quote-card {
    padding: 1.5rem;
  }

  .quote-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .quote-card strong {
    font-size: 0.85rem;
  }

  .timeline.modern {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .timeline-step {
    padding: 1.25rem;
  }

  .timeline-step span {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .timeline-step h3 {
    font-size: 1rem;
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
  }

  .timeline-step p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
  }

  .process-timeline {
    flex-direction: column;
    gap: 2rem;
  }

  .process-step {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
    border-left: none;
    border-top: 2px solid var(--soft-gray);
  }

  .process-step::before {
    left: 0;
    top: -12px;
  }

  /* Contact section */
  .contact-panel {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .contact-meta {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Form section */
  .form-section {
    padding: 2.5rem 1.5rem;
  }

  .form-container {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .form-header {
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .form-header .eyebrow {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
  }

  .form-header h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0 0 0.75rem 0;
  }

  .form-header p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
  }

  .contact-form label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .contact-form input {
    padding: 0.95rem 1rem;
    font-size: 0.95rem;
    border-radius: 10px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-privacy {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-top: 1rem;
  }

  /* FAQ */
  .faq-columns {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .faq-list details {
    margin-bottom: 0.75rem;
  }

  .faq-list summary {
    font-size: 0.95rem;
    padding: 1rem;
    line-height: 1.4;
  }

  .faq-list p {
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 0 1rem 1rem;
  }

  .cta-center {
    margin-top: 2rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer {
    padding: 2.5rem 1.5rem 1.5rem;
    gap: 1.5rem;
  }

  .footer-brand strong,
  .footer-contact h4,
  .footer-location h4,
  .footer-legal h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: block;
  }

  .footer-brand p,
  .footer-location p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0.5rem 0;
  }

  .footer-contact a,
  .footer-legal a {
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.5rem;
  }

  .footer-social {
    flex-direction: row;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
  }

  .footer-social a {
    width: auto;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    text-align: center;
  }

  .legal-text {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-top: 1.5rem;
  }

  .legal-text p {
    margin-bottom: 0.75rem;
  }

  .copyright {
    font-size: 0.75rem;
    margin-top: 1.5rem;
    text-align: center;
  }

  /* Floating WhatsApp button */
  .floating-wa {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    left: auto;
    width: auto;
    max-width: none;
    padding: 0.85rem 1.1rem;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(11, 163, 96, 0.4);
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: auto;
    transition: all 0.3s ease;
  }

  .wa-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .wa-text {
    font-size: 0.85rem;
    white-space: nowrap;
    font-weight: 600;
  }

  /* Modales legales en móvil */
  .modal-legal {
    max-width: 95vw;
    max-height: 85vh;
    padding: 1.5rem;
  }

  .modal-legal-content {
    gap: 1.25rem;
  }

  .modal-legal-content h4 {
    font-size: 1rem;
  }

  .modal-legal-content p,
  .modal-legal-content ul,
  .modal-legal-content ol {
    font-size: 0.9rem;
  }

  /* Modal de ubicación en móvil */
  .location-restriction {
    font-size: 0.8rem;
    padding: 0.65rem 0.85rem;
  }

  .modal-location-content {
    gap: 1.25rem;
  }

  .location-warning {
    font-size: 0.9rem;
    padding: 0.85rem;
  }

  .location-option {
    font-size: 0.9rem;
    padding: 0.85rem;
  }

  .location-actions {
    flex-direction: column-reverse;
    gap: 0.75rem;
  }

  .location-actions .btn {
    width: 100%;
  }

  .whatsapp-loading-card {
    padding: 1.25rem 1.5rem;
    min-width: 0;
    width: 80%;
    max-width: 280px;
  }

  .whatsapp-loading-card p {
    font-size: 0.9rem;
  }

  /* Sección de video en móvil */
  .video-section {
    padding: 2.5rem 1.5rem;
  }

  .video-container {
    gap: 1.5rem;
  }

  .video-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .video-header p {
    font-size: 0.9rem;
  }

  .video-wrapper {
    border-radius: 16px;
  }

  .video-wrapper.video-reel {
    max-width: 100%;
    max-width: min(400px, 90vw);
  }

  .explicative-video {
    max-height: 75vh;
    min-height: 300px;
  }

  .video-reel .explicative-video {
    max-height: 75vh;
    width: 100%;
  }

  /* Pasos del video en móvil */
  .video-steps {
    margin-top: 2rem;
    gap: 1.25rem;
  }

  .step-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .step-content h3 {
    font-size: 1rem;
  }

  .step-content p {
    font-size: 0.95rem;
  }

  .step-final {
    padding: 1.5rem;
  }

  .step-final .final-message {
    font-size: 1rem;
  }

  .step-final .final-cta {
    font-size: 0.95rem;
  }

  .floating-wa:active {
    transform: scale(0.95);
    box-shadow: 0 4px 12px rgba(11, 163, 96, 0.35);
  }

  /* Modal */
  .modal-card {
    width: calc(100% - 2rem);
    padding: 1.5rem;
    margin: 1rem;
  }

  /* Formulario */
  .form-container {
    padding: 2rem 1.25rem;
    border-radius: 24px;
  }

  .form-header {
    margin-bottom: 2rem;
  }

  .form-header h2 {
    font-size: 1.5rem;
  }

  .form-header p {
    font-size: 0.95rem;
  }

  .contact-form {
    gap: 1.25rem;
  }

  .contact-form input {
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
  }

  /* Badge y eyebrow */
  .badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.75rem;
  }

  .eyebrow {
    font-size: 0.7rem;
  }
}

