/* =============================================
   PRIMASITO — styles.css
   Palette: #1A1512 / #F5F1E8 / #C42B2B (CTA) / #9E6040 (brand) / #B89030 (oro)
   Typo: Playfair Display (titoli) + Inter (corpo)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --negro:      #1A1512;   /* nero caldo — testo principale */
  --blanco:     #FFFFFF;
  --ivoire:     #F5F1E8;   /* crema calda — sfondo pagina */
  --amarillo:   #C42B2B;   /* rosso italiano — CTA principale */
  --azul:       #9E6040;   /* terracotta scuro — colore marca */
  --terracota:  #B89030;   /* oro — accento decorativo */
  --gris:       #EBE6D8;   /* sabbia — sfondo sezioni alt */
  --gris-mid:   #8B857A;
  --gris-borde: #D4CEBD;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1400px;
  --px: clamp(1.25rem, 2.5vw, 2rem);
  --radius: 6px;
  --radius-lg: 14px;
  --transition: 0.2s ease;
}

html { font-size: 16px; overflow-x: hidden; } /* overflow-x en html evita el bug de Safari que recorta elementos con transform */

body {
  font-family: var(--font-body);
  background: var(--ivoire);
  color: var(--negro);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ---- Animaciones de entrada ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Botones ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: none; }

.btn-primary {
  background: var(--amarillo);
  color: #fff;
  border-color: var(--amarillo);
}
.btn-primary:hover { background: #A02222; border-color: #A02222; }

.btn-outline {
  background: transparent;
  color: var(--blanco);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--blanco); background: rgba(255,255,255,0.06); }

.btn-outline-dark {
  background: transparent;
  color: var(--negro);
  border-color: var(--negro);
}
.btn-outline-dark:hover { background: var(--negro); color: var(--blanco); }

.btn-dark {
  background: var(--negro);
  color: var(--blanco);
  border-color: var(--negro);
}
.btn-dark:hover { background: rgba(26,26,46,0.85); }

.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.05rem; }

/* ---- Etiqueta de sección ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}
.label-yellow { background: var(--amarillo); color: var(--negro); }
.label-dark   { background: var(--negro);    color: var(--amarillo); }
.label-blue   { background: var(--azul);     color: var(--blanco); }
.label-gray   { background: var(--gris);     color: var(--negro); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--px);
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(26,26,46,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
  transform: translateZ(0);
}

.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 34px; height: 34px;
  background: var(--amarillo);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blanco);
  line-height: 1;
}
.nav-logo-text span { color: var(--amarillo); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--blanco); }

.nav-cta { margin-left: 0.5rem; }
.nav-cta .btn { padding: 0.6rem 1.25rem; font-size: 0.875rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--blanco);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--negro);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem var(--px) 2rem;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ============================================================
   HERO
   ============================================================ */
/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}

/* Hero background — parallax outer + Ken Burns inner */
@keyframes heroKenBurns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}

.hero-bg {
  position: absolute;
  inset: -40px;
  will-change: transform;
}

.hero-bg-inner {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/magnific_imagen-realistica-gracios_tfn9BPGmZJ.png');
  background-size: cover;
  background-position: center top;
  animation: heroKenBurns 25s ease-in-out infinite alternate;
  will-change: transform;
}

/* Directional overlay: dark left → transparent right */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,8,6,0.88) 0%,
    rgba(10,8,6,0.72) 35%,
    rgba(10,8,6,0.35) 60%,
    rgba(10,8,6,0.10) 100%
  );
  z-index: 2;
}

/* Tech grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,43,43,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,43,43,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 3;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 4;
  padding-top: 68px;
}

.hero-content {
  max-width: 520px;
  margin: 0;
  text-align: left;
  padding: 3rem 0 7rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196,43,43,0.15);
  border: 1px solid rgba(196,43,43,0.35);
  border-radius: 99px;
  padding: 0.35rem 0.9rem;
  color: #E87070;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-kicker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amarillo);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--blanco);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title em {
  font-style: normal;
  color: var(--amarillo);
}

/* Phrase highlight on hover */
.hero-title .hw {
  display: inline;
  transition: color 0.3s ease, text-shadow 0.3s ease, opacity 0.3s ease;
  cursor: default;
}
/* Cuando el cursor está sobre el título, atenúa todas las frases */
.hero-title:hover .hw {
  opacity: 0.45;
}
/* La frase activa resalta con brillo */
.hero-title:hover .hw:hover {
  opacity: 1;
  color: #fff;
  text-shadow:
    0 0 15px rgba(255,230,160,1),
    0 0 35px rgba(255,190,80,0.75),
    0 0 70px rgba(255,140,30,0.45);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 0 1.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
  justify-content: flex-start;
}

