/* ============================================================
   MBARETE DIGITAL — style.css
   Agencia de diseño web en Paraguay
   Fraunces (títulos) + Mulish (cuerpo)
   Paleta: azul marino + verde esmeralda
   ============================================================ */

/* === VARIABLES === */
:root {
  /* Colores */
  --azul-oscuro: #0a1628;
  --azul-medio: #1a3a6b;
  --azul-card: #162c54;
  --verde: #059669;
  --verde-btn: #047857;      /* más oscuro para contraste WCAG AA con blanco */
  --verde-claro: #34d399;
  --verde-hover: #047857;
  --blanco: #ffffff;
  --gris-claro: #f8fafc;
  --gris-medio: #e2e8f0;
  --texto: #1e293b;
  --texto-muted: #64748b;
  --texto-light: rgba(255,255,255,0.88);

  /* Tipografía */
  --font-titulo: 'Georgia', 'Charter', 'Palatino Linotype', serif;
  --font-cuerpo: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Radios */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Sombras */
  --shadow-sm: 0 1px 4px rgba(10,22,40,0.08);
  --shadow-md: 0 4px 20px rgba(10,22,40,0.12);
  --shadow-lg: 0 8px 40px rgba(10,22,40,0.18);
  --shadow-verde: 0 4px 20px rgba(5,150,105,0.35);

  /* Espaciado base */
  --section-py: 72px;
  --container-max: 1200px;
  --container-narrow: 760px;

  /* Transición */
  --transition: 0.25s ease;
  --transition-slow: 0.45s ease;
}

/* === SKIP LINK (accesibilidad teclado) === */
.skip-link {
  position: absolute;
  top: -48px;
  left: 0;
  background: var(--verde);
  color: var(--blanco);
  font-family: var(--font-cuerpo);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 0 0 var(--radius-md) 0;
  z-index: 9999;
  transition: top 0.2s ease;
  text-decoration: none;
  /* Solo visible con teclado, nunca en touch */
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .skip-link:focus {
    display: block;
    top: 0;
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-cuerpo);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--texto);
  background: var(--blanco);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* === UTILIDADES === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* === ANIMACIONES FADE-UP === */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays para grillas */
[style*="--delay:0"] { transition-delay: 0ms; }
[style*="--delay:1"] { transition-delay: 100ms; }
[style*="--delay:2"] { transition-delay: 200ms; }
[style*="--delay:3"] { transition-delay: 300ms; }
[style*="--delay:4"] { transition-delay: 400ms; }
[style*="--delay:5"] { transition-delay: 500ms; }

/* === BOTONES === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-cuerpo);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--verde-btn);
  color: var(--blanco);
  box-shadow: var(--shadow-verde);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #065f46;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(5,150,105,0.45);
}

.btn--outline {
  background: transparent;
  color: var(--blanco);
  border: 2px solid rgba(255,255,255,0.45);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--blanco);
  color: var(--verde);
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.btn--white:hover,
.btn--white:focus-visible {
  background: #f0fdf8;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn--whatsapp {
  background: var(--verde);
  color: var(--blanco);
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn--whatsapp:hover {
  background: var(--verde-hover);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn--xl {
  padding: 18px 48px;
  font-size: 1.1rem;
}

.btn--full {
  width: 100%;
}

/* === SECCIONES COMUNES === */
.section {
  padding: var(--section-py) 0;
}

.section--white { background: var(--blanco); }
.section--gray  { background: var(--gris-claro); }
.section--dark  { background: var(--azul-oscuro); }
.section--testimonios { background: var(--azul-medio); }
.section--cta   { background: linear-gradient(135deg, var(--verde) 0%, var(--verde-hover) 100%); }

.section__title {
  font-family: var(--font-titulo);
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  color: var(--texto);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section__title--light { color: var(--blanco); }

.section__subtitle {
  font-size: 1.05rem;
  color: var(--texto-muted);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
  font-weight: 500;
}

.section__subtitle--light { color: var(--texto-light); }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: var(--blanco);
  box-shadow: 0 2px 16px rgba(10,22,40,0.1);
  padding: 10px 0;
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--blanco);
  transition: color var(--transition);
  flex-shrink: 0;
}

.navbar.scrolled .navbar__logo {
  color: var(--azul-oscuro);
}

.navbar__logo-icon {
  font-size: 1.3rem;
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.navbar__link {
  font-family: var(--font-cuerpo);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}

.navbar__link:hover {
  color: var(--verde-claro);
  background: rgba(255,255,255,0.08);
}

.navbar.scrolled .navbar__link {
  color: var(--texto);
}

.navbar.scrolled .navbar__link:hover {
  color: var(--verde);
  background: rgba(5,150,105,0.08);
}

.navbar__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  z-index: 110;
}

