/* ==========================================================================
   DISEÑO WEB EN MÓSTOLES — Peak Site Studio
   HEADER, MEGA MENÚ, MENÚ MÓVIL, IDIOMAS y FOOTER son una copia EXACTA
   de /assets/css/styles.css para garantizar el mismo diseño y comportamiento
   que el resto del sitio. Debajo van solo los estilos propios de esta página.
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }

/* ===== VARIABLES (idénticas a styles.css) ===== */
:root {
  --primary: #0a0f2c;
  --accent: #00d4ff;
  --accent2: #0099ff;
  --bg-light: #f8fafd;
  --bg-dark: #0a0f2c;
  --text-light: #1e2937;
  --text-dark: #f1f5f9;
  --text-soft-light: #64748b;
  --text-soft-dark: #94a3b8;
  --card-bg-light: #ffffff;
  --card-bg-dark: rgba(255, 255, 255, 0.06);
  --border-light: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.12);
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-light);
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  padding: 0;
}
body.dark { background: var(--bg-dark); color: var(--text-dark); }

.container { width: 90%; max-width: 1100px; margin: auto; }
section { padding: 80px 0; }

p { color: var(--text-soft-light); }
body.dark p { color: var(--text-soft-dark); }
section h1, section h2, section h3, section h4 { color: var(--text-light); }
body.dark section h1, body.dark section h2, body.dark section h3, body.dark section h4 { color: var(--text-dark); }

/* ============================================================
   HEADER / NAV — copiado literal de styles.css
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 0;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}
body.dark .header {
  background: rgba(10, 15, 44, 0.95);
  border-bottom: 1px solid var(--border-dark);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 15px;
}
nav {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  justify-content: flex-end;
}
nav a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
}
body.dark nav a { color: #fff; }

.logo { height: 28px; width: auto; flex-shrink: 0; transition: transform 0.3s ease; }
.logo:hover { transform: scale(1.05); }
.brand { display: flex; align-items: center; gap: 5px; text-decoration: none; color: inherit; }
.brand-name { font-weight: 550; font-size: 16px; letter-spacing: 0px; line-height: 1; color: inherit; }
body.dark .brand-name {
  background: linear-gradient(90deg, #ffffff, #a0b8ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.desktop-nav { flex: 1; display: flex; gap: 10px; justify-content: flex-end; }
.nav-right { display: flex; align-items: center; gap: 15px; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 34px;
  color: var(--primary);
  cursor: pointer;
  padding: 5px 10px;
}
body.dark .mobile-menu-btn { color: #fff; }

.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 9999999;
  display: none;
  justify-content: flex-end;
}
.mobile-menu.active { display: flex; }
.mobile-menu-links {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  width: 82vw !important;
  max-width: 300px !important;
  height: 100vh !important;
  padding: 80px 25px 40px 30px !important;
  background: #0a0f2c !important;
  z-index: 9999999999 !important;
  overflow-y: auto !important;
}
.close-menu-btn {
  position: fixed;
  top: 18px;
  right: 18px;
  font-size: 32px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  z-index: 9999999999 !important;
}
.mobile-link {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  padding: 16px 0;
  text-align: left;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link:active { background: rgba(0, 212, 255, 0.12); }

/* ===== THEME BUTTON ===== */
.theme-toggle {
  height: 32px; width: 32px; border: 1px solid var(--border-light);
  border-radius: 6px; background: none; cursor: pointer; transition: 0.3s; color: var(--primary);
}
body.dark .theme-toggle { border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; }
.theme-toggle:hover { background: rgba(0, 212, 255, 0.08); }