.hero-microcopy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.hero-microcopy span {
  display: flex; align-items: center; gap: 0.4rem;
}
.hero-microcopy svg { flex-shrink: 0; }


/* Scroll hint — ratón animado */
@keyframes scrollWheel {
  0%   { transform: translateY(0);   opacity: 1; }
  60%  { transform: translateY(6px); opacity: 0.2; }
  100% { transform: translateY(0);   opacity: 1; }
}
@keyframes scrollHintBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  animation: scrollHintBounce 2.2s ease-in-out infinite;
  opacity: 0.7;
  transition: opacity 0.5s ease;
}
.scroll-hint:hover { opacity: 1; }
.scroll-hint.hidden {
  opacity: 0;
  pointer-events: none;
  animation: none;
}

.scroll-hint-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  box-shadow: 0 0 12px rgba(255,255,255,0.15);
}

.scroll-hint-wheel {
  width: 3px;
  height: 7px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  animation: scrollWheel 1.6s ease-in-out infinite;
}

/* ============================================================
   PROBLEMA
   ============================================================ */
.problema {
  background: var(--gris);
  padding: 6rem 0;
}

.problema-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problema-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.problema-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 2rem;
}

.problema-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.problema-pill {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  color: #555;
}
.problema-pill.active {
  background: var(--negro);
  color: var(--amarillo);
  border-color: var(--negro);
}

.problema-photo-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.problema-photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 340px;
}

.problema-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.88) 0%, rgba(26,26,46,0) 100%);
  padding: 2.5rem 1.75rem 1.75rem;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blanco);
  line-height: 1.4;
}

