/* ══════════════════════════════════════════
   SITELAB · styles.css
   Paleta Cuphead: Rojo #E63946 · Amarillo #F4A825
   Teal #4ECDC4 · Coral #FF6B6B · Mint #95E1D3
   Crema #FFF8E7 · Ink #1A1A2E
   Fuentes: Montserrat 800 (títulos) + Plus Jakarta Sans (cuerpo)
   ══════════════════════════════════════════ */

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

:root {
  --red:        #E63946;
  --red-dim:    rgba(230,57,70,0.10);
  --red-dark:   #c02535;
  --yellow:     #F4A825;
  --yellow-dim: rgba(244,168,37,0.13);
  --yellow-light: #ffc85a;
  --teal:       #4ECDC4;
  --teal-dim:   rgba(78,205,196,0.12);
  --teal-dark:  #36b0a7;
  --coral:      #FF6B6B;
  --coral-dim:  rgba(255,107,107,0.12);
  --mint:       #95E1D3;
  --mint-dim:   rgba(149,225,211,0.18);
  --cream:      #FFF8E7;
  --ink:        #1A1A2E;
  --ink-soft:   #252540;


  --black:      #1A1A2E;
  --black-soft: #252540;
  --green:      #4ECDC4;
  --green-dark: #36b0a7;
  --green-dim:  rgba(78,205,196,0.12);

  /* Light mode */
  --bg:         #FFFFFF;
  --bg-cream:   #FFF8E7;
  --bg-blush:   #FFF2F2;
  --bg-mist:    #F0FEFA;
  --bg-alt:     #F9F7F2;
  --surface:    #FFFFFF;
  --text:       #1A1A2E;
  --text-muted: #5c5c7a;
  --text-faint: #b8b8cc;
  --border:     rgba(26,26,46,0.08);
  --border-strong: rgba(26,26,46,0.15);
  --shadow:     0 4px 24px rgba(26,26,46,0.08);
  --shadow-lg:  0 14px 52px rgba(26,26,46,0.14);
  --t:          0.36s cubic-bezier(0.25,0.46,0.45,0.94);
  --t-fast:     0.16s ease;
}

[data-theme="dark"] {
  --bg:         #0f0f1a;
  --bg-cream:   #161622;
  --bg-blush:   #1a1018;
  --bg-mist:    #0f1a18;
  --bg-alt:     #141420;
  --surface:    #1e1e30;
  --text:       #f0eee8;
  --text-muted: #8888aa;
  --text-faint: #3a3a55;
  --border:     rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.13);
  --shadow:     0 4px 24px rgba(0,0,0,0.45);
  --shadow-lg:  0 14px 52px rgba(0,0,0,0.6);
}

html { 
scroll-behavior: smooth; }
body { 
font-family: 'Plus Jakarta Sans', sans-serif; 
background: var(--bg); 
color: var(--text); 
overflow-x: hidden; 
transition: background var(--t), color var(--t); }

::-webkit-scrollbar { 
  width: 4px; }

::-webkit-scrollbar-track { 
  background: var(--bg); }

::-webkit-scrollbar-thumb { 
  background: var(--red); 
  border-radius: 2px; }

.container { 
  max-width: 1160px; 
  margin: 0 auto; 
  padding: 0 28px; }

section { 
  padding: 96px 0; }

/* ── SHARED TOKENS ── */
.tag {
  display: inline-block; 
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: 2.5px; 
  text-transform: uppercase;
  color: var(--ink); 
  background: var(--yellow-dim); 
  border: 1.5px solid var(--yellow);
  padding: 5px 14px; 
  border-radius: 6px; 
  margin-bottom: 16px;
  box-shadow: 2px 2px 0 rgba(26,26,46,0.12);
}
[data-theme="dark"] .tag { color: var(--yellow); }

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 3.8vw, 50px); 
  font-weight: 800; line-height: 1.1; 
  letter-spacing: -0.3px; 
  color: var(--text);
}
.section-sub { 
  font-size: 16px; 
  color: var(--text-muted); 
  line-height: 1.75; 
  max-width: 480px; 
  margin-top: 14px; }

.section-sub.center-text { 
  margin: 14px auto 0; 
  text-align: center; }

.section-header { 
  margin-bottom: 60px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; 
  align-items: center; 
  gap: 6px;
  background: var(--ink); 
  color: #fff; 
  padding: 14px 28px; 
  border-radius: 8px;
  font-weight: 700; 
  font-size: 14px; 
  text-decoration: none;
  border: 2px solid var(--ink); 
  box-shadow: 3px 3px 0 var(--yellow);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.btn-primary:hover { 
  transform: translate(-2px,-2px); 
  box-shadow: 5px 5px 0 var(--yellow); }

.btn-primary:active { 
  transform: translate(1px,1px); 
  box-shadow: 1px 1px 0 var(--yellow); }
[data-theme="dark"] .btn-primary { 
  background: var(--red); 
  border-color: var(--red); 
  box-shadow: 3px 3px 0 var(--yellow); }

.btn-ghost {
  display: inline-flex; 
  align-items: center; 
  gap: 6px;
  background: transparent; 
  color: var(--text); 
  padding: 13px 26px; 
  border-radius: 8px;
  font-weight: 600; 
  font-size: 14px; 
  text-decoration: none; 
  border: 2px solid var(--border-strong);
  transition: border-color var(--t), background var(--t), color var(--t);
}
.btn-ghost:hover { 
  border-color: var(--teal); 
  background: var(--teal-dim); 
  color: var(--teal-dark); }

.btn-wsp {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  background: #25d366; 
  color: #fff; 
  padding: 14px 28px; 
  border-radius: 8px;
  font-weight: 700; 
  font-size: 14px; 
  text-decoration: none;
  border: 2px solid #1db954; 
  box-shadow: 3px 3px 0 rgba(0,0,0,0.15);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.btn-wsp:hover { 
  transform: translate(-2px,-2px); 
  box-shadow: 5px 5px 0 rgba(0,0,0,0.18); }

.btn-lg { 
  padding: 16px 34px; font-size: 15px; }

.btn-cta-primary {
  display: inline-flex;
   align-items: center; 
   gap: 6px;
  background: var(--yellow); 
  color: var(--ink); 
  padding: 15px 30px; 
  border-radius: 8px;
  font-weight: 800; 
  font-size: 14px; 
  text-decoration: none;
  border: 2px solid var(--ink); 
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.btn-cta-primary:hover { 
  transform: translate(-2px,-2px); 
  box-shadow: 5px 5px 0 var(--ink); }

/* ── NAV ── */
nav {
  position: fixed; 
  top: 0; left: 0; right: 0; z-index: 100; 
  padding: 0 40px; height: 66px;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  background: rgba(255,255,255,0.93); 
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--border); 
  transition: box-shadow var(--t), background var(--t);
}
[data-theme="dark"] nav { 
  background: rgba(15,15,26,0.94); }

nav.scrolled { 
  box-shadow: 0 4px 0 rgba(26,26,46,0.07); }

.nav-logo { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 20px; 
  font-weight: 800; 
  letter-spacing: -0.3px; 
  text-decoration: none; 
  color: var(--text); 
  display: flex; 
  align-items: center; 
  gap: 8px; }

.nav-logo img {
  width: 85px;
  height: 85px;
  object-fit: contain;
  display: block;
}
.nav-links { 
  display: flex; 
  align-items: center; 
  gap: 2px; list-style: none; }

.nav-links a { 
  font-size: 13px; 
  font-weight: 600; 
  color: var(--text-muted); 
  text-decoration: none; 
  padding: 7px 13px; 
  border-radius: 6px; 
  transition: color var(--t), background var(--t); }

.nav-links a:hover { 
  color: var(--text); 
  background: var(--bg-cream); }

[data-theme="dark"] .nav-links a:hover { 
  background: var(--bg-alt); }

.nav-links .nav-contacto { 
  color: var(--text); }

.nav-links .nav-cta { 
  background: var(--red); 
  color: #fff !important; 
  font-weight: 700; 
  margin-left: 6px; 
  border-radius: 6px; 
  border: 2px solid var(--ink);
   box-shadow: 2px 2px 0 var(--ink); 
   transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t); }

.nav-links .nav-cta:hover { 
  background: var(--red-dark); 
  transform: translate(-1px,-1px); 
  box-shadow: 3px 3px 0 var(--ink); }

.nav-right { 
  display: flex; 
  align-items: center; 
  gap: 8px; }
.nav-back { 
  display: inline-flex; 
  align-items: center; 
  gap: 5px; font-size: 13px; 
  font-weight: 600; 
  color: var(--text-muted); 
  text-decoration: none; 
  padding: 7px 13px; 
  border-radius: 6px; 
  border: 1.5px solid var(--border-strong); 
  margin-right: 6px; 
  transition: color var(--t), border-color var(--t), background var(--t); }

.nav-back:hover { 
  color: var(--red); 
  border-color: var(--red); 
  background: var(--red-dim); }

.theme-toggle { 
  width: 38px; 
  height: 38px; 
  border-radius: 6px; 
  border: 2px solid var(--border-strong); 
  background: var(--surface); 
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--text-muted); transition: border-color var(--t), color var(--t); }