.navbar__hamburger:hover {
  background: rgba(255,255,255,0.1);
}

.navbar.scrolled .navbar__hamburger:hover {
  background: rgba(10,22,40,0.08);
}

.hamburger__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--blanco);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .hamburger__bar {
  background: var(--texto);
}

/* Hamburger → X */
.navbar__hamburger.open .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.open .hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__hamburger.open .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu abierto */
.navbar__links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--azul-oscuro);
  padding: 96px 32px 48px;
  gap: 8px;
  z-index: 105;
}

.navbar__links.open .navbar__link {
  font-size: 1.3rem;
  font-family: var(--font-titulo);
  font-weight: 700;
  color: var(--blanco);
  padding: 16px 20px;
  border-radius: var(--radius-md);
}

.navbar__links.open .navbar__link:hover {
  background: rgba(255,255,255,0.08);
  color: var(--verde-claro);
}

.navbar__cta {
  flex-shrink: 0;
  display: none;
}

@media (min-width: 768px) {
  .navbar__cta {
    display: inline-flex;
  }
}

/* === HERO === */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--azul-oscuro) 0%, var(--azul-medio) 100%);
  padding: 140px 0 96px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 35%, rgba(5,150,105,0.12) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(26,58,107,0.5) 0%, transparent 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.018) 40px,
      rgba(255,255,255,0.018) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.018) 40px,
      rgba(255,255,255,0.018) 41px
    );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Hero badges */
.hero__badge {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-cuerpo);
}

.badge--py {
  background: rgba(255,255,255,0.12);
  color: var(--blanco);
  border: 1px solid rgba(255,255,255,0.2);
  animation: badgePop 0.6s ease both;
}

.badge--status {
  background: rgba(5,150,105,0.18);
  color: var(--verde-claro);
  border: 1px solid rgba(52,211,153,0.3);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--verde-claro);
  flex-shrink: 0;
}

.status-dot.active {
  animation: pulseDot 1.5s infinite;
}

.badge--status.closed {
  background: rgba(100,116,139,0.18);
  color: #94a3b8;
  border-color: rgba(100,116,139,0.3);
}

.badge--status.closed .status-dot {
  background: #94a3b8;
  animation: none;
}

/* Hero título */
.hero__title {
  font-family: var(--font-titulo);
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  color: var(--blanco);
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 780px;
}

.hero__title-accent {
  color: var(--verde-claro);
  font-style: italic;
}

.hero__desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin-bottom: 36px;
  font-weight: 500;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

/* Hero stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 580px;
}

.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), background var(--transition);
}

.stat-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.11);
}

.stat-card__number {
  display: block;
  font-family: var(--font-titulo);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--verde-claro);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-card__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* === POR QUÉ ELEGIRNOS === */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 8px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  background: var(--blanco);
  border: 1.5px solid var(--gris-medio);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--verde-claro);
}

.feature-card__icon {
  font-size: 2.2rem;
  line-height: 1;
}

.feature-card__title {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--texto);
}

.feature-card__desc {
  font-size: 0.95rem;
  color: var(--texto-muted);
  line-height: 1.6;
}

/* === RUBROS === */
.rubros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}

.rubro-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  background: var(--blanco);
  border: 1.5px solid var(--gris-medio);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--texto);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.rubro-item:hover {
  border-color: var(--verde);
  background: #f0fdf8;
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  color: var(--verde-hover);
}

.rubro-item__icon {
  font-size: 1.6rem;
  line-height: 1;
}

.rubro-item__text {
  line-height: 1.3;
}

.rubros-cta {
  text-align: center;
  margin-top: 16px;
}

/* === CÓMO FUNCIONA === */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 16px;
  align-items: start;
  position: relative;
}

.step__number {
  grid-row: 1;
  grid-column: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--verde);
  color: var(--blanco);
  font-family: var(--font-titulo);
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-verde);
}

.step__icon {
  grid-row: 2;
  grid-column: 1;
  text-align: center;
  font-size: 1.5rem;
  padding: 8px 0 0;
  color: var(--verde);
  justify-self: center;
}

.step__title {
  grid-row: 1;
  grid-column: 2;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--texto);
  padding-top: 10px;
}

.step__desc {
  grid-row: 2;
  grid-column: 2;
  font-size: 0.95rem;
  color: var(--texto-muted);
  line-height: 1.65;
}

/* === QUÉ INCLUYE === */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.include-card {
  background: var(--blanco);
  border: 1.5px solid var(--gris-medio);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition);
}

.include-card:hover {
  border-color: var(--verde);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.include-card__icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}

.include-card__title {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--texto);
  margin-bottom: 4px;
}