.problema-photo-quote-mark {
  color: var(--amarillo);
  font-size: 2rem;
  line-height: 0.5;
  vertical-align: -0.3em;
  margin-right: 0.15em;
}

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.como-funciona {
  background: var(--negro);
  padding: 6rem 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-title-light { color: var(--blanco); }
.section-title-dark  { color: var(--negro); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section-header .section-title { margin-bottom: 1rem; }
.section-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.section-header.dark-bg p { color: rgba(0,0,0,0.55); }

.pasos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.paso {
  background: var(--negro);
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: background var(--transition);
}
.paso:hover { background: #1a1a1a; }

.paso-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.paso-icon {
  width: 44px; height: 44px;
  background: rgba(196,43,43,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.paso-icon svg { color: var(--amarillo); }

.paso-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blanco);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.paso-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.paso-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.badge-gratis { background: rgba(196,43,43,0.12); color: var(--amarillo); }
.badge-pago   { background: rgba(45,58,140,0.15);  color: #93C5FD; }

/* ============================================================
   QUÉ INCLUYE
   ============================================================ */
.incluye {
  background: var(--blanco);
  padding: 6rem 0;
}

.incluye-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.incluye-price-block {
  background: var(--negro);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: sticky;
  top: 90px;
}

.incluye-price-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}

.incluye-price {
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--amarillo);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.25rem;
}
.incluye-price-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
}

.incluye-price-free {
  background: rgba(196,43,43,0.07);
  border: 1px solid rgba(196,43,43,0.15);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
}
.incluye-price-free p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.incluye-price-free strong { color: var(--amarillo); }

.incluye-cta { width: 100%; justify-content: center; }

.incluye-divider {
  height: 1px; background: rgba(255,255,255,0.08);
  margin: 1.75rem 0;
}

.incluye-guarantee {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}
.incluye-guarantee svg { flex-shrink: 0; margin-top: 1px; }

/* Items list */
.incluye-items-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.incluye-items-sub {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.incluye-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.incluye-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: var(--gris);
  border-radius: var(--radius);
  transition: background var(--transition);
}
.incluye-item:hover { background: #ebebeb; }

.incluye-item-icon {
  width: 28px; height: 28px;
  background: var(--negro);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.incluye-item-icon svg { color: var(--amarillo); }

.incluye-item-text {
  flex: 1;
}
.incluye-item-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.incluye-item-text span {
  font-size: 0.8rem;
  color: #555;
}

/* No incluye note */
.no-incluye-note {
  background: #FFF8E0;
  border-left: 3px solid var(--amarillo);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
}
.no-incluye-note p {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.6;
}
.no-incluye-note strong { color: var(--negro); }

/* ============================================================
   LO QUE NO HACEMOS
   ============================================================ */
.no-hacemos {
  background: var(--gris);
  padding: 6rem 0;
  border-top: 2px solid var(--gris-borde);
}

.no-hacemos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.no-hacemos-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.no-hacemos-subtitle {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.no-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.no-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.25rem;
  background: var(--blanco);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  border: 1px solid var(--gris-borde);
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.no-item-x {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #FFE5E5;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #CC2200;
}

.no-hacemos-closing {
  background: var(--negro);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  margin-top: 1rem;
}
.no-hacemos-closing p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-style: italic;
}
.no-hacemos-closing p strong {
  color: var(--amarillo);
  font-style: normal;
}

/* ============================================================
   PACKS
   ============================================================ */
.packs {
  background: var(--blanco);
  padding: 6rem 0;
  border-top: 2px solid var(--gris-borde);
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.pack-card {
  background: var(--gris);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.pack-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amarillo);
  opacity: 0;
  transition: opacity var(--transition);
}
.pack-card:hover {
  border-color: var(--gris-borde);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.pack-card:hover::before { opacity: 1; }

.pack-icon {
  width: 44px; height: 44px;
  background: var(--negro);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.pack-icon svg { color: var(--amarillo); }

.pack-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.pack-price {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--azul);
  margin-bottom: 0.25rem;
  letter-spacing: -0.03em;
}
.pack-price-note {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 1.25rem;
}

.pack-desc {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.65;
}

.packs-footer-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: #666;
}

/* ============================================================
   TARIFAS ESCALABLES
   ============================================================ */
.tarifas {
  background: var(--gris);
  padding: 6rem 0;
  border-top: 2px solid var(--gris-borde);
}
.tarifas .section-header { text-align: center; }
.tarifas .section-header p { color: #555; }
.tarifas .pack-card { background: var(--blanco); }
.tarifas .packs-grid { grid-template-columns: repeat(5, 1fr); }
.pack-card-soft {
  border: 2px dashed var(--gris-borde) !important;
  background: transparent !important;
}
.pack-card-soft .pack-price {
  font-size: 1.1rem;
  color: var(--negro);
  letter-spacing: 0;
}
@media (max-width: 1200px) {
  .tarifas .packs-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .tarifas .packs-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .tarifas .packs-grid { grid-template-columns: 1fr; }
}
.pack-tier-btn {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.5rem 1.1rem;
  background: #C42B2B;
  color: #111;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background 0.15s;
}
.pack-tier-btn:hover { background: #e6be00; }
.pack-tier-btn-soft {
  background: transparent;
  border: 1px solid var(--gris-borde);
  color: #555;
}
.pack-tier-btn-soft:hover { background: var(--gris); color: #333; }

/* ============================================================
   MANTENIMIENTO
   ============================================================ */
.mante {
  background: var(--negro);
  padding: 4.5rem 0;
}
.mante-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.mante-text { flex: 1; }
.mante-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--blanco);
  margin: 0.75rem 0 1rem;
  line-height: 1.15;
}
.mante-text > p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 480px;
}
.mante-badge {
  flex-shrink: 0;
  background: var(--amarillo);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mante-badge-gratis {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--negro);
  color: var(--amarillo);
  border-radius: 20px;
  padding: 0.2rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.mante-badge-precio {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--negro);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.15rem;
}
.mante-badge-mes {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
}
.mante-badge-nota {
  font-size: 0.73rem;
  color: rgba(0,0,0,0.7);
  margin-top: 0.5rem;
}
.form-field select option { background: #111; color: #fff; }
@media (max-width: 768px) {
  .mante-inner { flex-direction: column; }
  .mante-badge { width: 100%; }
}

/* ============================================================
   EJEMPLOS
   ============================================================ */
.ejemplos {
  background: var(--negro);
  padding: 6rem 0;
  border-top: 2px solid rgba(255,255,255,0.12);
}

.ejemplos-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto;
}

.ejemplo-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 99px;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  cursor: default;
}
.ejemplo-tag:hover {
  background: rgba(196,43,43,0.08);
  border-color: rgba(196,43,43,0.25);
  color: var(--amarillo);
}
.ejemplo-tag svg { opacity: 0.5; flex-shrink: 0; }
.ejemplo-tag:hover svg { opacity: 1; }

/* ============================================================
   TRABAJOS / PORTFOLIO
   ============================================================ */
.trabajos {
  background: #1a1a1a;
  padding: 6rem 0;
  border-top: 2px solid rgba(255,255,255,0.12);
}

.trabajos-carousel-outer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.trabajos-carousel-clip {
  flex: 1;
  overflow: hidden;
  contain: paint;
}

.trabajos-carousel {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.trabajos-item {
  flex: 0 0 calc(33.333% - 1rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #242424;
  cursor: pointer;
  border-top: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trabajos-item--featured {
  border-top-color: var(--amarillo);
}

.trabajos-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}

/* Barre navigateur simulée */
.trabajos-browser {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.75rem;
  height: 36px;
  background: #2e2e2e;
}

.browser-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.bd-red    { background: #FF5F57; }
.bd-yellow { background: #FEBC2E; }
.bd-green  { background: #28C840; }

.browser-url {
  flex: 1;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 2px 8px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.trabajos-item--featured .browser-url {
  color: var(--amarillo);
}

.browser-open {
  flex-shrink: 0;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color var(--transition);
}

.browser-open:hover { color: var(--amarillo); }

.trabajos-img-wrap {
  overflow: hidden;
  line-height: 0;
  aspect-ratio: 16 / 9;
}

.trabajos-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), opacity var(--transition);
}
.carousel-arrow:hover:not(:disabled) {
  background: var(--amarillo);
  color: var(--negro);
  border-color: var(--amarillo);
}
.carousel-arrow:disabled {
  opacity: 0.2;
  cursor: default;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 2rem;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  background-clip: content-box;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin: -8px;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active {
  background: var(--amarillo);
  background-clip: content-box;
  transform: scale(1.25);
}

.confianza-quote-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.confianza-photo {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.confianza-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

/* Modal portfolio preview */
#portfolioModal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

#portfolioModal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.portfolio-modal-inner {
  background: #1e1e1e;
  border-radius: 12px;
  max-width: 960px;
  width: 100%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.94);
  transition: transform 0.25s ease;
}

#portfolioModal.is-open .portfolio-modal-inner {
  transform: scale(1);
}

.portfolio-modal-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
  height: 44px;
  background: #2e2e2e;
  flex-shrink: 0;
}

.portfolio-modal-bar .browser-url {
  font-size: 0.75rem;
}

.portfolio-modal-visit {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--amarillo);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition);
}

.portfolio-modal-visit:hover { background: #A02222; color: #fff; }

.portfolio-modal-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
  transition: background var(--transition), color var(--transition);
}

.portfolio-modal-close:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
}

.portfolio-modal-scroll {
  overflow-y: auto;
  flex: 1;
  overscroll-behavior: contain;
}

.portfolio-modal-scroll img {
  width: 100%;
  display: block;
}

/* ============================================================
   CONFIANZA
   ============================================================ */
.confianza {
  background: var(--amarillo);
  padding: 6rem 0;
}

.confianza-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.confianza-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--negro);
  margin-bottom: 1.25rem;
}