/* ===== LANG SWITCH ===== */
.lang-switch { position: relative; display: inline-block; margin-left: 12px; z-index: 100; }
.lang-current {
  display: flex !important; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 10px; background: #0f1629; color: #ffffff;
  font-weight: 600; font-size: 15px; cursor: pointer; white-space: nowrap;
  border: 2px solid transparent !important; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.2s ease !important; outline: none !important;
}
.lang-current:hover {
  background: #1a2338 !important; border: 2px solid #00d4ff !important;
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.25), 0 6px 20px rgba(0, 212, 255, 0.45) !important;
}
.lang-switch:hover .lang-current { border: 2px solid transparent !important; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important; }
.lang-menu {
  position: absolute; top: 100%; right: 0; margin-top: 0px;
  background: #1f252f; border: 1px solid #444; border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); display: none; min-width: 180px; padding: 8px 0; z-index: 9999;
}
.lang-switch:hover .lang-menu { display: block; }
.flag-wrapper { display: inline-flex; padding: 2px; background: transparent; border: none; }
.lang-current img, .lang-option img { width: 26px; height: 17px; object-fit: cover; border-radius: 3px; }
.arrow { font-size: 19px; line-height: 1; color: #ffffff; }
.lang-option { display: flex; align-items: center; gap: 10px; padding: 10px 18px; color: #eee; text-decoration: none; font-size: 15px; }
.lang-option:hover { background: #2a323f; }

/* ===== FOOTER (base oscura) ===== */
.footer-pro {
  background: #080b14; color: #aaa; padding: 80px 0px 40px;
  margin-left: 0; margin-right: 0; margin-bottom: 0;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 40px; margin-bottom: 50px; }
.footer-pro h4 { color: white; margin-bottom: 15px; font-size: 14px; }
.footer-pro a { display: block; text-decoration: none; color: #888; font-size: 14px; margin-bottom: 10px; transition: 0.3s; }
.footer-pro a:hover { color: #00d4ff; }
.footer-bottom { border-top: 1px solid #222; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }

/* FOOTER en modo claro */
body:not(.dark) .footer-pro { background: #f8fafd !important; color: #475569 !important; }
body:not(.dark) .footer-pro h4 { color: #1e2937 !important; }
body:not(.dark) .footer-pro a { color: #64748b !important; }
body:not(.dark) .footer-pro a:hover { color: #0f172a !important; }
body:not(.dark) .footer-bottom { border-top-color: #e2e8f0 !important; color: #64748b !important; }

/* IDIOMAS — modo claro premium */
body:not(.dark) .header .lang-current {
  background: #ffffff !important; color: #0a0f2c !important;
  border: 2px solid transparent !important; box-shadow: 0 8px 25px rgba(10, 15, 44, 0.08) !important;
  transition: all 0.3s ease !important;
}
body:not(.dark) .header .lang-current .arrow { color: #0a0f2c !important; }
body:not(.dark) .lang-current:hover,
body:not(.dark) .lang-switch:hover .lang-current {
  background: #ffffff !important; border: 2px solid #00d4ff !important;
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.2), 0 10px 30px rgba(0, 212, 255, 0.35) !important;
}
body:not(.dark) .lang-menu {
  background: #ffffff !important; border: 1px solid #e2e8f0 !important; border-radius: 14px !important;
  box-shadow: 0 15px 40px rgba(10, 15, 44, 0.1) !important; padding: 6px 0 !important;
}
body:not(.dark) .lang-menu .lang-option { color: #1e2937 !important; font-weight: 500 !important; }
body:not(.dark) .lang-menu .lang-option:hover { background: #f1f5f9 !important; color: #0099ff !important; }

/* ============================================================
   MEGA MENÚ — copiado literal de styles.css
   ============================================================ */
.nav-item { position: relative; display: inline-block; }
.nav-link {
  text-decoration: none; color: inherit; font-weight: 500; padding: 12px 14px !important;
  border-radius: 8px; transition: background 0.25s ease; display: inline-flex;
  align-items: center; gap: 4px; height: 46px; line-height: 1;
}
.nav-link:hover { background: rgba(0, 212, 255, 0.08); }
.chevron { font-size: 0.68em; transition: transform 0.3s ease; position: relative; top: -1px; }
.desktop-nav a { display: inline-flex !important; align-items: center !important; height: 46px !important; padding: 12px 14px !important; }
.mega-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 15px; opacity: 0; visibility: hidden; transition: all 0.3s ease;
  z-index: 10000; pointer-events: none; width: 100vw;
}
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; pointer-events: auto; }
.mega-menu-content {
  background: white; border-radius: 22px; box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.22);
  border: 1px solid #e2e8f0; margin: 0 auto; max-width: 1180px; width: 95%; padding: 50px 48px;
}
body.dark .mega-menu-content { background: #0f1629; border-color: rgba(255, 255, 255, 0.09); }
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 52px; }
.mega-column { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.mega-column h4 {
  font-size: 14.8px; font-weight: 700; color: #00d4ff; margin-bottom: 28px;
  letter-spacing: 0.5px; text-transform: uppercase; line-height: 1.25; flex-shrink: 0;
}
.mega-column a { display: block; padding: 2px 6px; color: var(--text-light); text-decoration: none; font-size: 15.4px; line-height: 1.4; flex-shrink: 0; }
body.dark .mega-column a { color: var(--text-dark); }
.mega-column a:hover { color: #00d4ff; padding-left: 12px; }

@media (max-width: 991px) {
  .mega-menu { display: none !important; }
}

/* ============================================================
   VISIBILIDAD MENÚ ESCRITORIO / MÓVIL — copiado literal
   ============================================================ */
@media (max-width: 991px) {
  .desktop-nav, .nav-right, .header .lang-switch { display: none !important; }
  .mobile-menu-btn { display: block; }
  .header { position: relative; z-index: 100; }
  .mobile-menu { z-index: 999999 !important; }
  .mobile-menu-links { z-index: 1000000 !important; box-shadow: -15px 0 40px rgba(0, 0, 0, 0.5); }
  .close-menu-btn { z-index: 1000001 !important; }
  section, .container, .footer-pro { position: relative; z-index: 1 !important; }
  body.menu-open { overflow: hidden; }
  .mobile-theme-btn {
    display: block !important; height: 38px; width: 38px; font-size: 1.2rem; margin-left: 8px;
    position: relative !important; z-index: 999999 !important; pointer-events: auto !important;
  }
  .desktop-only.nav-right { display: none !important; }
  .theme-toggle.mobile-theme-btn { border: 1px solid rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.1); color: #fff; }
  body.light .theme-toggle.mobile-theme-btn { border-color: var(--border-light); background: rgba(0, 0, 0, 0.08); color: var(--primary); }
}
@media (min-width: 992px) {
  .mobile-menu, .mobile-menu-btn, .mobile-theme-btn { display: none !important; }
}

/* ============================================================
   DESPLEGABLE DE IDIOMAS EN MÓVIL — copiado literal
   ============================================================ */
@media (max-width: 991px) {
  .mobile-lang-container {
    display: block !important; visibility: visible !important; opacity: 1 !important; width: 100% !important;
    margin-top: 15px !important; padding-top: 15px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important; box-sizing: border-box !important;
  }
  .mobile-lang-switch { position: relative !important; display: block !important; width: 100% !important; }
  .mobile-lang-switch .lang-current {
    display: flex !important; align-items: center !important; justify-content: space-between !important; width: 100% !important;
    padding: 12px 16px !important; background: rgba(255, 255, 255, 0.08) !important; border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important; color: #ffffff !important; font-weight: 500 !important; font-size: 1rem !important;
    cursor: pointer !important; box-sizing: border-box !important;
  }
  .mobile-lang-switch .lang-current .arrow { font-size: 1rem !important; color: #ffffff !important; transition: transform 0.3s ease !important; }
  .mobile-lang-switch.active .lang-current .arrow { transform: rotate(180deg) !important; }
  .mobile-lang-switch .lang-menu {
    display: none !important; position: relative !important; top: auto !important; bottom: auto !important; left: 0 !important;
    width: 100% !important; margin-top: 8px !important; margin-bottom: 0 !important; background: #151d3b !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important; border-radius: 10px !important; box-shadow: none !important;
    overflow: hidden !important; z-index: 10 !important;
  }
  .mobile-lang-switch.active .lang-menu { display: block !important; }
  .mobile-lang-switch .lang-menu .lang-option {
    display: flex !important; align-items: center !important; gap: 12px !important; padding: 12px 16px !important;
    color: #ffffff !important; text-decoration: none !important; font-size: 0.95rem !important;
  }
  .mobile-lang-switch .lang-menu .lang-option:not(:last-child) { border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; }
  .mobile-lang-switch .lang-menu .lang-option:hover { background: rgba(0, 212, 255, 0.2) !important; color: #00d4ff !important; }
}
.mobile-lang-switch .flag-wrapper { display: inline-flex !important; align-items: center !important; width: 22px !important; }
.mobile-lang-switch .flag-wrapper img { width: 100% !important; height: auto !important; border-radius: 3px !important; }

/* Corrección final: desplegable móvil dentro de #mobileMenu — copiado literal */
@media (max-width: 991px) {
  #mobileMenu .mobile-link:last-child { border-bottom: none !important; }
  #mobileMenu .mobile-lang-container {
    display: block !important; position: relative !important; width: 100% !important;
    margin-top: 15px !important; padding-top: 15px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important; box-sizing: border-box !important;
  }
  #mobileMenu .mobile-lang-switch { position: relative !important; display: block !important; width: 100% !important; }
  #mobileMenu .mobile-lang-switch .lang-current {
    display: flex !important; align-items: center !important; justify-content: space-between !important; width: 100% !important;
    background: rgba(255, 255, 255, 0.08) !important; border: 1px solid rgba(255, 255, 255, 0.2) !important; color: #ffffff !important;
    padding: 12px 16px !important; border-radius: 10px !important; font-size: 1rem !important; box-sizing: border-box !important; cursor: pointer !important;
  }
  #mobileMenu .mobile-lang-switch .lang-current span { color: #ffffff !important; }
  #mobileMenu .mobile-lang-switch .lang-menu { display: none !important; }
  #mobileMenu .mobile-lang-switch.active .lang-menu {
    display: block !important; position: absolute !important; bottom: calc(100% + 8px) !important; left: 0 !important; width: 100% !important;
    background: #151d3b !important; border: 1px solid rgba(255, 255, 255, 0.3) !important; border-radius: 10px !important;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7) !important; padding: 6px 0 !important; z-index: 2147483647 !important;
  }
  #mobileMenu .mobile-lang-switch.active .lang-menu .lang-option {
    display: flex !important; align-items: center !important; gap: 12px !important; padding: 12px 16px !important;
    color: #ffffff !important; text-decoration: none !important; font-size: 0.95rem !important;
  }
  #mobileMenu .mobile-lang-switch.active .lang-menu .lang-option:hover { background: rgba(0, 212, 255, 0.2) !important; color: #00d4ff !important; }
}

/* ============================================================
   BOTONES — copiado literal de styles.css
   ============================================================ */
.btn {
  display: inline-block; margin-top: 20px; padding: 12px 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0a0f2c; text-decoration: none; border-radius: 50px; font-weight: 600; transition: all 0.3s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0, 212, 255, 0.35); }

.final-cta { background: #ffffff; padding: 120px 20px; text-align: center; margin: 80px 0; }
body.dark .final-cta { background: #0d153a; border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); }
.final-cta-content { max-width: 780px; margin: 0 auto; }
.final-cta h2 { font-size: 2.35rem; line-height: 1.2; margin-bottom: 24px; color: #0a0f2c; }
body.dark .final-cta h2 { color: #ffffff; }
.final-cta p { font-size: 1.28rem; line-height: 1.55; color: #475569; max-width: 680px; margin: 0 auto 40px; }
body.dark .final-cta p { color: #94a3b8; }
.btn-big {
  display: inline-block; padding: 18px 42px !important; font-size: 1.15rem !important; font-weight: 600;
  border-radius: 50px; background: linear-gradient(135deg, #00d4ff, #0099ff); color: #0a0f2c;
  text-decoration: none; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}
.btn-big:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0, 212, 255, 0.45); }

/* ============================================================
   ANIMACIONES SCROLL REVEAL — copiado literal
   ============================================================ */
.fade-up, .fade-left, .fade-right { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1); }
.fade-up.visible, .fade-left.visible, .fade-right.visible { opacity: 1; transform: translateY(0); }
.fade-left { transform: translateX(-60px); }
.fade-right { transform: translateX(60px); }
.fade-up.delay, .delay { transition-delay: 0.1s; }
.fade-up.delay2, .delay2 { transition-delay: 0.2s; }
.fade-up.delay3 { transition-delay: 0.3s; }
/* Extensiones propias de esta página (no existen en styles.css, no chocan con nada) */
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

@media (max-width: 768px) {
  .container { width: 94%; max-width: 100%; padding: 0 15px; box-sizing: border-box; }
  section { padding: 55px 0 !important; }
  .btn, .btn-big { box-sizing: border-box; display: block !important; width: 100% !important; max-width: 340px !important; margin: 25px auto !important; padding: 15px 30px !important; font-size: 1rem !important; text-align: center; }
  h2 { font-size: 1.6rem !important; line-height: 1.25 !important; }
  h3 { font-size: 1.3rem !important; }
  p { font-size: 0.98rem !important; line-height: 1.6 !important; }
  .final-cta { padding: 70px 20px !important; }
  .final-cta h2 { font-size: 1.75rem !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 35px !important; }
  .footer-pro { padding: 60px 20px 40px !important; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

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

/* ==========================================================================
   A PARTIR DE AQUÍ: estilos EXCLUSIVOS de la landing de Móstoles
   (no existen en styles.css, no afectan a ninguna otra página del sitio)
   ========================================================================== */

/* ===== BREADCRUMB ===== */
.breadcrumb-nav { padding: 14px 0; border-bottom: 1px solid var(--border-light); }
body.dark .breadcrumb-nav { border-bottom: 1px solid var(--border-dark); }
.breadcrumb-nav a { color: var(--text-soft-light); font-size: 14px; text-decoration: none; }
.breadcrumb-nav span { font-size: 14px; color: var(--text-soft-light); margin: 0 4px; }
.breadcrumb-nav [aria-current="page"] { color: var(--primary); font-weight: 600; }
body.dark .breadcrumb-nav [aria-current="page"] { color: #fff; }

/* ===== HERO ===== */
.mostoles-hero { position: relative; overflow: hidden; padding: 110px 0 90px; }
.mostoles-hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.35; }
.orb-1 { width: 380px; height: 380px; background: var(--accent); top: -120px; right: -80px; }
.orb-2 { width: 300px; height: 300px; background: var(--accent2); bottom: -100px; left: -80px; }
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,212,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,212,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.location-badge {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: rgba(0, 212, 255, 0.1); color: var(--accent2); font-weight: 600; font-size: 13px; margin-bottom: 18px;
}
.mostoles-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 0 0 18px; }
.hero-content p { font-size: 1.1rem; margin-bottom: 28px; }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; align-items: center; }
.hero-cta-group .btn { margin-top: 0; }
.hero-trust { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 14px; color: var(--text-soft-light); }
body.dark .hero-trust { color: var(--text-soft-dark); }

.btn-outline {
  display: inline-block; background: transparent; color: var(--primary) !important;
  border: 1px solid var(--border-light); padding: 12px 26px; border-radius: 50px;
  font-weight: 600; text-decoration: none; transition: 0.25s;
}
body.dark .btn-outline { color: #fff !important; border-color: var(--border-dark); }
.btn-outline:hover { background: rgba(0,212,255,0.08); }

@media (max-width: 768px) {
  .hero-cta-group .btn, .hero-cta-group .btn-outline { width: 100% !important; max-width: 340px; margin: 0 auto; }
}

/* ===== BLOQUES GENERALES ===== */
.mostoles-block.alt { background: var(--bg-light); }
body.dark .mostoles-block.alt { background: rgba(255,255,255,0.02); }
.block-header { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.section-tag { display: inline-block; color: var(--accent2); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.block-header h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 12px; }
.lead { font-size: 1.05rem; }
.intro-block h2 { font-size: clamp(1.5rem, 3vw, 2rem); }

/* SERVICIOS */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.feature-card { background: var(--card-bg-light); border: 1px solid var(--border-light); border-radius: 16px; padding: 28px; transition: 0.25s; }
body.dark .feature-card { background: var(--card-bg-dark); border: 1px solid var(--border-dark); }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(0,0,0,0.06); }
.feature-icon { font-size: 28px; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.05rem; margin: 0 0 8px; }
.feature-card p { font-size: 14px; margin: 0 0 14px; }
.card-link { font-size: 14px; font-weight: 600; color: var(--accent2); text-decoration: none; }
.card-link:hover { text-decoration: underline; }

/* BENEFICIOS */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.benefit { background: var(--card-bg-light); border: 1px solid var(--border-light); border-radius: 14px; padding: 22px; display: flex; align-items: flex-start; gap: 12px; }
body.dark .benefit { background: var(--card-bg-dark); border: 1px solid var(--border-dark); }
.benefit span { font-size: 20px; }
.benefit p { margin: 0; font-size: 14px; color: var(--text-light); }
body.dark .benefit p { color: var(--text-dark); }

/* PROCESO */
.process-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 22px; max-width: 720px; margin-inline: auto; }
.process-list li { display: flex; gap: 20px; align-items: flex-start; }
.step-num { font-size: 1.4rem; font-weight: 800; color: var(--accent2); min-width: 46px; }
.process-list h3 { font-size: 1.05rem; margin: 0 0 6px; }
.process-list p { margin: 0; font-size: 14px; }

/* RESULTADOS MINI */
.results-mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.result-mini { background: var(--card-bg-light); border: 1px solid var(--border-light); border-radius: 16px; overflow: hidden; }
body.dark .result-mini { background: var(--card-bg-dark); border: 1px solid var(--border-dark); }
.result-mini img { width: 100%; height: 180px; object-fit: cover; display: block; }
.result-mini h3 { font-size: 1rem; margin: 16px 20px 6px; }
.result-mini p { font-size: 14px; margin: 0 20px 10px; }
.result-mini a { display: block; margin: 0 20px 20px; font-size: 14px; font-weight: 600; color: var(--accent2); text-decoration: none; }
.result-mini a:hover { text-decoration: underline; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card-bg-light); border: 1px solid var(--border-light); border-radius: 12px; padding: 4px 20px; }
body.dark .faq-item { background: var(--card-bg-dark); border: 1px solid var(--border-dark); }
.faq-item summary { cursor: pointer; padding: 16px 0; font-weight: 600; font-size: 15px; color: var(--primary); list-style: none; display: flex; justify-content: space-between; align-items: center; }
body.dark .faq-item summary { color: #fff; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 20px; color: var(--accent2); margin-left: 12px; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding-bottom: 18px; margin: 0; font-size: 14px; }

/* FORMULARIO DE CONTACTO */
.mostoles-contact { max-width: 640px; }
.mostoles-form { display: flex; flex-direction: column; gap: 18px; margin-top: 10px; }
.input-group { position: relative; }
.input-group input, .input-group textarea {
  width: 100%; padding: 14px 16px; border-radius: 10px; border: 1px solid var(--border-light);
  background: var(--card-bg-light); color: var(--text-light); font-family: inherit; font-size: 15px;
}
body.dark .input-group input, body.dark .input-group textarea { background: var(--card-bg-dark); border: 1px solid var(--border-dark); color: #fff; }
.input-group textarea { min-height: 120px; resize: vertical; }
.input-group label { display: none; }
.mostoles-form .btn { margin-top: 6px; align-self: flex-start; border: none; cursor: pointer; }
.success-msg { display: none; margin-top: 4px; color: #16a34a; font-weight: 600; font-size: 14px; }
.success-msg.show { display: block; }
.loader { display: none; }

@media (max-width: 768px) {
  .mostoles-form .btn { align-self: center; }
}