.include-card__desc {
  font-size: 0.85rem;
  color: var(--texto-muted);
  line-height: 1.5;
}

/* === PLANES === */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.plan-card {
  background: var(--azul-card);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plan-card--featured {
  background: linear-gradient(135deg, #1e4a7d 0%, #163763 100%);
  border-color: var(--verde);
  box-shadow: 0 0 0 1px var(--verde), var(--shadow-lg);
}

.plan-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--verde);
  color: var(--blanco);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.plan-card__name {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--blanco);
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 8px 0;
}

.plan-card__currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--verde-claro);
}

.plan-card__amount {
  font-family: var(--font-titulo);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--verde-claro);
  line-height: 1;
}

.plan-card__ideal {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  line-height: 1.5;
}

.plan-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.plan-card__features li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  font-weight: 500;
}

.plan-card__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-card__delivery {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

.plan-card__delivery strong {
  color: var(--verde-claro);
}

/* Extra card */
.extra-card {
  background: var(--azul-card);
  border: 1.5px dashed rgba(52,211,153,0.4);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  transition: transform var(--transition);
}

.extra-card:hover {
  transform: translateY(-2px);
}

.extra-card__icon {
  font-size: 2.4rem;
  flex-shrink: 0;
}

.extra-card__content {
  flex: 1;
  min-width: 200px;
}

.extra-card__title {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--blanco);
  margin-bottom: 6px;
}

.extra-card__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

.extra-card__price {
  font-family: var(--font-titulo);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--verde-claro);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Tabla extras */
.extras-table-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.extras-table__title {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blanco);
  padding: 20px 24px 12px;
}

.extras-table {
  width: 100%;
  border-collapse: collapse;
}

.extras-table thead {
  background: rgba(255,255,255,0.05);
}

.extras-table th {
  text-align: left;
  padding: 10px 24px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.extras-table td {
  padding: 12px 24px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  border-top: 1px solid rgba(255,255,255,0.05);
  font-weight: 500;
}

.extras-table tr:hover td {
  background: rgba(255,255,255,0.03);
}

.extras-table td:last-child {
  color: var(--verde-claro);
  font-weight: 700;
}

.extras-table__note {
  padding: 14px 24px 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* === TESTIMONIOS === */
.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonio-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), background var(--transition);
}

.testimonio-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
}

.testimonio-card__stars {
  font-size: 1.1rem;
  color: #fbbf24;
  letter-spacing: 2px;
}

.testimonio-card__quote {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  font-style: italic;
  font-weight: 400;
  flex: 1;
  quotes: "\201C" "\201D";
}

.testimonio-card__quote::before {
  content: open-quote;
  font-family: var(--font-titulo);
  font-size: 1.4rem;
  color: var(--verde-claro);
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 4px;
}

.testimonio-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonio-card__avatar {
  font-size: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonio-card__name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blanco);
}

.testimonio-card__biz {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--gris-medio);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:has(.faq-item__question[aria-expanded="true"]) {
  border-color: var(--verde);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-cuerpo);
  color: var(--texto);
  background: transparent;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}

.faq-item__question:hover {
  color: var(--verde);
  background: #f0fdf8;
}

.faq-item__question[aria-expanded="true"] {
  color: var(--verde);
  background: #f0fdf8;
}

.faq-item__chevron {
  font-size: 0.7rem;
  color: var(--verde);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item__question[aria-expanded="true"] .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
  padding: 0 20px;
}

.faq-item__answer.open {
  max-height: 400px;
  padding: 0 20px 18px;
}

.faq-item__answer p {
  font-size: 0.93rem;
  color: var(--texto-muted);
  line-height: 1.7;
}

/* === CTA FINAL === */
.cta-content {
  text-align: center;
}

.cta__title {
  font-family: var(--font-titulo);
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--blanco);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  font-weight: 500;
}

.cta__trust {
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* === FOOTER === */
.footer {
  background: var(--azul-oscuro);
  padding: 56px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--blanco);
  margin-bottom: 10px;
}

.footer__slogan {
  font-size: 0.9rem;
  color: var(--verde-claro);
  font-weight: 600;
  margin-bottom: 10px;
}

.footer__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 300px;
}

.footer__nav-title {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer__nav ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer__nav a,
.footer__contact a,
.footer__contact span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__nav a:hover,
.footer__contact a:hover {
  color: var(--verde-claro);
}

.footer__social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  transition: all var(--transition);
}

.footer__social-btn:hover {
  background: rgba(255,255,255,0.12);
  color: var(--blanco);
  transform: translateX(4px);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* === WHATSAPP FLOTANTE === */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--verde);
  color: var(--blanco);
  border-radius: var(--radius-pill);
  padding: 14px 14px;
  box-shadow: 0 4px 24px rgba(5,150,105,0.5);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  will-change: transform;
  animation: waPulse 2.5s infinite;
}