.confianza-text {
  font-size: 1.05rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.confianza-stats {
  display: flex;
  gap: 2.5rem;
}
.confianza-stat-num {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--negro);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.confianza-stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(0,0,0,0.55);
  line-height: 1.4;
}

.confianza-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-content: start;
}

.confianza-quote-card {
  background: var(--negro);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
}
.confianza-quote-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1rem;
}
.confianza-quote-text::before { content: '"'; color: var(--amarillo); font-size: 1.2rem; font-style: normal; }
.confianza-quote-author {
  display: flex; align-items: center; gap: 0.75rem;
}
.confianza-quote-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(196,43,43,0.12);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amarillo);
}
.confianza-quote-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.confianza-quote-role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contacto {
  background: var(--blanco);
  padding: 6rem 0;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contacto-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.contacto-sub {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contacto-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contacto-feature {
  display: flex; align-items: flex-start; gap: 0.875rem;
}
.contacto-feature-icon {
  width: 34px; height: 34px;
  background: var(--gris);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contacto-feature-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.contacto-feature-text span {
  font-size: 0.82rem;
  color: #555;
}

/* Steps de proceso en sección contacto */
.contacto-steps {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.contacto-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
  min-width: 140px;
}
.contacto-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--negro);
  color: var(--amarillo);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.contacto-step-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  line-height: 1.3;
}
.contacto-step-text span {
  font-size: 0.78rem;
  color: #555;
  line-height: 1.4;
}
.contacto-step-arrow {
  flex-shrink: 0;
  margin-top: 6px;
  color: #ccc;
}
.contacto-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #888;
  line-height: 1.55;
  margin-top: 0.5rem;
}
.contacto-note svg { flex-shrink: 0; margin-top: 1px; }

@media (max-width: 600px) {
  .contacto-steps { flex-direction: column; gap: 0.75rem; }
  .contacto-step-arrow { transform: rotate(90deg); margin: 0 0 0 6px; }
}

/* Form */
.contact-form {
  background: var(--negro);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blanco);
  margin-bottom: 0.35rem;
}
.form-subtitle {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-grid .form-field-full { grid-column: 1 / -1; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--blanco);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--amarillo);
  background: rgba(196,43,43,0.04);
}
.form-field select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-field textarea { resize: vertical; min-height: 90px; }

