/* ==========================================================================
   LEWFÚ - PÁGINAS WEB PARA NEGOCIOS Y COMERCIOS
   Diseño de Alto Rendimiento • SEO • Portada con Imágenes Vivas • Mobile First
   ========================================================================== */

:root {
  --bg-black: #050505;
  --bg-dark: #0c0c0f;
  --bg-card: #111116;
  
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-medium: rgba(255, 255, 255, 0.18);
  --border-highlight: rgba(229, 169, 59, 0.5);
  
  --text-white: #ffffff;
  --text-gray: #e6e6ec;
  --text-muted: #a8a8b4;
  
  --gold-primary: #e5a93b;
  --gold-light: #f7cb68;
  --gold-glow: rgba(229, 169, 59, 0.25);
  
  --whatsapp-green: #075E54;
  --whatsapp-hover: #043b35;
  
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-black);
  color: var(--text-gray);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-black);
  color: var(--text-gray);
  line-height: 1.55;
  overflow-x: hidden;
}

/* --- Accesibilidad: Enlace de Salto --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1.5rem;
  background: var(--gold-primary);
  color: #000000;
  font-weight: 800;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-sm);
  z-index: 99999;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(229, 169, 59, 0.5);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1.2rem;
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

/* --- Accesibilidad: Utilidad Solo Lectores de Pantalla --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--gold-primary);
  outline-offset: 3px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

.gradient-text {
  background: linear-gradient(135deg, #ffffff 40%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-text {
  color: var(--gold-light);
}

/* --- Header & Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 7, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(3, 3, 4, 0.98);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.75);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

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

.logo-image-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border-medium);
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-white);
}

.brand-dot {
  color: var(--gold-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s ease;
  padding: 0.3rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
}

.nav-highlight {
  color: var(--gold-light) !important;
}

.header-actions {
  display: flex;
  align-items: center;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 2px;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-toggle.is-active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Botones --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.02rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  background: #e8e8ea;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  color: #000000;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(229, 169, 59, 0.45);
}

.btn-secondary {
  background-color: rgba(10, 10, 14, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-whatsapp-lg {
  background: var(--whatsapp-green);
  color: #ffffff;
  padding: 1rem 2.2rem;
  font-size: 1.08rem;
  border-radius: 50px;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-lg:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-color {
  color: var(--whatsapp-green);
}

/* ==========================================================================
   PORTADA CON IMÁGENES INTEGRADAS QUE PASAN SOLAS (100% VISIBLES)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: calc(100vh - 68px);
  min-height: calc(100svh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4.5rem 1.25rem 3.5rem;
  background-color: #050507;
}

/* Fondo con las fotos que rotan solas */
.hero-slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease-in-out, transform 7s cubic-bezier(0.1, 0.5, 0.2, 1);
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Degradado equilibrado: las fotos se ven vivas y nítidas, texto 100% legible */
.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 8, 0.6) 0%,
    rgba(5, 5, 8, 0.28) 30%,
    rgba(5, 5, 8, 0.5) 70%,
    rgba(5, 5, 8, 0.98) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

/* Diseño abierto sin cajas opacas: viñeta radial suave sin bordes */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-xl);
  background: radial-gradient(ellipse at center, rgba(3, 3, 5, 0.52) 0%, rgba(3, 3, 5, 0.22) 65%, transparent 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 169, 59, 0.45);
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.3rem, 5.2vw, 4.3rem);
  font-weight: 800;
  line-height: 1.14;
  color: #ffffff;
  margin-bottom: 1.35rem;
  letter-spacing: -1.2px;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.85);
}

/* Texto dorado luminoso sin bug de transparencia con text-shadow */
.hero-title .gradient-text {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  color: #f7be4b;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.95), 0 0 30px rgba(229, 169, 59, 0.45);
  display: inline;
}

.hero-br-mobile {
  display: none;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
  color: #f3f3fa;
  max-width: 680px;
  margin: 0 auto 2.4rem;
  line-height: 1.62;
  font-weight: 500;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 0.85);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}

.hero-actions .btn-secondary {
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.hero-actions .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Indicador de fotos que pasan solas */
.hero-slider-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.hero-dot {
  position: relative;
  width: 26px;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.35s ease;
  cursor: pointer;
}

.hero-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.75);
}

.hero-dot.active {
  background: var(--gold-primary);
  width: 44px;
  box-shadow: 0 0 12px rgba(229, 169, 59, 0.7);
}

/* ==========================================================================
   BENEFICIOS: SIN TARJETAS, LIMPIO Y DIRECTO
   ========================================================================== */
.benefits-section {
  padding: 5rem 0;
  background: #07070a;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  content-visibility: auto;
  contain-intrinsic-size: 400px;
}

.section-heading {
  margin-bottom: 3.5rem;
}

.section-main-title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.benefits-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 0.5rem 0;
}

.benefit-num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: -1px;
}

.benefit-num.gold {
  color: var(--gold-primary);
}

.benefit-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.6rem;
  letter-spacing: -0.2px;
}

.benefit-content p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.benefit-content p strong {
  color: var(--text-white);
}

/* ==========================================================================
   SECCIÓN DE PLANES: PANTALLA COMPLETA Y PRECIOS CLAROS
   ========================================================================== */