.theme-toggle:hover { 
  border-color: var(--teal); 
  color: var(--teal-dark); }
[data-theme="dark"] .theme-toggle:hover { 
  color: var(--teal); }
[data-theme="light"] .icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }

/* TTS — mismo tamaño que el theme toggle */
.tts-toggle {
  width: 38px; height: 38px; 
  border-radius: 6px;
  border: 2px solid var(--border-strong); 
  background: var(--surface);
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--t), color var(--t), background var(--t);
  position: relative;
}
.tts-toggle:hover { border-color: var(--red); color: var(--red); }
.tts-toggle.tts-active {
  border-color: var(--red); color: var(--red);
  background: var(--red-dim);
  animation: tts-pulse 1.8s ease-in-out infinite;
}
@keyframes tts-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,57,70,0); }
  50%       { box-shadow: 0 0 0 5px rgba(230,57,70,0.18); }
}

/* ── Menú hamburguesa ── */
.nav-hamburger {
  display: none;
  flex-direction: column; 
  justify-content: center; 
  align-items: center;
  gap: 5px; width: 38px; 
  height: 38px; 
  border-radius: 6px;
  border: 2px solid var(--border-strong); 
  background: var(--surface);
  cursor: pointer; 
  padding: 0;
}
.nav-hamburger span {
  display: block; 
  width: 18px; 
  height: 2px;
  background: var(--text); 
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { 
  transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { 
  opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { 
  transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-overlay {
  display: none; 
  position: fixed; 
  inset: 0; 
  z-index: 149;
  background: rgba(26,26,46,0.55); 
  backdrop-filter: blur(3px);
  opacity: 0; transition: opacity 0.3s ease;
}
.nav-mobile-overlay.active { 
  display: block; opacity: 1; }

.nav-mobile-menu {
  position: fixed; 
  top: 0; right: 0; 
  bottom: 0; 
  z-index: 150;
  width: min(320px, 85vw);
  background: var(--bg-cream); border-left: 2px solid var(--border);
  padding: 80px 32px 40px;
  display: flex; 
  flex-direction: column; 
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: -8px 0 40px rgba(26,26,46,0.15);
}
[data-theme="dark"] .nav-mobile-menu { 
  background: var(--bg-alt); }
.nav-mobile-menu.open { 
  transform: translateX(0); }

.nav-mobile-close {
  position: absolute; 
  top: 18px; 
  right: 20px;
  width: 38px; 
  height: 38px; 
  border-radius: 6px;
  border: 2px solid var(--border-strong); 
  background: var(--surface);
  cursor: pointer;
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: var(--text); 
  transition: border-color var(--t-fast), color var(--t-fast);
}
.nav-mobile-close:hover { 
  border-color: var(--red); color: var(--red); }

.nav-mobile-links { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 4px; }

.nav-mobile-links a {
  display: block; 
  padding: 13px 16px; 
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif; 
  font-size: 15px; 
  font-weight: 700;
  color: var(--text); 
  text-decoration: none; 
  border: 2px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.nav-mobile-links li:nth-child(1) a:hover { 
  border-color: var(--red); background: var(--red-dim); }
.nav-mobile-links li:nth-child(2) a:hover { 
  border-color: var(--teal); background: var(--teal-dim); }
.nav-mobile-links li:nth-child(3) a:hover { 
  border-color: var(--yellow); background: var(--yellow-dim); }
.nav-mobile-links li:nth-child(4) a:hover { 
  border-color: var(--coral); background: var(--coral-dim); }
.nav-mobile-cta {
  display: block !important; 
  margin-top: 12px;
  background: var(--red) !important; 
  color: #fff !important;
  text-align: center; 
  border: 2px solid var(--ink) !important;
  box-shadow: 3px 3px 0 var(--ink);
}
.nav-mobile-cta:hover { 
  background: var(--red-dark) !important; }

@media (max-width: 768px) {
  .nav-hamburger { 
    display: flex; }
  .faq-list { 
    max-width: 100%; }
  .faq-question { 
    font-size: 14px; 
    padding: 16px 18px; }
  .dominio-note { 
    flex-direction: column; gap: 14px; }
}

/* ── HERO ── */
.hero { 
  min-height: 100vh; 
  padding: 120px 0 80px; 
  display: flex; 
  align-items: center; 
  position: relative; 
  overflow: hidden; 
  background: var(--bg-cream); }

[data-theme="dark"] .hero { background: var(--bg); }

.hero-blob { 
  position: absolute; 
  border-radius: 50%; 
  pointer-events: none; }

.hero-blob-1 { 
  width: 480px; 
  height: 480px; 
  top: -80px; 
  right: 4%; 
  background: radial-gradient(circle, rgba(244,168,37,0.20) 0%, transparent 68%); }

.hero-blob-2 { 
  width: 280px; 
  height: 280px; 
  bottom: -40px; 
  left: 6%; 
  background: radial-gradient(circle, rgba(78,205,196,0.14) 0%, transparent 68%); }

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

.hero-layout { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 48px; 
  align-items: center; }

.hero-left { 
  display: flex; 
  flex-direction: column; }

.hero-right { 
  display: flex; 
  align-items: flex-end; 
  justify-content: center; 
  position: relative; }

.hero-img-slot { 
  width: 100%; 
  min-height: 460px; 
  display: flex; 
  align-items: flex-end; 
  justify-content: center; 
  gap: 12px; }

.hero-img-slot img { 
  max-height: 460px; 
  width: auto; 
  object-fit: contain; 
  filter: drop-shadow(0 20px 40px rgba(26,26,46,0.18)); 
  animation: fadeUp 0.9s 0.5s both; }

.hero-img-placeholder { 
  width: 100%; 
  min-height: 400px; 
  border-radius: 12px; 
  border: 2px dashed rgba(78,205,196,0.4); 
  background: linear-gradient(145deg, rgba(244,168,37,0.06) 0%, rgba(78,205,196,0.06) 100%); 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  gap: 14px; 
  text-align: center; 
  padding: 32px; }

.hero-img-placeholder span { 
  font-size: 13px; 
  font-weight: 600; 
  line-height: 1.6; 
  color: var(--text-muted); }

.hero-img-placeholder code { 
  font-size: 11px; 
  background: var(--teal-dim); 
  color: var(--teal-dark); 
  padding: 3px 10px; 
  border-radius: 4px; 
  font-family: monospace; }

.hero-tag { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: 2.5px; 
  text-transform: uppercase; 
  color: var(--ink); 
  background: var(--yellow-dim); 
  border: 1.5px solid var(--yellow); 
  padding: 5px 14px; 
  border-radius: 6px; 
  width: fit-content; 
  margin-bottom: 22px; 
  box-shadow: 2px 2px 0 rgba(26,26,46,0.12); }

[data-theme="dark"] .hero-tag { 
  color: var(--yellow); }

.hero h1 { font-family: 'Montserrat', sans-serif; 
  font-size: clamp(32px, 3.8vw, 52px); 
  font-weight: 800; 
  line-height: 1.1; 
  letter-spacing: -0.5px; 
  color: var(--text); }

.hero h1 em { 
  font-style: normal; 
  color: var(--red); }

.hero-underline { 
  position: relative; 
  display: inline-block; }

.hero-underline::after { 
  content: ''; 
  position: absolute; 
  left: 0; 
  bottom: 3px; 
  width: 100%; 
  height: 8px; 
  background: var(--yellow); 
  z-index: -1; 
  border-radius: 2px; 
  transform: scaleX(0); 
  transform-origin: left; 
  animation: lineGrow 0.7s 0.9s cubic-bezier(0.25,0.46,0.45,0.94) forwards; }

.hero-sub { 
  font-size: 16px; 
  color: var(--text-muted); 
  line-height: 1.75; 
  max-width: 440px; 
  margin-top: 20px; }

.hero-actions { 
  display: flex; 
  gap: 12px; 
  margin-top: 32px; 
  flex-wrap: wrap; }

.fade-in-1 { 
  opacity:0; 
  animation: fadeUp 0.7s 0.1s forwards; }
.fade-in-2 { 
  opacity:0; 
  animation: fadeUp 0.8s 0.2s forwards; }
.fade-in-3 { 
  opacity:0; 
  animation: fadeUp 0.8s 0.38s forwards; }
.fade-in-4 { 
  opacity:0; 
  animation: fadeUp 0.8s 0.52s forwards; }
.fade-in-5 { 
  opacity:0; 
  animation: fadeUp 0.8s 0.65s forwards; }


/* ── POR QUÉ ── */
.porque {
  background-color: var(--bg-mist);
}


.porque-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.porque-num-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 46px 38px;
  border-bottom: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
}

.porque-num-item:nth-child(2n) {
  border-right: none;
}

.porque-num-item:nth-child(3),
.porque-num-item:nth-child(4) {
  border-bottom: none;
}

.porque-big-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  margin-top: -6px;
}

.porque-num-item:nth-child(1) .porque-big-num { 
  color: var(--red); }
.porque-num-item:nth-child(2) .porque-big-num { 
  color: var(--yellow); }
.porque-num-item:nth-child(3) .porque-big-num { 
  color: var(--teal); }
.porque-num-item:nth-child(4) .porque-big-num { 
  color: var(--coral); }

.porque-num-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.porque-num-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.porque .section-title em {
  color: var(--red);
  font-style: normal;
}

.porque .btn-primary {
  margin-top: 32px;
  display: block;
  width: fit-content;
  padding: 12px 28px;
  margin-left: auto;
  margin-right: auto;
}


/* ── SERVICIOS ── */
.servicios { 
  background: var(--bg); }

.servicios-grid { 
  display: grid; 
  grid-template-columns: repeat(3,1fr); 
  gap: 18px; }

.serv-card { 
  background: var(--surface); 
  border-radius: 12px; 
  padding: 32px 26px; 
  border: 2px solid transparent; 
  transition: transform var(--t-fast), box-shadow var(--t-fast); }

.serv-card-1 { 
  border-color: var(--red);    
  box-shadow: 3px 3px 0 var(--red); }

.serv-card-2 { 
  border-color: var(--yellow);  
  box-shadow: 3px 3px 0 var(--yellow); }

.serv-card-3 { 
  border-color: var(--teal);    
  box-shadow: 3px 3px 0 var(--teal); }

.serv-card-4 { 
  border-color: var(--coral);   
  box-shadow: 3px 3px 0 var(--coral); 
  background: #fff9f9; }

[data-theme="dark"] .serv-card-4 { 
  background: var(--surface); }

.serv-card-5 { 
  border-color: var(--mint);    
  box-shadow: 3px 3px 0 var(--mint); }

[data-theme="dark"] .serv-card-5 { 
  border-color: var(--teal); 
  box-shadow: 3px 3px 0 var(--teal); }

.serv-card-6 { 
  border-color: var(--yellow-light); 
  box-shadow: 3px 3px 0 var(--yellow-light); 
  background: #fffbf0; }

[data-theme="dark"] .serv-card-6 { 
  border-color: var(--yellow); 
  box-shadow: 3px 3px 0 var(--yellow); 
  background: var(--surface); }
.serv-card:hover { 
  transform: translate(-2px,-2px); }
.serv-card-1:hover { 
  box-shadow: 5px 5px 0 var(--red); }
.serv-card-2:hover { 
  box-shadow: 5px 5px 0 var(--yellow); }
.serv-card-3:hover { 
  box-shadow: 5px 5px 0 var(--teal); }
.serv-card-4:hover { 
  box-shadow: 5px 5px 0 var(--coral); }
.serv-card-5:hover { 
  box-shadow: 5px 5px 0 var(--mint); }
.serv-card-6:hover { 
  box-shadow: 5px 5px 0 var(--yellow-light); }

.serv-icon { 
  width: 46px; 
  height: 46px; 
  border-radius: 10px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin-bottom: 18px; }
.serv-card-1 .serv-icon { 
  background: var(--red-dim); 
  color: var(--red); }
.serv-card-2 .serv-icon { 
  background: var(--yellow-dim); 
  color: #8a5a00; }
.serv-card-3 .serv-icon { 
  background: var(--teal-dim); 
  color: var(--teal-dark); }
.serv-card-4 .serv-icon { 
  background: var(--coral-dim); 
  color: var(--coral); }
.serv-card-5 .serv-icon { 
  background: var(--mint-dim); 
  color: #2a9d8f; }
.serv-card-6 .serv-icon { 
  background: rgba(255,200,90,0.18); 
  color: #8a5a00; }

[data-theme="dark"] .serv-card-2 .serv-icon,
[data-theme="dark"] .serv-card-6 .serv-icon { 
  color: var(--yellow-light); }
[data-theme="dark"] .serv-card-5 .serv-icon { 
  color: var(--teal); }

.serv-num { 
  display: block; 
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: 2px; 
  color: var(--text-faint); 
  margin-bottom: 10px; }

.serv-card h3 { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 17px; 
  font-weight: 800; 
  margin-bottom: 8px; 
  color: var(--text); }
.serv-card p { 
  font-size: 14px; 
  line-height: 1.6; 
  color: var(--text-muted); }

/* ── PROCESO ── */
.proceso { 
  background: var(--bg-cream); 
  position: relative; }
[data-theme="dark"] .proceso { 
  background: var(--bg-alt); }

.proceso-steps { 
  display: grid; 
  grid-template-columns: repeat(4,1fr); 
  gap: 16px; 
  margin-bottom: 40px; }

.paso { 
  background: var(--surface); 
  border-radius: 12px; 
  padding: 26px 20px; 
  border: 2px solid var(--border); 
  transition: transform var(--t-fast), box-shadow var(--t-fast); }

.paso:nth-child(1) { 
  border-color: var(--red); }
.paso:nth-child(1):hover { 
  box-shadow: 4px 4px 0 var(--red); 
  transform: translate(-2px,-2px); }

.paso:nth-child(2) { 
  border-color: var(--yellow); }

.paso:nth-child(2):hover { 
  box-shadow: 4px 4px 0 var(--yellow); 
  transform: translate(-2px,-2px); }
.paso:nth-child(3) { 
  border-color: var(--teal); }
.paso:nth-child(3):hover { 
  box-shadow: 4px 4px 0 var(--teal); 
  transform: translate(-2px,-2px); }
.paso:nth-child(4) { 
  border-color: var(--coral); }
.paso:nth-child(4):hover { 
  box-shadow: 4px 4px 0 var(--coral); 
  transform: translate(-2px,-2px); }
.paso-num { 
  width: 44px; 
  height: 44px; 
  border-radius: 8px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin-bottom: 16px; 
  font-family: 'Montserrat', sans-serif; 
  font-size: 20px; font-weight: 900; 
  border: 2px solid var(--ink); 
  color: #fff; }
.paso:nth-child(1) .paso-num { 
  background: var(--red); 
  box-shadow: 2px 2px 0 var(--ink); }
.paso:nth-child(2) .paso-num { 
  background: var(--yellow); 
  color: var(--ink); 
  box-shadow: 2px 2px 0 var(--ink); }
.paso:nth-child(3) .paso-num { 
  background: var(--teal); 
  box-shadow: 2px 2px 0 var(--ink); }
.paso:nth-child(4) .paso-num { 
  background: var(--coral); 
  box-shadow: 2px 2px 0 var(--ink); }
.paso h4 { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 16px; 
  font-weight: 800; 
  color: var(--text); 
  margin-bottom: 6px; }
.paso p { 
  font-size: 13px;
  color: var(--text-muted); 
  line-height: 1.6; }

.proceso-img-deco {
  position: absolute;
  top: 85px;
  left: 450px;
  width: 190px;
  height: auto;
}

@media (max-width: 768px) {
  .proceso-img-deco { display: none; }
}


/* Roadmap — efecto neon retro */
.proceso-roadmap { 
  margin-top: 36px; 
  padding: 36px 32px; 
  background: var(--surface); 
  border-radius: 12px; 
  border: 2.5px solid var(--teal); 
  box-shadow: 4px 4px 0 var(--teal), 0 0 20px rgba(78,205,196,0.15); 
  transition: box-shadow var(--t); }

.proceso-roadmap:hover { 
  box-shadow: 6px 6px 0 var(--teal), 0 0 32px rgba(78,205,196,0.22); }
.roadmap-track { 
  display: flex; 
  align-items: flex-start; 
  justify-content: space-between; 
  position: relative; 
  padding: 28px 0 48px; }

.rm-node { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  position: relative; 
  flex: 1; }

.rm-dot { 
  width: 48px; 
  height: 48px; 
  border-radius: 50%; 
  background: var(--bg-alt); 
  border: 2.5px solid var(--border-strong); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-family: 'Montserrat', sans-serif; 
  font-size: 18px; 
  font-weight: 800; 
  color: var(--text); 
  z-index: 2; 
  position: relative; 
  transition: border-color var(--t), background var(--t); }

.rm-node:nth-child(1) .rm-dot { 
  border-color: var(--red); }
.rm-node:nth-child(1):hover .rm-dot { 
  background: var(--red); 
  color: #fff; 
  box-shadow: 2px 2px 0 var(--ink); }

.rm-node:nth-child(3) .rm-dot { 
  border-color: var(--yellow); }

.rm-node:nth-child(3):hover .rm-dot { 
  background: var(--yellow); 
  color: var(--ink); }

.rm-dot-final { 
  background: var(--teal) !important; 
  border-color: var(--teal) !important; 
  color: #fff !important; 
  box-shadow: 3px 3px 0 var(--ink); }
.rm-line { 
  flex: 1; 
  height: 2px; 
  margin-top: 23px; 
  align-self: flex-start; 
  background: repeating-linear-gradient(90deg, var(--teal) 0, var(--teal) 6px, transparent 6px, transparent 14px); }

.rm-label { 
  text-align: center; 
  margin-top: 14px; 
  display: flex; 
  flex-direction: column; 
  gap: 4px; }

.rm-label-bottom { 
  position: absolute; 
  top: calc(100% + 10px); 
  left: 50%; 
  transform: translateX(-50%); 
  white-space: nowrap; }

.rm-week { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 14px; 
  font-weight: 800; 
  color: var(--text); }

.rm-week-final { 
  color: var(--teal-dark); }
[data-theme="dark"] .rm-week-final { color: var(--teal); }
.rm-desc { 
  font-size: 12px; 
  color: var(--text-muted); 
  line-height: 1.5; }

/* ── PORTFOLIO ── */
.portfolio { 
  background: var(--ink); }

[data-theme="dark"] .portfolio { background: var(--bg-alt); }
.portfolio .tag { color: var(--yellow); 
  background: rgba(244,168,37,0.14); 
  border-color: var(--yellow); }
.portfolio .section-title { color: #fff; }
[data-theme="dark"] .portfolio .section-title { 
  color: var(--text); }
.portfolio .section-sub { 

  color: rgba(255,255,255,0.45); }
[data-theme="dark"] .portfolio .section-sub { color: var(--text-muted); }

.portfolio-grid { 
  display: grid; 
  grid-template-columns: repeat(3,1fr); 
  gap: 18px; 
  margin-top: 52px; }

.port-card { 
  border-radius: 12px; 
  overflow: hidden; 
  text-decoration: none; 
  display: flex; 
  flex-direction: column; 
  border: 2px solid rgba(255,255,255,0.08); 
  background: rgba(255,255,255,0.04); 
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t); }
[data-theme="dark"] .port-card { 
  border-color: var(--border); 
  background: var(--surface); }

.port-card:nth-child(1):hover { 
  transform: translate(-3px,-3px); 
  border-color: var(--red); 
  box-shadow: 4px 4px 0 var(--red); }

.port-card:nth-child(2):hover { 
  transform: translate(-3px,-3px); 
  border-color: var(--teal); 
  box-shadow: 4px 4px 0 var(--teal); }

.port-card:nth-child(3):hover { 
  transform: translate(-3px,-3px); 
  border-color: var(--yellow); 
  box-shadow: 4px 4px 0 var(--yellow); }

.port-card-thumb { 
  width: 100%; 
  height: 180px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  border-bottom: 2px solid rgba(255,255,255,0.05); 
  transition: background var(--t); }
.port-card:nth-child(1) .port-card-thumb { 
  background: rgba(230,57,70,0.15); }
.port-card:nth-child(2) .port-card-thumb { 
  background: rgba(78,205,196,0.12); }
.port-card:nth-child(3) .port-card-thumb { 
  background: rgba(244,168,37,0.12); }
[data-theme="dark"] .port-card-thumb { 
  border-color: var(--border); }
.port-card-body { 
  padding: 24px; }
.port-rubro { 
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  display: block; 
  margin-bottom: 6px; }

.port-card:nth-child(1) .port-rubro { 
  color: var(--red); }
.port-card:nth-child(2) .port-rubro { 
  color: var(--teal); }
.port-card:nth-child(3) .port-rubro { 
  color: var(--yellow-light); }
.port-card h3 { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 18px; 
  font-weight: 800; 
  color: #fff; 
  margin-bottom: 6px; }

[data-theme="dark"] .port-card h3 { 
  color: var(--text); }

.port-card p { 
  font-size: 13px; 
  color: rgba(255,255,255,0.4); 
  line-height: 1.6; }

[data-theme="dark"] .port-card p { 
  color: var(--text-muted); }
.port-link { 
  display: inline-block; 
  margin-top: 14px; 
  font-size: 13px; 
  font-weight: 700; }
.port-card:nth-child(1) .port-link {
  color: var(--red); }
.port-card:nth-child(2) .port-link { 
  color: var(--teal); }
.port-card:nth-child(3) .port-link { 
  color: var(--yellow-light); }

/* ── PLANES ── */
.planes { background: var(--bg-mist); }
[data-theme="dark"] .planes { 
  background: var(--bg); }
.pago-unico { 
  background: var(--ink); 
  border-radius: 12px; 
  padding: 32px 40px; 
  margin-bottom: 36px; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 24px; 
  flex-wrap: wrap; 
  border: 2px solid var(--ink); 
  box-shadow: 5px 5px 0 var(--yellow); }

[data-theme="dark"] .pago-unico { 
  background: var(--surface); 
  border: 2px solid var(--border-strong); 
  box-shadow: 5px 5px 0 var(--teal); }

.pago-label-tag { 
  display: block; 
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  color: var(--yellow); 
  margin-bottom: 10px; }

.pago-unico h3 { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 20px; 
  font-weight: 800; 
  color: #fff; 
  margin-bottom: 6px; }

[data-theme="dark"] .pago-unico h3 { 
  color: var(--text); }
.pago-unico p { 
  font-size: 14px; 
  color: rgba(255,255,255,0.45); }

[data-theme="dark"] .pago-unico p { 
  color: var(--text-muted); }

.pago-precio-wrap { 
  text-align: right; 
  flex-shrink: 0; }

.pago-precio { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 42px; 
  font-weight: 800; 
  color: #fff; 
  letter-spacing: -0.5px; }

[data-theme="dark"] .pago-precio { 
  color: var(--text); }

.pago-precio-sub { 
  font-size: 12px; 
  color: rgba(255,255,255,0.3); }

[data-theme="dark"] .pago-precio-sub { 
  color: var(--text-muted); }

.planes-mensual-header { 
  text-align: center; 
  margin-bottom: 28px; }

.planes-mensual-label { 
  display: inline-block; 
  font-size: 13px; 
  font-weight: 800; 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
  color: var(--text); 
  background: var(--surface); 
  border: 2px solid var(--border-strong); 
  padding: 8px 22px; 
  border-radius: 6px; 
  box-shadow: 2px 2px 0 var(--border-strong); }

.planes-grid { 
  display: grid; 
  grid-template-columns: repeat(3,1fr); 
  gap: 20px; 
  align-items: stretch; }

.plan-card { 
  background: var(--surface); 
  border: 2px solid var(--border); 
  border-radius: 14px; 
  padding: 32px 28px; 
  position: relative; 
  display: flex; 
  flex-direction: column; 
  transition: transform var(--t-fast), box-shadow var(--t-fast); }

.plan-card:nth-child(1) { 
  border-color: var(--teal);
   box-shadow: 3px 3px 0 var(--teal); }

.plan-card:nth-child(1):hover { 
  transform: translate(-2px,-2px); 
  box-shadow: 5px 5px 0 var(--teal); }

.plan-featured { 
  border-color: var(--red) !important; 
  box-shadow: 4px 4px 0 var(--red) !important; 
  background: #fff8f8; }

[data-theme="dark"] .plan-featured { 
  background: #1e1020; }

.plan-featured:hover { 
  transform: translate(-2px,-2px); 
  box-shadow: 6px 6px 0 var(--red) !important; }

.plan-card:nth-child(3) { 
  border-color: var(--yellow); 
  box-shadow: 3px 3px 0 var(--yellow); }

.plan-card:nth-child(3):hover { 
  transform: translate(-2px,-2px); 
  box-shadow: 5px 5px 0 var(--yellow); }

.plan-badge { 
  position: absolute;
  top: -14px; 
  left: 50%; 
  transform: translateX(-50%); 
  background: var(--red); 
  color: #fff; 
  font-size: 10px; 
  font-weight: 800; 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  padding: 4px 16px; 
  border-radius: 4px; 
  white-space: nowrap; 
  border: 2px solid var(--ink); 
  box-shadow: 2px 2px 0 var(--ink); }

.plan-name { 
  display: block; 
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: 2.5px; 
  text-transform: uppercase; 
  color: var(--text-muted); 
  margin-bottom: 18px; }

.plan-price { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 40px; 
  font-weight: 800; 
  letter-spacing: -0.5px; 
  line-height: 1; }

.plan-card:nth-child(1) .plan-price { 
  color: var(--teal-dark); }

[data-theme="dark"] .plan-card:nth-child(1) .plan-price { 
  color: var(--teal); }

.plan-price-accent { color: var(--red) !important; }
.plan-card:nth-child(3) .plan-price { 
  color: #8a5a00; }

[data-theme="dark"] .plan-card:nth-child(3) .plan-price { 
  color: var(--yellow-light); }

.plan-period { 
  font-size: 13px; 
  color: var(--text-muted); 
  margin-bottom: 20px; }
.plan-div { 
  height: 1.5px; 
  background: var(--border); 
  margin-bottom: 20px; }

.plan-features { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 10px; flex: 1; 
  margin-bottom: 24px; }

.plan-features li { 
  font-size: 14px; 
  color: var(--text-muted); 
  display: flex; 
  align-items: flex-start; 
  gap: 10px; 
  line-height: 1.4; }

.plan-features li::before { 
  content: '✓'; 
  font-size: 11px; 
  font-weight: 800; 
  flex-shrink: 0; 
  margin-top: 1px; }

.plan-card:nth-child(1) .plan-features li::before { 
  color: var(--teal-dark); }

[data-theme="dark"] .plan-card:nth-child(1) .plan-features li::before { 
  color: var(--teal); }
.plan-featured .plan-features li::before { 
  color: var(--red); }
.plan-card:nth-child(3) .plan-features li::before { 
  color: #8a5a00; }
[data-theme="dark"] .plan-card:nth-child(3) .plan-features li::before { 
  color: var(--yellow-light); }
.plan-features li.no { 
  color: var(--text-faint); }
.plan-features li.no::before { 
  content: '×'; 
  color: var(--text-faint); }

.plan-btn { 
  display: block; 
  text-align: center; 
  text-decoration: none; 
  padding: 12px; 
  border-radius: 8px; 
  font-size: 14px; 
  font-weight: 700; 
  border: 2px solid var(--ink); 
  transition: transform var(--t-fast), box-shadow var(--t-fast); }

.plan-btn:hover { 
  transform: translate(-1px,-1px); }

.btn-outline { 
  background: transparent; 
  color: var(--text); 
  border-color: var(--teal); 
  box-shadow: 2px 2px 0 var(--teal); }

.btn-outline:hover { 
  box-shadow: 3px 3px 0 var(--teal); 
  background: var(--teal-dim); }

.btn-yellow { 
  background: var(--red); 
  color: #fff; 
  box-shadow: 2px 2px 0 var(--ink); }

.btn-yellow:hover { 
  box-shadow: 3px 3px 0 var(--ink); }

.btn-dark { 
  background: var(--yellow); 
  color: var(--ink); 
  box-shadow: 2px 2px 0 var(--ink); }

.btn-dark:hover { 
  box-shadow: 3px 3px 0 var(--ink); }

.planes-pago-note { 
  margin-top: 28px; 
  text-align: center; 
  font-size: 14px; 
  font-weight: 600; 
  color: var(--text); 
  background: var(--surface); 
  border: 2px solid var(--border-strong); 
  padding: 14px 24px; 
  border-radius: 8px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 8px; flex-wrap: wrap; 
  box-shadow: 2px 2px 0 var(--border-strong); }
.planes { position: relative; }

.planes-img-deco {
  position: absolute;
  top: 95px;
  right: 420px;
  width: 250px;
  height: auto;
}

@media (max-width: 768px) {
  .planes-img-deco { display: none; }
}



/* ── Nota dominio propio ── */
.dominio-note {
  display: flex; 
  gap: 18px; 
  align-items: flex-start;
  background: var(--surface); 
  border: 2px solid var(--teal);
  border-radius: 12px; 
  padding: 22px 26px; 
  margin-bottom: 32px;
  box-shadow: 4px 4px 0 var(--teal);
}
[data-theme="dark"] .dominio-note { 
  background: var(--bg-alt); }

.dominio-note-icon {
  width: 44px; 
  height: 44px; 
  flex-shrink: 0; 
  border-radius: 10px;
  background: var(--teal-dim); 
  color: var(--teal-dark);
  display: flex; 
  align-items: center; 
  justify-content: center;
  border: 2px solid var(--teal);
}
[data-theme="dark"] .dominio-note-icon { color: var(--teal); }
.dominio-note strong {
  display: block; 
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; 
  font-weight: 800; 
  color: var(--text); 
  margin-bottom: 6px;
}
.dominio-note p { 
  font-size: 13px; 
  color: var(--text-muted); 
  line-height: 1.7; 
  margin: 0; }

.dominio-note p em { 
  font-style: normal; 
  font-weight: 700; 
  color: var(--teal-dark); }

[data-theme="dark"] .dominio-note p em { 
  color: var(--teal); }

.dominio-note p strong { 
  display: inline; 
  font-size: 13px; 
  font-weight: 800; 
  color: var(--text); }

/* ── FAQ ── */
.faq { background: var(--bg-blush); }
[data-theme="dark"] .faq { 
  background: var(--bg-alt); }
.faq-list { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
  max-width: 780px; 
  margin: 0 auto; }

.faq-item {
  background: var(--surface); border-radius: 12px; overflow: hidden;
  border: 2px solid var(--border);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq-item:nth-child(1) { 
  border-color: var(--red); }
.faq-item:nth-child(1).open { 
  box-shadow: 4px 4px 0 var(--red); }
.faq-item:nth-child(2) { 
  border-color: var(--teal); }
.faq-item:nth-child(2).open { 
  box-shadow: 4px 4px 0 var(--teal); }
.faq-item:nth-child(3) { 
  border-color: var(--yellow); }
.faq-item:nth-child(3).open { 
  box-shadow: 4px 4px 0 var(--yellow); }
.faq-item:nth-child(4) { 
  border-color: var(--coral); }
.faq-item:nth-child(4).open { 
  box-shadow: 4px 4px 0 var(--coral); }
.faq-item:nth-child(5) { 
  border-color: var(--mint); }
.faq-item:nth-child(5).open {
  box-shadow: 4px 4px 0 var(--mint); }
[data-theme="dark"] .faq-item:nth-child(5) { 
  border-color: var(--teal); }

.faq-question {
  width: 100%; 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  gap: 16px; 
  padding: 20px 24px;
  background: transparent; 
  border: none;
  cursor: pointer; 
  text-align: left;
  font-family: 'Montserrat', sans-serif; 
  font-size: 15px; 
  font-weight: 800; 
  color: var(--text);
  transition: background var(--t-fast);
}
.faq-item:nth-child(1) .faq-question:hover { 
  background: var(--red-dim); }
.faq-item:nth-child(2) .faq-question:hover { 
  background: var(--teal-dim); }
.faq-item:nth-child(3) .faq-question:hover { 
  background: var(--yellow-dim); }
.faq-item:nth-child(4) .faq-question:hover { 
  background: var(--coral-dim); }
.faq-item:nth-child(5) .faq-question:hover { 
  background: var(--mint-dim); }

.faq-icon {
  flex-shrink: 0; 
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94), color var(--t-fast);
}
.faq-item.open .faq-icon { 
  transform: rotate(180deg); }
.faq-item:nth-child(1).open .faq-icon { 
  color: var(--red); }
.faq-item:nth-child(2).open .faq-icon { 
  color: var(--teal); }
.faq-item:nth-child(3).open .faq-icon { 
  color: var(--yellow); }
.faq-item:nth-child(4).open .faq-icon { 
  color: var(--coral); }
.faq-item:nth-child(5).open .faq-icon { 
  color: var(--teal); }

.faq-answer {
  max-height: 0; 
  overflow: hidden; 
  padding: 0 24px;
  transition: max-height 0.4s cubic-bezier(0.25,0.46,0.45,0.94), padding var(--t-fast);
}
.faq-item.open .faq-answer { 
  max-height: 400px; 
  padding-bottom: 22px; }
.faq-answer p { 
  font-size: 14px; 
  color: var(--text-muted); 
  line-height: 1.8; }

/* ── NOSOTRAS ── */
.nosotras { 
  background: var(--bg); }

[data-theme="dark"] .nosotras { 
  background: var(--bg-alt); }

.nosotras-header { 
  margin-bottom: 60px; }

.nosotras-personas {
  display: grid; 
  grid-template-columns: 240px 1fr 240px; 
  gap: 40px; 
  align-items: start; }

.persona-card { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 10px; }

.persona-img-wrap { 
  width: 300px; 
  height: auto; 
  border-radius: 0; 
  overflow: visible; 
  border: none; 
  box-shadow: none; 
  flex-shrink: 0; }

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

.persona-img-placeholder { 
  width: 100%; 
  height: 100%; 
  background: var(--teal-dim); 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  gap: 8px; color: var(--text-faint); }

.persona-img-placeholder span { 
  font-size: 11px; 
  font-weight: 600; 
  color: var(--text-muted); 
  text-align: center; }

.persona-card h3 { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 20px; 
  font-weight: 800; 
  color: var(--text); }

.persona-rol { 
  font-size: 13px; 
  color: var(--text-muted); 
  font-weight: 600; }

/* Centro nosotras — centrado y simétrico */
.nosotras-centro { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center; gap: 0; }
.nosotras-centro .btn-primary { 
  margin-top: 28px; }
.check-list {
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 16px;
  width: 100%; 
  max-width: 300px;
}
.check-list li {
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 8px;
  font-size: 14px; 
  color: var(--text-muted); 
  line-height: 1.5;
  text-align: center;
  background: var(--surface); 
  border-radius: 12px; 
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.check-list li:hover { 
  transform: translate(-2px,-2px); }
.check-list li:nth-child(1) { 
  border-color: var(--red); }
.check-list li:nth-child(1):hover { 
  box-shadow: 3px 3px 0 var(--red); }
.check-list li:nth-child(1) svg { 
  color: var(--red); flex-shrink: 0; }
.check-list li:nth-child(2) { 
  border-color: var(--teal); }
.check-list li:nth-child(2):hover { 
  box-shadow: 3px 3px 0 var(--teal); }
.check-list li:nth-child(2) svg { 
  color: var(--teal-dark); 
  flex-shrink: 0; }
[data-theme="dark"] .check-list li:nth-child(2) svg { 
  color: var(--teal); }
.check-list li:nth-child(3) { 
  border-color: var(--coral); }
.check-list li:nth-child(3):hover { 
  box-shadow: 3px 3px 0 var(--coral); }
.check-list li:nth-child(3) svg { 
  color: var(--coral); 
  flex-shrink: 0; }
.check-list li:nth-child(4) { 
  border-color: var(--yellow); }
.check-list li:nth-child(4):hover { 
  box-shadow: 3px 3px 0 var(--yellow); }
.check-list li:nth-child(4) svg { 
  color: #7a5200; 
  flex-shrink: 0; }
[data-theme="dark"] .check-list li:nth-child(4) svg { 
  color: var(--yellow-light); }

/* ── CTA FINAL ── */
.cta-final { 
  background: var(--ink); }
[data-theme="dark"] .cta-final { 
  background: var(--bg-alt); }
.cta-inner { 
  display: flex; 
  align-items: center; 
  gap: 60px; 
  padding: 80px 0; 
  flex-wrap: wrap; }
.cta-text { 
  flex: 1; 
  min-width: 280px; }
.cta-tag { 
  display: inline-block; 
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: 2.5px; 
  text-transform: uppercase; 
  color: var(--yellow); 
  background: rgba(244,168,37,0.15); 
  border: 1.5px solid var(--yellow); 
  padding: 5px 14px; 
  border-radius: 6px; 
  margin-bottom: 20px; 
  box-shadow: 2px 2px 0 rgba(244,168,37,0.3); }

.cta-titulo { 
  font-family: 'Montserrat', sans-serif; 
  font-size: clamp(30px, 4vw, 50px); 
  font-weight: 800; 
  letter-spacing: -0.5px; 
  line-height: 1.08; 
  color: #fff; 
  margin-bottom: 18px; }
[data-theme="dark"] .cta-titulo { 
  color: var(--text); }

.cta-sub { 
  font-size: 16px; 
  color: rgba(255,255,255,0.5); 
  line-height: 1.7; 
  max-width: 440px; 
  margin-bottom: 36px; }

[data-theme="dark"] .cta-sub { 
  color: var(--text-muted); }

.cta-actions { 
  display: flex; 
  gap: 14px; 
  flex-wrap: wrap; }
.cta-mascota-wrap { 
  flex-shrink: 0; 
  width: 280px; 
  display: flex; 
  align-items: flex-end; 
  justify-content: center; }

.cta-mascota-img { 
  width: 100%; 
  max-width: 280px; 
  height: auto; 
  object-fit: contain; 
  display: block; 
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.4)); }

.cta-mascota-placeholder { 
  width: 220px; 
  height: 260px; 
  border-radius: 12px; 
  border: 2px dashed rgba(78,205,196,0.4); 
  background: rgba(78,205,196,0.05); 
  display: flex; flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  gap: 10px; 
  color: rgba(255,255,255,0.2); }
[data-theme="dark"] .cta-mascota-placeholder { 
  color: var(--text-faint); }
.cta-mascota-placeholder span { 
  font-size: 13px; 
  font-weight: 600; 
  text-align: center; }
.cta-mascota-hint { 
  font-size: 10px !important; 
  font-weight: 400 !important; 
  opacity: 0.5; 
  margin-top: 4px; }

/* ── CONTACTO ── */
.contacto { background: var(--bg-cream); }
[data-theme="dark"] .contacto { background: var(--bg); }
.contacto-grid { 
  display: grid; 
  grid-template-columns: 1fr 1.1fr; 
  gap: 80px; 
  align-items: start; }

.contacto .section-sub { 
  max-width: 380px; }

.contacto-items { 
  margin-top: 36px; 
  display: flex; 
  flex-direction: column; 
  gap: 18px; }

.contacto-item { 
  display: flex; 
  gap: 14px; 
  align-items: center; }

.c-icon { 
  width: 42px; 
  height: 42px; 
  flex-shrink: 0;
  border-radius: 10px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  border: 2px solid var(--ink); }

.contacto-item:nth-child(1) .c-icon { 
  background: var(--red-dim); 
  color: var(--red); 
  box-shadow: 2px 2px 0 var(--red); }
.contacto-item:nth-child(2) .c-icon { 
  background: var(--teal-dim); 
  color: var(--teal-dark); 
  box-shadow: 2px 2px 0 var(--teal); }
.contacto-item:nth-child(3) .c-icon { 
  background: var(--yellow-dim); 
  color: #8a5a00; 
  box-shadow: 2px 2px 0 var(--yellow); }
[data-theme="dark"] .contacto-item:nth-child(2) .c-icon { 
  color: var(--teal); }
[data-theme="dark"] .contacto-item:nth-child(3) .c-icon { 
  color: var(--yellow-light); }
.contacto-item strong { 
  display: block; 
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
  color: var(--text); 
  margin-bottom: 3px; }

.contacto-item span { 
  font-size: 14px; 
  color: var(--text-muted); }

.contacto-form-wrap { 
  background: var(--surface); 
  border: 2px solid var(--border-strong); 
  border-radius: 14px; 
  padding: 36px; 
  box-shadow: 5px 5px 0 var(--border-strong); }

[data-theme="dark"] .contacto-form-wrap { 
  box-shadow: 5px 5px 0 var(--teal-dark); 
  border-color: var(--teal); }
.contacto-form { 
  display: flex; 
  flex-direction: column; 
  gap: 16px; }

.form-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 14px; }

.form-group { 
  display: flex; 
  flex-direction: column; 
  gap: 6px; }

.form-group label { 
  font-size: 12px; 
  font-weight: 700; 
  letter-spacing: 0.5px; 
  color: var(--text-muted); 
  text-transform: uppercase; }

.contacto-form input, .contacto-form textarea { 
  width: 100%; 
  background: var(--bg-alt); 
  border: 2px solid var(--border-strong); 
  color: var(--text); 
  padding: 11px 15px; 
  font-family: 'Plus Jakarta Sans', sans-serif; 
  font-size: 14px; 
  border-radius: 8px;
  outline: none; 
  transition: border-color var(--t), background var(--t), box-shadow var(--t-fast); }

.contacto-form input:focus, .contacto-form textarea:focus { 
  border-color: var(--teal); 
  background: var(--bg); 
  box-shadow: 3px 3px 0 var(--teal); }

.contacto-form input::placeholder, .contacto-form textarea::placeholder { 
  color: var(--text-faint); }
.contacto-form textarea { 
  resize: vertical; 
  min-height: 110px; }

.contacto-form button { 
  background: var(--red); 
  color: #fff; 
  border: 2px solid var(--ink); 
  padding: 14px 28px; 
  border-radius: 8px; 
  font-family: 'Plus Jakarta Sans', sans-serif; 
  font-weight: 700; 
  font-size: 14px; 
  cursor: pointer; 
  align-self: flex-start; 
  box-shadow: 3px 3px 0 var(--ink); 
  transition: transform var(--t-fast), box-shadow var(--t-fast); }
.contacto-form button:hover { 
  transform: translate(-2px,-2px); 
  box-shadow: 5px 5px 0 var(--ink); }

/* Fix fotos en círculo — contacto.html */
.team-img-wrap { 
  position: relative; 
  overflow: hidden; }
.team-img-placeholder { 
  position: relative; 
  width: 100%; 
  height: 100%; }
.team-img-placeholder img {
  width: 100%; 
  height: 100%;
  object-fit: cover; 
  object-position: center top;
  display: block; 
  position: absolute; 
  top: 0; 
  left: 0;
}
/* Logo Sitelab en círculo — centrado, no recortado */
.team-img-logo {
  background: var(--yellow) !important;
  display: flex; align-items: center; justify-content: center;
}
.team-img-logo img {
  position: static !important;
  width: 110% !important;
  height: 110% !important;
  object-fit: contain !important;
}

/* ── FOOTER ── */
footer { 
  background: var(--ink); 
  border-top: 2px solid rgba(255,255,255,0.06); 
  padding: 28px 40px; }

[data-theme="dark"] footer { 
  background: var(--bg-alt); 
  border-top-color: var(--border); }
.footer-inner { 
  max-width: 1160px; 
  margin: 0 auto; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  flex-wrap: wrap; 
  gap: 16px; }

.footer-logo { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 18px; 
  font-weight: 800; 
  text-decoration: none; 
  color: #fff; 
  display: flex; 
  align-items: center; 
  gap: 7px; }

  .footer-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

[data-theme="dark"] .footer-logo { 
  color: var(--text); }
.footer-links { 
  display: flex; 
  gap: 20px; 
  list-style: none; }

.footer-links a { 
  font-size: 13px; 
  color: rgba(255,255,255,0.35); 
  text-decoration: none; 
  transition: color var(--t); }

[data-theme="dark"] .footer-links a { 
  color: var(--text-muted); }
.footer-links a:hover { 
  color: var(--yellow); }
.footer-legal { 
  display: flex; 
  gap: 16px; 
  align-items: center; 
  font-size: 13px; }

.footer-legal a { 
  color: rgba(255,255,255,0.3); 
  text-decoration: none; 
  transition: color var(--t); }

[data-theme="dark"] .footer-legal a { 
  color: var(--text-muted); }
.footer-legal a:hover { 
  color: var(--teal); }

.footer-legal span { 
  color: rgba(255,255,255,0.15); }
.footer-copy { 
  font-size: 12px; 
  color: rgba(255,255,255,0.2); }
[data-theme="dark"] .footer-copy { 
  color: var(--text-faint); }

/* ── WSP FLOTANTE ── */
.wsp-float { 
  position: fixed; 
  bottom: 28px; 
  right: 28px; 
  z-index: 90; 
  width: 54px; 
  height: 54px; 
  border-radius: 12px; 
  background: #25d366; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-decoration: none; 
  border: 2px solid var(--ink); 
  box-shadow: 3px 3px 0 var(--ink); 
  transition: transform var(--t-fast), box-shadow var(--t-fast); }
.wsp-float:hover { 
  transform: translate(-2px,-2px); 
  box-shadow: 5px 5px 0 var(--ink); }

/* ── SCROLL REVEAL ── */
.reveal { 
  opacity: 0; 
  transform: translateY(28px); 
  transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.visible { 
  opacity: 1; 
  transform: translateY(0); }
.reveal-delay-1 { 
  transition-delay: 0.08s; }
.reveal-delay-2 { 
  transition-delay: 0.16s; }
.reveal-delay-3 { 
  transition-delay: 0.24s; }
.reveal-delay-4 { 
  transition-delay: 0.32s; }

/* ── PÁGINA LEGAL ── */
.legal-wrap { 
  padding: 100px 0 80px; }
.legal-content { 
  max-width: 720px; 
  margin: 0 auto; }
.legal-back { 
  display: inline-flex; 
  align-items: center; 
  gap: 6px; 
  font-size: 13px; 
  font-weight: 700; 
  color: var(--text-muted); 
  text-decoration: none; 
  margin-bottom: 36px; 
  padding: 8px 16px; 
  border-radius: 6px; 
  border: 2px solid var(--border-strong); 
  box-shadow: 2px 2px 0 var(--border-strong); 
  transition: transform var(--t-fast), box-shadow var(--t-fast), color var(--t), border-color var(--t); }

.legal-back:hover { 
  transform: translate(-1px,-1px); 
  box-shadow: 3px 3px 0 var(--teal); 
  border-color: var(--teal); 
  color: var(--teal-dark); }

.legal-content h1 { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 38px; 
  font-weight: 800; 
  color: var(--text); 
  margin-bottom: 8px; }

.legal-content .legal-date { 
  font-size: 13px; 
  color: var(--text-muted); 
  margin-bottom: 48px; }
.legal-content h2 { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 20px; font-weight: 800; 
  color: var(--text); 
  margin: 36px 0 12px; }

.legal-content p { 
  font-size: 15px; 
  color: var(--text-muted); 
  line-height: 1.8; 
  margin-bottom: 14px; }

.legal-content ul { 
  margin: 12px 0 14px 20px; 
  display: flex; 
  flex-direction: column; 
  gap: 8px; }
.legal-content ul li { 
  font-size: 15px; 
  color: var(--text-muted); 
  line-height: 1.7; }

/* ── CONTACTO.HTML ── */

/* Page hero — centrado */
.page-hero { 
  padding: 120px 0 40px; 
  text-align: center; 
  background: var(--bg-cream); }

[data-theme="dark"] .page-hero { 
  background: var(--bg); }
.page-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5vw, 64px); 
  font-weight: 900; 
  line-height: 1.1;
  letter-spacing: -1px; 
  color: var(--text);
  text-align: center; 
  margin: 12px 0 0;
}
.hero-names { color: var(--red); font-style: normal; }

/* Team grid */
.team-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 52px; align-items: stretch;
}
.team-card {
  background: var(--surface); 
  border: 2px solid var(--border); 
  border-radius: 14px;
  padding: 36px 24px; 
  text-align: center;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 10px;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.team-card:nth-child(1) { 
  border-color: var(--red); 
  box-shadow: 4px 4px 0 var(--red); }
.team-card:nth-child(1):hover { 
  transform: translate(-2px,-2px); 
  box-shadow: 6px 6px 0 var(--red); }
.team-card:nth-child(2) { 
  border-color: var(--teal); 
  box-shadow: 4px 4px 0 var(--teal); }
.team-card:nth-child(2):hover { 
  transform: translate(-2px,-2px); 
  box-shadow: 6px 6px 0 var(--teal); }
.team-card:nth-child(3) { 
  border-color: var(--yellow); 
  box-shadow: 4px 4px 0 var(--yellow); }
.team-card:nth-child(3):hover {
  transform: translate(-2px,-2px); 
  box-shadow: 6px 6px 0 var(--yellow); }

/* Imagen circular — todas las cards la misma */
.team-img-wrap {
  width: 120px; 
  height: 120px; 
  border-radius: 50%; 
  overflow: hidden;
  border: 3px solid var(--ink); 
  flex-shrink: 0;
}
.team-card:nth-child(1) .team-img-wrap { 
  box-shadow: 3px 3px 0 var(--red); }
.team-card:nth-child(2) .team-img-wrap { 
  box-shadow: 3px 3px 0 var(--teal); }
.team-card:nth-child(3) .team-img-wrap { 
  box-shadow: 3px 3px 0 var(--yellow); }
.team-img-wrap img {
  width: 100%; height: 100%; 
  object-fit: cover; 
  display: block; }
.team-img-placeholder {
  width: 100%; 
  height: 100%;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
  gap: 5px; color: var(--text-faint);
}
.team-card:nth-child(1) .team-img-placeholder { 
  background: var(--red-dim); }
.team-card:nth-child(2) .team-img-placeholder { 
  background: var(--teal-dim); }
.team-card:nth-child(3) .team-img-placeholder { 
  background: var(--yellow-dim); }
.team-img-placeholder span { 
  font-size: 10px; 
  font-weight: 600; 
  color: var(--text-muted); }
/* Placeholder de logo */
.team-logo-img {
  width: 115%;
  height: 115%;
  object-fit: contain;
  display: block;
  margin: auto;
}

/* Nombre y rol */
.team-card h3 { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 20px; 
  font-weight: 800; 
  color: var(--text); 
  margin-top: 4px; }
.team-card-rol { 
  font-size: 12px; 
  font-weight: 700; 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
  color: var(--text-muted); }

/* Divider de color por tarjeta */
.team-divider { 
  width: 40px; 
  height: 3px; 
  border-radius: 2px; 
  margin: 2px auto 4px; }
.team-card:nth-child(1) .team-divider { 
  background: var(--red); }
.team-card:nth-child(2) .team-divider { 
  background: var(--teal); }
.team-card:nth-child(3) .team-divider { 
  background: var(--yellow); }

/* Bio */
.team-card-bio { 
  font-size: 13px; 
  color: var(--text-muted); 
  line-height: 1.65; 
  text-align: center; flex: 1; }

/* Links al fondo */
.team-contact-links { 
  display: flex; 
  flex-direction: column; 
  gap: 8px; width: 100%; 
  margin-top: auto; 
  padding-top: 12px; }
.team-contact-link {
  display: flex; 
  align-items: center; 
  gap: 8px; padding: 9px 14px; 
  border-radius: 8px;
  font-size: 13px; 
  font-weight: 600; 
  text-decoration: none;
  border: 2px solid var(--ink); 
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.team-contact-link:hover { 
  transform: translate(-1px,-1px); 
  box-shadow: 3px 3px 0 var(--ink); }
.team-link-wsp { 
  background: #25d366; 
  color: #fff; }
.team-link-mail { 
  background: var(--bg-alt); 
  color: var(--text); }

/* ── KEYFRAMES ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lineGrow { to { transform: scaleX(1); } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .servicios-grid { 
    grid-template-columns: repeat(2,1fr); }
  .planes-grid { 
    grid-template-columns: 1fr 1fr; }
  .planes-grid .plan-card:last-child { 
    grid-column: span 2; 
    max-width: 440px; 
    margin: 0 auto; 
    width: 100%; }
}
@media (max-width: 768px) {
  section { 
    padding: 64px 0; }
  nav { 
    padding: 0 20px; }
  .nav-links { 
    display: none; }
  .hero { 
    padding: 100px 0 60px; }
  .hero-layout { 
    grid-template-columns: 1fr; }
  .hero-right { 
    display: none; }
  .porque-grid { 
    grid-template-columns: 1fr; 
    gap: 40px; }
  .porque-cards { 
    grid-template-columns: 1fr; }
  .porque-nums { 
    grid-template-columns: 1fr; }
  .porque-num-item { 
    border-right: none; 
    border-bottom: 1.5px solid var(--border); }
  .porque-num-item:nth-child(4) { 
    border-bottom: none; }
  .servicios-grid { 
    grid-template-columns: 1fr; }
  .proceso-steps { 
    grid-template-columns: 1fr 1fr; 
    gap: 14px; }
  .roadmap-track { 
    flex-direction: column; 
    gap: 20px; 
    align-items: flex-start; 
    padding: 0; }
  .rm-line { 
    width: 2px;
    height: 28px; 
    flex: none; 
    margin-top: 0; 
    margin-left: 23px; 
    background: repeating-linear-gradient(180deg, var(--teal) 0, var(--teal) 6px, transparent 6px, transparent 14px); 
    align-self: auto; }
  .rm-label-bottom { 
    position: static; 
    transform: none; 
    white-space: normal; 
    text-align: left; 
    padding-left: 12px; }
  .rm-node { 
    flex-direction: row; 
    align-items: flex-start; 
    gap: 14px; flex: none; 
    width: 100%; }
  .portfolio-grid { 
    grid-template-columns: 1fr; }
  .planes-grid { 
    grid-template-columns: 1fr; }
  .planes-grid .plan-card:last-child { 
    grid-column: auto; 
    max-width: none; }
  .pago-unico { 
    flex-direction: column; 
    align-items: flex-start; 
    padding: 24px; }
  .pago-precio-wrap { 
    text-align: left; }
  .nosotras-personas { 
    grid-template-columns: 1fr; 
    gap: 48px; }
  .nosotras-centro { 
    padding: 0; }
  .cta-inner { 
    padding: 60px 0; 
    gap: 40px; }
  .cta-mascota-wrap { 
    display: none; }
  .contacto-grid { 
    grid-template-columns: 1fr; 
    gap: 40px; }
  .form-row { 
    grid-template-columns: 1fr; }
  .footer-inner { 
    flex-direction: column; 
    text-align: center; }
  .footer-links { 
    justify-content: center; }
  .footer-legal { 
    justify-content: center; }
  .team-grid { 
    grid-template-columns: 1fr; }
  .team-card:nth-child(2) { order: -1; }
}