.form-field-radio {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field-radio label:first-child {
  font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.radio-group {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.25rem;
}
.radio-group label {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 99px;
  padding: 0.35rem 0.85rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  text-transform: none; letter-spacing: 0;
}
.radio-group input[type="radio"] { display: none; }
.radio-group input[type="radio"]:checked + label,
.radio-group label:has(input:checked) { background: rgba(196,43,43,0.1); border-color: rgba(196,43,43,0.25); color: var(--amarillo); }

.form-checkbox {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  line-height: 1.5;
}
.form-checkbox input { display: none; }
.checkbox-box {
  width: 18px; height: 18px; min-width: 18px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  margin-top: 1px;
}
.form-checkbox input:checked ~ .checkbox-box,
.form-checkbox:has(input:checked) .checkbox-box {
  background: var(--amarillo);
  border-color: var(--amarillo);
}
.form-checkbox a { color: var(--amarillo); }

.form-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin-top: 1rem;
}

.form-support {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  line-height: 1.5;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
.form-success-icon {
  width: 56px; height: 56px;
  background: rgba(196,43,43,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.form-success h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blanco);
  margin-bottom: 0.5rem;
}
.form-success p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.form-success-spam {
  margin-top: 1rem;
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.3) !important;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--gris);
  padding: 6rem 0;
  border-top: 2px solid var(--gris-borde);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.faq-sidebar-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.faq-sidebar-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.faq-sidebar-cta { display: inline-flex; }

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

.faq-item {
  background: var(--blanco);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gris-borde);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--negro);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gris); }

.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gris);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--amarillo);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   CIERRE
   ============================================================ */
.cierre {
  background: var(--negro);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cierre-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(196,43,43,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.cierre-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--blanco);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 780px;
  margin: 0 auto 1.5rem;
}
.cierre-title em {
  font-style: normal;
  color: var(--amarillo);
}

.cierre-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.cierre-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cierre-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0D0D1A;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-logo-icon {
  width: 28px; height: 28px;
  background: var(--amarillo);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--blanco);
}
.footer-logo-text span { color: var(--amarillo); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-links {
  display: flex; gap: 1.5rem;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  padding: 4px 0;
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pasos-grid { grid-template-columns: repeat(2, 1fr); }
  .incluye-grid { gap: 2.5rem; }
  .packs-grid { grid-template-columns: 1fr 1fr; }
  .confianza-inner { gap: 2.5rem; }
  .trabajos-item { flex: 0 0 calc(50% - 0.75rem); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-content { padding: 3rem 0; max-width: 100%; text-align: center; }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10,8,6,0.75) 0%,
      rgba(10,8,6,0.55) 50%,
      rgba(10,8,6,0.80) 100%
    );
  }
  .hero-ctas { justify-content: center; }
  .hero-microcopy { justify-content: center; }
  .hero-subtitle { margin: 0 auto 2.25rem; }

  .problema-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .pasos-grid      { grid-template-columns: 1fr; }
  .incluye-grid    { grid-template-columns: 1fr; }
  .incluye-price-block { position: static; }
  .no-hacemos-grid { grid-template-columns: 1fr; gap: 2rem; }
  .packs-grid      { grid-template-columns: 1fr; }
  .confianza-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .confianza-quotes { grid-template-columns: 1fr; }
  .trabajos-item { flex: 0 0 calc(50% - 0.75rem); }
  .trabajos-carousel { gap: 1rem; }
  .contacto-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .faq-grid        { grid-template-columns: 1fr; gap: 2rem; }

  .form-grid { grid-template-columns: 1fr; }

  .cierre-title { font-size: clamp(2rem, 8vw, 3rem); }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }

  .confianza-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cierre-ctas { flex-direction: column; align-items: center; }
  .cierre-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
  .ejemplos-tags { gap: 0.5rem; }
  .trabajos-item { flex: 0 0 calc(100% - 0px); }
  .trabajos-carousel { gap: 0.75rem; }
  .trabajos-cta .btn { width: 100%; max-width: 360px; justify-content: center; }
  .carousel-arrow { width: 36px; height: 36px; }
}

/* ============================================================
   FOOTER EMPRESA
   ============================================================ */
.footer-empresa {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.25rem;
  line-height: 1.5;
}
.footer-empresa a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 2px 0;
}
.footer-empresa a:hover { color: rgba(255,255,255,0.8); }
.footer-logo-group { display: flex; flex-direction: column; gap: 0; }


/* ============================================================
   BANNER COOKIES
   ============================================================ */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.cookie-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner.hidden {
  display: none;
}

.cookie-modal {
  background: var(--blanco);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  width: 100%;
  max-width: 580px;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}