.plans-fullscreen-section {
  position: relative;
  min-height: 100vh;
  padding: 3.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at 50% 30%, #111018 0%, #050505 75%);
  overflow: hidden;
}

.plans-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.plans-title-single {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--text-white);
}

.plans-tab-pills {
  display: flex;
  background: #111116;
  border: 1px solid var(--border-medium);
  border-radius: 50px;
  padding: 0.3rem;
  gap: 0.3rem;
}

.plan-pill {
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.plan-pill.active {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.plans-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.plan-side-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(22, 22, 28, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-medium);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.plan-side-btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.35);
}

.btn-left {
  left: 1.5rem;
}

.btn-right {
  right: 1.5rem;
}

.plans-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.plans-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.plan-slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
}

.plan-card {
  width: 100%;
  max-width: 860px;
  background: #0f0f14;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 2.4rem 2.8rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.highlight-border {
  border: 1.5px solid rgba(229, 169, 59, 0.55);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(229, 169, 59, 0.12);
  background: linear-gradient(180deg, #14131b 0%, #0c0c10 100%);
}

.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.plan-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-gray);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.4rem;
}

.gold-badge {
  background: rgba(229, 169, 59, 0.2);
  color: var(--gold-light);
  border: 1px solid rgba(229, 169, 59, 0.35);
}

.plan-title {
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.plan-desc {
  font-size: 0.96rem;
  color: var(--text-muted);
}

.plan-price-block {
  text-align: right;
  flex-shrink: 0;
}

.promo-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.3rem;
}

.price-figures {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.6rem;
}

.price-strikethrough {
  font-size: 1.15rem;
  color: #a8a8b4;
  text-decoration: line-through;
  font-weight: 600;
}

.price-amount {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.price-period {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.25rem;
}

.plan-items {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-bottom: 2.2rem;
}

.plan-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.plan-items li strong {
  color: var(--text-white);
}

.item-included {
  color: var(--gold-light) !important;
  font-weight: 600;
}

.check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}

.gold-check {
  background: rgba(229, 169, 59, 0.2);
  color: var(--gold-light);
}

.plan-dots-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.p-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.2s ease;
  cursor: pointer;
}

.p-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
}

.p-dot.active {
  background: var(--gold-primary);
  transform: scale(1.3);
}

/* ==========================================================================
   BANNER DE CONTACTO DIRECTO
   ========================================================================== */
.contact-cta-section {
  padding: 4.5rem 0;
  background: #08080b;
  border-top: 1px solid var(--border-subtle);
  content-visibility: auto;
  contain-intrinsic-size: 300px;
}

.contact-cta-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.8rem;
}

.contact-cta-section p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #030304;
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

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

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.footer-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-white);
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-tel a {
  color: var(--gold-light);
  font-weight: 700;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

/* ==========================================================================
   BOTÓN FLOTANTE DE WHATSAPP
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.wa-btn {
  position: relative;
  width: 58px;
  height: 58px;
  background: var(--whatsapp-green);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65);
}

.pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--whatsapp-green);
  animation: wa-pulse 2.2s infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .pulse {
    animation: none;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (PRIORIDAD: CELULARES)
   ========================================================================== */
@media (max-width: 900px) {
  .benefits-flow {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .btn-left {
    left: 0.2rem;
  }

  .btn-right {
    right: 0.2rem;
  }

  .plan-card {
    padding: 2rem 1.5rem;
  }

  .plan-price-block {
    text-align: left;
    width: 100%;
    margin-top: 0.5rem;
  }

  .price-figures {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: rgba(8, 8, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-medium);
    padding: 1.8rem 1.4rem;
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
  }

  .nav-menu.is-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  /* Portada en móvil: sin tarjeta, fotos 100% visibles y tipografía cinematográfica */
  .hero-section {
    min-height: calc(100svh - 68px);
    padding: 2.2rem 0.5rem 2rem;
  }

  .hero-container {
    padding: 0 0.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-content {
    padding: 1rem 0.25rem;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-badge {
    font-size: 0.76rem;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1.1rem;
    max-width: 95%;
    white-space: normal;
  }

  .hero-title {
    font-size: clamp(1.65rem, 6.2vw, 1.95rem);
    margin-bottom: 0.95rem;
    letter-spacing: -0.5px;
    line-height: 1.18;
    word-break: break-word;
    width: 100%;
  }

  .hero-br-mobile {
    display: block;
  }

  .hero-subtitle {
    font-size: 0.94rem;
    margin-bottom: 1.6rem;
    line-height: 1.5;
    padding: 0 0.5rem;
    max-width: 320px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 310px;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    box-sizing: border-box;
  }

  .plans-fullscreen-section {
    min-height: auto;
    padding: 3.5rem 0;
  }

  .plans-top-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .plans-slider-wrapper {
    padding: 0 0.5rem;
  }

  .plan-side-btn {
    width: 42px;
    height: 42px;
    top: auto;
    bottom: -8px;
    transform: none;
  }

  .btn-left {
    left: 18%;
  }

  .btn-right {
    right: 18%;
  }

  .plan-side-btn:hover {
    transform: scale(1.05);
  }

  .plan-dots-row {
    margin-top: 2.8rem;
  }

  .floating-whatsapp {
    bottom: 18px;
    right: 18px;
  }

  .wa-btn {
    width: 52px;
    height: 52px;
  }
}