.wa-float:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 32px rgba(5,150,105,0.65);
  animation: none;
}

.wa-float__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.wa-float__icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.wa-float__text {
  display: none;
  white-space: nowrap;
}

/* === KEYFRAMES === */
/* waPulse usa solo transform — compositable por GPU, sin reflow ni CLS */
@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.7; }
}

@keyframes badgePop {
  from { opacity: 0; transform: scale(0.8) translateY(-6px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* === LINK HIGHLIGHT NAVBAR (Muestras) === */
.navbar__link--highlight {
  color: var(--verde-claro) !important;
  position: relative;
}
.navbar__link--highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--verde-claro);
  border-radius: 2px;
  opacity: 0.6;
}
.navbar.scrolled .navbar__link--highlight {
  color: var(--verde) !important;
}
.navbar.scrolled .navbar__link--highlight::after {
  background: var(--verde);
}

/* === SECCIÓN MUESTRAS CTA === */
.section--muestras {
  background: linear-gradient(160deg, var(--azul-oscuro) 0%, var(--azul-medio) 100%);
  overflow: hidden;
}

.muestras-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.muestras-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.88);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.muestras-cta__title {
  font-family: var(--font-titulo);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--blanco);
  line-height: 1.15;
  margin-bottom: 16px;
}

.muestras-cta__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-weight: 500;
  max-width: 520px;
  margin-bottom: 24px;
}

.muestras-cta__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.muestras-cta__stat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

.muestras-cta__stat strong {
  color: var(--verde-claro);
  font-weight: 800;
}

.muestras-cta__btn {
  align-self: flex-start;
}

/* Preview decorativo — pantallitas flotantes */
.muestras-cta__preview {
  position: relative;
  height: 260px;
  display: none;
}

.muestras-cta__screen {
  position: absolute;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  animation: floatCard 4s ease-in-out infinite;
}

.muestras-cta__screen--1 { top: 0;    left: 0;   animation-delay: 0s; }
.muestras-cta__screen--2 { top: 30px; left: 130px; animation-delay: 0.4s; }
.muestras-cta__screen--3 { top: 80px; left: 20px;  animation-delay: 0.8s; }
.muestras-cta__screen--4 { top: 130px;left: 150px; animation-delay: 1.2s; }
.muestras-cta__screen--5 { top: 175px;left: 10px;  animation-delay: 1.6s; }
.muestras-cta__screen--6 { top: 210px;left: 140px; animation-delay: 2s; }

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

@media (min-width: 768px) {
  .muestras-cta {
    grid-template-columns: 1fr 1fr;
  }
  .muestras-cta__preview {
    display: block;
  }
}

@media (min-width: 1024px) {
  .muestras-cta {
    grid-template-columns: 3fr 2fr;
    gap: 60px;
  }
  .muestras-cta__preview {
    height: 300px;
  }
}

   ============================================================ */
@media (min-width: 480px) {
  .hero__stats {
    max-width: 100%;
  }

  .includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wa-float {
    padding: 13px 20px;
  }

  .wa-float__text {
    display: block;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (min-width: 768px) {

  :root {
    --section-py: 88px;
  }

  /* Navbar */
  .navbar__hamburger {
    display: none;
  }

  .navbar__links {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 148px 0 100px;
  }

  .hero__stats {
    grid-template-columns: repeat(3, auto);
    justify-content: flex-start;
  }

  .stat-card {
    min-width: 130px;
  }

  /* Features */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Rubros */
  .rubros-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  /* Steps horizontal */
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: start;
  }

  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
  }

  .step__number {
    margin-bottom: 12px;
  }

  .step__icon {
    font-size: 2rem;
    padding: 0 0 8px;
  }

  .step__title {
    font-size: 1.05rem;
    margin-bottom: 8px;
    padding: 0;
  }

  .step__desc {
    font-size: 0.9rem;
    max-width: 220px;
  }

  /* Conector horizontal entre pasos */
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 22px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--verde), rgba(5,150,105,0.3));
    z-index: 1;
  }

  /* Includes */
  .includes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Plans */
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testimonios */
  .testimonios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (min-width: 1024px) {

  :root {
    --section-py: 100px;
  }

  /* Hero */
  .hero {
    padding: 160px 0 120px;
    min-height: auto;
  }

  /* Features */
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Rubros */
  .rubros-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }

  .rubro-item {
    padding: 16px 10px;
    font-size: 0.8rem;
  }

  .rubro-item__icon {
    font-size: 1.8rem;
  }

  /* Plans */
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Testimonios */
  .testimonios-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}