.cookie-brand-icon {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.cookie-brand-logo-icon {
  width: 28px; height: 28px;
  background: var(--amarillo);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cookie-brand-logo-text {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--negro);
}

.cookie-modal-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--negro);
  flex: 1;
  line-height: 1.3;
}
.cookie-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #999;
  line-height: 1;
  padding: 0;
  transition: color var(--transition);
  flex-shrink: 0;
}
.cookie-close-btn:hover { color: var(--negro); }

.cookie-modal-body {
  font-size: 0.875rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cookie-modal-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.btn-cookie {
  flex: 1;
  min-width: 120px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
  text-align: center;
}
.btn-cookie:hover { transform: translateY(-1px); }
.btn-cookie-accept {
  background: var(--azul);
  color: var(--blanco);
  border-color: var(--azul);
}
.btn-cookie-accept:hover { background: #1E3A8A; }
.btn-cookie-deny {
  background: var(--blanco);
  color: var(--negro);
  border-color: #ccc;
}
.btn-cookie-deny:hover { border-color: var(--negro); }
.btn-cookie-prefs {
  background: var(--blanco);
  color: var(--negro);
  border-color: #ccc;
}
.btn-cookie-prefs:hover { border-color: var(--negro); }

.cookie-modal-links {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}
.cookie-modal-links a {
  font-size: 0.8rem;
  color: var(--azul);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.cookie-modal-links a:hover { color: #1E3A8A; }

/* Panel preferencias */
.cookie-prefs-panel {
  display: none;
  margin-bottom: 1.5rem;
}
.cookie-prefs-panel.open { display: block; }
.cookie-prefs-intro {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cookie-category {
  border: 1px solid var(--gris-borde);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  cursor: pointer;
  background: #fafafa;
  gap: 1rem;
}
.cookie-category-info { flex: 1; }
.cookie-category-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--negro);
  display: block;
  margin-bottom: 0.2rem;
}
.cookie-category-desc {
  font-size: 0.78rem;
  color: #777;
  line-height: 1.4;
}
.cookie-toggle {
  width: 40px; height: 22px;
  background: #ddd;
  border-radius: 99px;
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: var(--blanco);
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.cookie-toggle.on {
  background: var(--azul);
}
.cookie-toggle.on::after {
  transform: translateX(18px);
}
.cookie-toggle.locked {
  background: #aaa;
  cursor: not-allowed;
}
.cookie-toggle.locked.on {
  background: #777;
}

@media (max-width: 480px) {
  .cookie-modal-buttons { flex-direction: column; }
  .btn-cookie { flex: none; width: 100%; }
  .cookie-modal { padding: 1.5rem 1.25rem; }
}

/* ============================================================
   CHAT WIDGET
   ============================================================ */
.chat-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  transition: bottom 0.15s ease;
}

/* Panel de chat */
.chat-panel {
  width: 340px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
  display: none;
  flex-direction: column;
  max-height: 480px;
}
.chat-panel.chat-open {
  display: flex;
  animation: chatSlideIn 0.22s ease;
}
@keyframes chatSlideIn {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Header */
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: #1a1a1a;
  flex-shrink: 0;
}
.chat-header-info { display: flex; align-items: center; gap: 0.6rem; }
.chat-header-avatar {
  width: 34px; height: 34px;
  background: #C42B2B;
  color: #111;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.02em;
  flex-shrink: 0;
}
.chat-header-name  { font-size: 0.875rem; font-weight: 700; color: #fff; line-height: 1.2; }
.chat-header-status { font-size: 0.71rem; color: rgba(255,255,255,0.38); margin-top: 1px; }
.chat-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.35);
  padding: 0.25rem; display: flex; align-items: center;
  transition: color 0.15s;
}
.chat-close:hover { color: rgba(255,255,255,0.75); }

/* Mensajes */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.chat-msg { max-width: 86%; }
.chat-msg p { margin: 0; font-size: 0.875rem; line-height: 1.55; }
.chat-msg strong { font-weight: 600; }

.chat-msg-bot p {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px 12px 12px 12px;
  padding: 0.65rem 0.9rem;
  color: rgba(255,255,255,0.85);
}
.chat-msg-bot strong { color: #C42B2B; }

.chat-msg-user { align-self: flex-end; }
.chat-msg-user p {
  background: #C42B2B;
  color: #111;
  border-radius: 12px 12px 4px 12px;
  padding: 0.65rem 0.9rem;
  font-weight: 500;
}

/* Indicador escribiendo */
.chat-typing p {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px 12px 12px 12px;
  padding: 0.7rem 1rem;
}
.chat-typing-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.chat-typing-dots span {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: chatDot 1.2s ease-in-out infinite;
}
.chat-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
  30%           { transform: translateY(-5px); opacity: 1; }
}

/* Input */
.chat-input-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: #1a1a1a;
  flex-shrink: 0;
}
.chat-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  padding: 0.55rem 0.75rem;
  outline: none;
  transition: border-color 0.15s;
}
.chat-input:focus { border-color: #C42B2B; }
.chat-input::placeholder { color: rgba(255,255,255,0.22); }

.chat-send {
  background: #C42B2B;
  color: #111;
  border: none;
  border-radius: 8px;
  width: 34px; height: 34px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.chat-send:hover   { opacity: 0.85; }
.chat-send:disabled { opacity: 0.35; cursor: not-allowed; }

/* Botón toggle */
.chat-toggle {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #C42B2B;
  color: #111;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.2rem 0.7rem 0.85rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.28);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.chat-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(0,0,0,0.35);
}
.chat-toggle-icon { display: flex; align-items: center; }

/* Responsive */
@media (max-width: 480px) {
  .chat-widget { bottom: 1rem; right: 1rem; }
  .chat-panel  { width: calc(100vw - 2rem); max-height: 420px; }
}

/* ============================================================
   MODAL LEGALE — overlay + wrapper
   ============================================================ */
.legal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.legal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.legal-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1001;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}
.legal-modal.visible {
  display: flex;
}
.legal-modal.hidden {
  display: none;
}
.legal-modal-inner {
  background: var(--blanco);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  width: 100%;
  max-width: 600px;
  max-height: min(90vh, 700px);
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}
.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.legal-modal-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--negro);
}
.legal-modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--gris-mid);
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: color 0.15s;
}
.legal-modal-close:hover { color: var(--negro); }
.legal-modal-body {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #444;
}

/* ============================================================
   MODAL DI SUPPORTO — overlay + wrapper
   ============================================================ */
.support-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.support-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.support-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1001;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.support-modal.visible {
  display: flex;
}
.support-modal.hidden {
  display: none;
}

/* ============================================================
   MODAL DE SOPORTE
   ============================================================ */
.support-modal-inner {
  background: var(--negro);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  width: 100%;
  max-width: 420px;
  padding: 2rem;
  position: relative;
  overflow-y: auto;
  scrollbar-gutter: stable both-edges;
}

.support-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: color 0.15s;
}
.support-modal-close:hover { color: rgba(255,255,255,0.9); }
.support-modal-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--blanco);
  margin-bottom: 0.75rem;
}
.support-modal-intro {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.support-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}
.support-field { display: flex; flex-direction: column; gap: 0.35rem; }
.support-field-full { grid-column: 1 / -1; }

.support-field label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.support-label-opt { color: #aaa; font-weight: 400; text-transform: none; letter-spacing: 0; }

.support-field input,
.support-field select,
.support-field textarea {
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--negro);
  outline: none;
  transition: border-color 0.18s, background 0.18s;
  -webkit-appearance: none;
  appearance: none;
}
.support-field input:focus,
.support-field select:focus,
.support-field textarea:focus {
  border-color: var(--azul);
  background: #fff;
}
.support-field input::placeholder,
.support-field textarea::placeholder { color: #bbb; }
.support-field textarea { resize: vertical; min-height: 88px; }
.support-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}

.support-send-error {
  display: none;
  color: #FF4D3D;
  font-size: 0.83rem;
  margin-bottom: 0.75rem;
}
.support-submit-btn { width: 100%; justify-content: center; }

.support-success-icon {
  width: 52px; height: 52px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0.5rem auto 1rem;
}
.support-success-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--negro);
  text-align: center;
  margin-bottom: 0.5rem;
}
.support-success-text {
  font-size: 0.875rem;
  color: #666;
  text-align: center;
  line-height: 1.65;
}

@media (max-width: 480px) {
  .support-form-grid { grid-template-columns: 1fr; }
  .support-modal-inner { max-height: 95vh; }
}

/* =============================================
   OBJECIONES — Lo que dirán de nosotros
   ============================================= */
.objeciones { background: #F3F3F3; padding: 6rem 0; }
.objeciones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.objecion-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.objecion-icon {
  width: 32px; height: 32px;
  background: rgba(0,0,0,0.05);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.85rem;
  color: rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.objecion-quote {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.38);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.objecion-divider { border: none; border-top: 1px solid rgba(0,0,0,0.07); margin: 0 0 0.85rem; }
.objecion-realidad-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #A02222;
  margin-bottom: 0.4rem;
  display: block;
}
.objecion-respuesta {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.62);
  line-height: 1.65;
  flex: 1;
}
.objeciones-cta { margin-top: 3.5rem; text-align: center; }
.objeciones-cta p { font-size: 0.82rem; color: rgba(0,0,0,0.38); margin-top: 0.75rem; }

@media (max-width: 960px) { .objeciones-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .objeciones-grid { grid-template-columns: 1fr; } }

/* =============================================
   DIY vs PROFESIONAL
   ============================================= */
.diy { background: #F3F3F3; padding: 6rem 0; }
.diy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.diy-intro-big {
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
  margin: 1rem 0 1.5rem;
}
.diy-list {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.diy-list-title {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  display: block;
  padding: 0.85rem 1.1rem 0.6rem;
}
.diy-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
  color: #333;
  line-height: 1.5;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.diy-x-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: rgba(239,68,68,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  color: #ef4444;
}
.diy-frustrated {
  background: rgba(196,43,43,0.08);
  border-left: 3px solid var(--amarillo);
  border-radius: 0 8px 8px 0;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.65;
}
.diy-frustrated strong { color: #111; }
.diy-right { position: sticky; top: 100px; }
.diy-callout {
  background: var(--negro);
  border-radius: 16px;
  padding: 2rem;
  color: #fff;
}
.diy-callout-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 0.75rem;
}
.diy-callout-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: #fff;
}
.diy-callout-body {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 0.65rem;
}
.diy-callout-body strong { color: rgba(255,255,255,0.85); }
.diy-callout-diff {
  background: rgba(196,43,43,0.07);
  border: 1px solid rgba(196,43,43,0.15);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  margin-top: 1.25rem;
}
.diy-callout-diff-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amarillo);
  display: block;
  margin-bottom: 0.4rem;
}
.diy-callout-diff p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}
.diy-callout-diff strong { color: rgba(255,255,255,0.9); }

@media (max-width: 860px) {
  .diy-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .diy-right { position: static; }
}

/* =============================================
   GARANTÍAS — Lo que te garantizamos
   ============================================= */
.garantias { background: var(--negro); padding: 6rem 0; }
.garantias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.garantia-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
}
.garantia-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: rgba(196,43,43,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--amarillo);
}
.garantia-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.garantia-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.55;
}
.garantias-cta {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.garantias-cta-title {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.garantias-cta-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.75rem;
}

@media (max-width: 960px) { .garantias-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) {
  .garantias-grid { grid-template-columns: 1fr; }
  .garantias-cta-title { font-size: 1.25rem; }
}

/* ── Jordi Boix — presencia humana (confianza section) ─────────────────── */
.confianza-jordi {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--gris);
  border-radius: 12px;
}
.confianza-jordi-avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--negro);
  color: var(--amarillo);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}
.confianza-jordi-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--negro);
  line-height: 1.2;
}
.confianza-jordi-role {
  font-size: 0.78rem;
  color: rgba(17,17,17,0.45);
  margin-top: 0.15rem;
}
.confianza-jordi-quote {
  font-size: 0.88rem;
  color: rgba(17,17,17,0.65);
  margin-top: 0.55rem;
  line-height: 1.55;
  font-style: italic;
}

/* ── Caso de estudio ───────────────────────────────────────────────────── */
.caso-estudio {
  background: var(--negro);
  padding: 6rem 0;
}
.caso-estudio .section-header { margin-bottom: 2.5rem; }
.caso-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
}
.caso-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.caso-toggle-left {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.caso-chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amarillo);
  background: rgba(196,43,43,0.08);
  border-radius: 100px;
  padding: 0.2em 0.75em;
  width: fit-content;
}
.caso-preview-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.caso-toggle-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background var(--transition), color var(--transition);
}
.caso-card.caso-open .caso-toggle-icon {
  background: rgba(196,43,43,0.12);
  color: var(--amarillo);
}
.caso-body {
  display: none;
  padding: 0 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.caso-card.caso-open .caso-body { display: block; }
.caso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.75rem;
}
.caso-block {
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}
.caso-block-highlight {
  background: rgba(196,43,43,0.05);
  border-color: rgba(196,43,43,0.12);
}
.caso-block-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.65rem;
}
.caso-block p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin: 0;
}
.caso-block-highlight p { color: rgba(255,255,255,0.8); }
.caso-block-highlight strong { color: #fff; }
.caso-footer-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.caso-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--amarillo);
  text-decoration: none;
  transition: opacity var(--transition);
}
.caso-link:hover { opacity: 0.75; }
.caso-disclaimer { display: none; }
@media (max-width: 860px) {
  .caso-grid { grid-template-columns: 1fr; }
  .caso-toggle { padding: 1.25rem 1.5rem; }
  .caso-body { padding: 0 1.5rem 1.5rem; }
}
