/* Paleta oficial: https://mgmultiservicio.com/ — misma en empresa-web y web-admin */
:root {
  --primary: #ea580c;
  --primary-dark: #c2410c;
  --primary-light: #ffedd5;
  --accent-yellow: #fbbf24;
  --accent-red: #dc2626;
  --text: #0f0f0f;
  --text-soft: #525252;
  --white: #ffffff;
  --bg: #fafafa;
  --bg-card: #ffffff;
  --gray: #737373;
  --shadow: 0 2px 12px rgba(234,88,12,0.12);
  --shadow-hover: 0 8px 28px rgba(234,88,12,0.18);
  --radius: 14px;
  --radius-full: 9999px;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html, body { min-height: 100%; min-height: -webkit-fill-available; }
body { margin: 0; font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; font-size: 1.0625rem; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

.top-bar {
  background: #1a1a1a;
  color: var(--white);
  padding: 12px 20px;
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
  padding-top: max(12px, env(safe-area-inset-top));
  font-size: 0.9375rem;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.25rem;
  font-weight: 600;
}
.top-bar a { color: var(--white); }
.top-bar a:hover { text-decoration: underline; opacity: 0.9; }
.top-bar .badge { background: var(--accent-red); color: var(--white); padding: 5px 14px; border-radius: var(--radius-full); font-size: 0.8125rem; font-weight: 700; }
header {
  background: var(--white);
  color: var(--text);
  padding: 1.35rem 1.5rem;
  padding-left: max(1.5rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
  text-align: center;
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--primary);
}
header h1 { margin: 0; font-family: 'Outfit', sans-serif; font-size: clamp(1.9rem, 4.5vw, 2.65rem); font-weight: 700; color: var(--primary); letter-spacing: -0.02em; }
header h1 a { color: inherit; }
header .tagline { margin: 10px 0 0; font-size: 1.25rem; color: var(--text-soft); font-weight: 500; }
nav {
  background: var(--white);
  text-align: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--primary-light);
}
nav a {
  color: var(--text);
  margin: 0 4px;
  font-weight: 500;
  padding: 11px 18px;
  display: inline-block;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
nav a:hover { color: var(--primary); background: var(--primary-light); }
nav a.nav-register { background: var(--primary); color: var(--white); font-weight: 600; }
nav a.nav-register:hover { background: var(--primary-dark); color: var(--white); }

.hero {
  position: relative;
  text-align: center;
  color: white;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #0f0f0f 0%, #262626 35%, #ea580c 100%);
  background-image: url('/img/hero-fondo.png'), linear-gradient(145deg, rgba(28,25,23,0.75) 0%, rgba(234,88,12,0.65) 100%);
  background-size: cover, cover;
  background-position: center 28%, center;
  background-repeat: no-repeat, no-repeat;
  filter: brightness(0.95);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
}
.hero-content { position: relative; z-index: 1; padding: 2rem 1.25rem; max-width: 680px; width: 100%; }
.hero h2 { margin: 0 0 0.75rem; font-size: clamp(1.65rem, 3.8vw, 2.5rem); font-weight: 700; color: var(--white); text-shadow: 0 1px 4px rgba(0,0,0,0.4); line-height: 1.25; }
.hero p { margin: 0 0 1.25rem; font-size: clamp(1rem, 2vw, 1.125rem); color: rgba(255,255,255,0.95); line-height: 1.65; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; align-items: center; }
.hero-cta a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 22px; border-radius: var(--radius); font-weight: 700; font-size: 1rem; transition: var(--transition); }
.btn-primary { background: var(--accent-red); color: var(--white); border: none; box-shadow: var(--shadow); font-weight: 700; }
.btn-primary:hover { background: #b91c1c; color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(220,38,38,0.35); }
.hero .btn-primary { background: var(--accent-yellow); color: var(--text); box-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.hero .btn-primary:hover { background: #f59e0b; color: var(--text); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.95); }
.btn-outline:hover { background: rgba(255,255,255,0.2); border-color: var(--white); }
.hero-cta-secondary { margin-top: 0.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.2); }
.hero-cta-secondary a { font-size: 0.875rem; padding: 10px 18px; }

section { padding: 3rem 1.5rem; max-width: 1100px; margin: 0 auto; }
section h2 { color: var(--primary); font-family: 'Outfit', sans-serif; text-align: center; margin: 0 0 0.75rem; font-size: clamp(1.5rem, 2.6vw, 1.9rem); font-weight: 700; letter-spacing: -0.02em; }
.section-intro { text-align: center; color: var(--text-soft); margin: 0 auto 1.75rem; max-width: 580px; font-size: 1.0625rem; line-height: 1.7; }
.intro-section { padding-top: 2.5rem; }
.intro-text { max-width: 720px; margin: 0 auto; text-align: center; color: var(--text-soft); font-size: 1.125rem; line-height: 1.75; }
.page-links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }
.page-links a { padding: 14px 22px; background: var(--primary-light); color: var(--primary); border-radius: var(--radius); font-weight: 600; font-size: 1rem; }
.page-links a:hover { background: var(--primary); color: var(--white); }

.app-section { background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-card) 60%); border-radius: 16px; padding: 3rem 1.5rem; box-shadow: var(--shadow); border: 1px solid var(--primary-light); }
.app-section h2 { color: var(--primary); }
.app-benefits { list-style: none; padding: 0; margin: 0 auto 1.5rem; max-width: 600px; }
.app-benefits li { padding: 0.75rem 0; border-bottom: 1px solid rgba(234,88,12,0.15); color: var(--text-soft); font-size: 1.0625rem; line-height: 1.65; }
.app-benefits li:last-child { border-bottom: 0; }
.app-benefits strong { color: var(--text); }
.app-cta-double { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; margin-top: 1.5rem; }
.app-cta-double a { margin: 0; }
.btn-app-download { display: inline-flex; align-items: center; gap: 10px; padding: 18px 34px; background: var(--primary); color: var(--white); font-weight: 700; font-size: 1.0625rem; border-radius: var(--radius-full); transition: var(--transition); box-shadow: var(--shadow); }
.btn-app-download:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.app-note { text-align: center; font-size: 0.8125rem; color: var(--text-soft); margin: 0.5rem 0 0; }
.app-how-title { text-align: center; font-size: clamp(1.2rem, 2vw, 1.4rem); color: var(--primary); font-weight: 700; margin: 2rem 0 0.5rem; }
.app-how-intro { text-align: center; color: var(--text-soft); font-size: 1rem; margin: 0 auto 1.5rem; max-width: 480px; }
.app-phones { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-bottom: 2rem; }
.app-phone-mockup { flex: 0 0 auto; text-align: center; max-width: 220px; }
.app-phone-frame {
  width: 160px;
  height: 320px;
  margin: 0 auto 0.75rem;
  background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
  border-radius: 32px;
  padding: 12px;
  box-shadow:
    0 0 0 2px #444,
    0 0 0 4px #1a1a1a,
    0 12px 32px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.06);
  border: none;
  position: relative;
}
.app-phone-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 20px;
  background: #0a0a0a;
  border-radius: 0 0 20px 20px;
  z-index: 2;
  box-shadow: inset 0 0 0 1px #333;
}
.app-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  background: var(--bg-card);
  padding: 2rem 0.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-soft);
  line-height: 1.4;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}
.app-phone-screen::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #ccc;
  border-radius: 2px;
}
.app-screen-label { font-weight: 700; color: var(--primary); font-size: 0.9375rem; margin-bottom: 0.5rem; display: block; }
.app-phone-caption { margin: 0; font-size: 0.9375rem; color: var(--text); font-weight: 500; }
.app-cta-double a.btn-app-register,
a.btn-app-register { background: var(--white); color: var(--primary); border: 2px solid var(--primary); padding: 14px 22px; border-radius: var(--radius); font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; transition: var(--transition); }
.app-cta-double a.btn-app-register:hover,
a.btn-app-register:hover { background: var(--primary-light); color: var(--primary-dark); border-color: var(--primary-dark); }

.offer-list { list-style: none; padding: 0; margin: 0 auto; max-width: 640px; }
.offer-list li { padding: 1rem 1.25rem; margin-bottom: 0.5rem; background: var(--bg-card); border-radius: var(--radius); box-shadow: var(--shadow); border-left: 4px solid var(--primary); transition: var(--transition); }
.offer-list li:hover { box-shadow: var(--shadow-hover); }
.offer-list li:last-child { margin-bottom: 0; }

.services { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.service { background: var(--bg-card); border-radius: var(--radius); overflow: hidden; flex: 1 1 280px; max-width: 360px; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--primary-light); }
.service:hover { box-shadow: var(--shadow-hover); border-color: rgba(234,88,12,0.4); }
.service img { border-radius: var(--radius) var(--radius) 0 0; width: 100%; height: 200px; object-fit: cover; display: block; }
.service img.service-img-top { object-position: top center; }
.service-body { padding: 1.5rem; }
.service h3 { margin: 0 0 0.5rem; font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--primary); }
.service p { margin: 0; color: var(--text-soft); font-size: 1.0625rem; line-height: 1.65; }

/* ========== Carrusel lateral de fotos (Trabajos realizados) ========== */
.trabajos-section {
  padding-left: 0;
  padding-right: 0;
}
.carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.carousel-no-photos .carousel-arrow {
  display: none;
}
.carousel-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  font-family: inherit;
  box-shadow: var(--shadow);
}
.carousel-arrow:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.06);
  box-shadow: var(--shadow-hover);
}
.carousel-arrow:active {
  transform: scale(0.98);
}
.carousel-viewport {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.75rem 0 1rem;
  cursor: grab;
  user-select: none;
  border-radius: var(--radius);
  background: var(--bg);
}
.carousel-viewport:active {
  cursor: grabbing;
}
.carousel-viewport::-webkit-scrollbar {
  height: 8px;
}
.carousel-viewport::-webkit-scrollbar-track {
  background: var(--primary-light);
  border-radius: 4px;
}
.carousel-viewport::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}
.carousel-viewport::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}
.carousel-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.75rem;
  width: max-content;
  min-width: max-content;
  padding: 0 0.25rem;
  box-sizing: border-box;
}
.carousel-item {
  flex: 0 0 auto;
  width: 120px;
  min-width: 120px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--primary-light);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--bg-card);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.carousel-item:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(234, 88, 12, 0.45);
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.carousel-empty {
  display: none;
  text-align: center;
  color: var(--text-soft);
  padding: 2rem 1rem;
  margin: 0;
  font-size: 1rem;
}

/* Responsive: móvil */
@media (max-width: 640px) {
  .carousel-wrap {
    padding: 0 0.5rem;
    gap: 0.5rem;
  }
  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .carousel-item {
    width: 100px;
    min-width: 100px;
    height: 75px;
  }
  .carousel-viewport {
    padding: 0.5rem 0 0.75rem;
  }
}

/* Responsive: tablets y desktop pequeño */
@media (min-width: 641px) and (max-width: 900px) {
  .carousel-item {
    width: 110px;
    min-width: 110px;
    height: 82px;
  }
}

.testimonials { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.testimonial { background: var(--bg-card); padding: 1.5rem 1.75rem; border-radius: var(--radius); flex: 1 1 280px; max-width: 400px; box-shadow: var(--shadow); position: relative; transition: var(--transition); border: 1px solid var(--primary-light); }
.testimonial:hover { box-shadow: var(--shadow-hover); }
.testimonial::before { content: '"'; position: absolute; top: 12px; left: 18px; font-size: 2.25rem; color: var(--primary); opacity: 0.5; font-family: Georgia, serif; }
.testimonial p { margin: 0 0 1rem; font-style: italic; color: var(--text-soft); padding-left: 0.25rem; font-size: 1.0625rem; line-height: 1.6; }
.testimonial strong { color: var(--text); font-size: 0.9375rem; font-weight: 600; }
.testimonial-badge { display: inline-block; margin-bottom: 0.75rem; padding: 5px 12px; background: var(--primary-light); color: var(--primary); border-radius: 6px; font-size: 0.8125rem; font-weight: 600; }
.testimonial-rating { margin: 0 0 0.5rem !important; font-style: normal !important; color: #f59e0b; letter-spacing: 0.05em; }
.testimonial-photos { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.75rem 0 1rem; }
.testimonial-photo-link { display: block; width: 80px; height: 80px; border-radius: 8px; overflow: hidden; border: 1px solid var(--primary-light); box-shadow: 0 1px 3px rgba(0,0,0,0.08); transition: transform 0.2s, box-shadow 0.2s; }
.testimonial-photo-link:hover { transform: scale(1.05); box-shadow: 0 4px 12px rgba(234,88,12,0.2); }
.testimonial-photo-link img { width: 100%; height: 100%; object-fit: cover; display: block; }
.trustindex-container { min-height: 200px; margin: 1rem 0; }
.trustindex-container iframe { max-width: 100%; }

#contact { background: var(--bg-card); border-radius: 16px; box-shadow: var(--shadow); padding: 2.25rem 1.5rem; border: 1px solid var(--primary-light); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; margin-bottom: 1.75rem; }
.contact-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.25rem; background: var(--bg); border-radius: var(--radius); transition: var(--transition); }
.contact-card:hover { background: var(--primary-light); }
.contact-card .label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-soft); margin-bottom: 4px; }
.contact-card a { color: var(--primary); font-weight: 600; }
.contact-card a:hover { color: var(--primary-dark); text-decoration: underline; }
.map-container { width: 100%; height: 320px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-container iframe { width: 100%; height: 100%; border: 0; display: block; }

footer { background: #0f0f0f; color: var(--gray); text-align: center; padding: 1.5rem 1rem; font-size: 0.9375rem; }
footer p { margin: 0; }
footer a { color: var(--accent-yellow); }
footer a:hover { color: var(--white); text-decoration: underline; }

.whatsapp { position: fixed; bottom: 20px; right: 20px; z-index: 999; }
.whatsapp a { background: #25D366; color: white; padding: 14px 22px; border-radius: var(--radius-full); font-size: 1rem; font-weight: 600; display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.2); transition: var(--transition); }
.whatsapp a:hover { opacity: 0.95; }
.whatsapp img { width: 22px; height: 22px; }

/* ========== Estilo tipo Cronoshare: hero con búsqueda, pasos, stats ========== */
.hero-cronoshare { min-height: 420px; }
.hero-cronoshare .hero-content { max-width: 720px; padding: 2.5rem 1.25rem; }
.hero-cronoshare .hero-title { font-size: clamp(1.9rem, 4.5vw, 2.9rem); font-weight: 800; line-height: 1.2; margin: 0 0 0.5rem; letter-spacing: -0.02em; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.35); }
.hero-cronoshare .hero-subtitle { font-size: clamp(1.2rem, 2.2vw, 1.5rem); opacity: 0.95; margin: 0 0 1.25rem; font-weight: 500; color: rgba(255,255,255,0.95); }

.search-cta-block {
  max-width: 540px;
  margin: 0 auto 0.35rem;
  background: var(--white);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  overflow: hidden;
  border: none;
  min-height: 56px;
}
.search-cta-block .search-cta-input {
  flex: 1 1 180px;
  min-width: 0;
  padding: 16px 20px;
  border: 0;
  font-size: 1rem;
  color: var(--text);
  background: transparent;
  display: flex;
  align-items: center;
}
.search-cta-block .search-cta-btn {
  padding: 16px 22px;
  background: var(--accent-red);
  color: var(--white);
  font-weight: 700;
  border: 0;
  border-radius: 0;
  font-size: 1rem;
  white-space: nowrap;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-cta-block:hover .search-cta-btn { background: #b91c1c; }
.search-cta-note { font-size: 0.9375rem; opacity: 0.9; margin-top: 0.35rem; color: rgba(255,255,255,0.95); }

.steps-section { background: var(--white); padding: 3rem 1.5rem; box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
.steps-section .section-eyebrow { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); font-weight: 600; margin-bottom: 0.35rem; text-align: center; }
.steps-section h2 { font-size: clamp(1.35rem, 2.4vw, 1.6rem); margin-bottom: 0.5rem; text-align: center; }
.steps-section .section-sub { color: var(--text-soft); max-width: 540px; margin: 0 auto 2rem; text-align: center; font-size: 1.0625rem; line-height: 1.6; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}
.step-card {
  background: var(--bg);
  border-radius: 14px;
  padding: 1.6rem;
  text-align: center;
  border: 1px solid var(--primary-light);
  transition: var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-hover); border-color: rgba(234,88,12,0.4); }
.step-card .step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9rem;
}
.step-card h3 { margin: 0 0 0.4rem; font-size: 1.1rem; color: var(--text); font-weight: 600; }
.step-card p { margin: 0; font-size: 1rem; color: var(--text-soft); line-height: 1.55; }

.stats-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 1.85rem 1.5rem;
  background: linear-gradient(135deg, #0f0f0f 0%, #262626 50%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}
.stats-strip .stat-item { min-width: 100px; }
.stats-strip .stat-item .stat-num { display: block; font-size: clamp(1.25rem, 2.6vw, 1.65rem); font-weight: 800; line-height: 1.25; color: var(--accent-yellow); }
.stats-strip .stat-item .stat-label { font-size: 0.9375rem; opacity: 0.92; }

.services-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.services-quick a {
  display: inline-block;
  padding: 11px 20px;
  background: var(--bg-card);
  color: var(--text);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  border: 1px solid var(--primary-light);
  transition: var(--transition);
}
.services-quick a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.cta-professional {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-card) 55%);
  border-radius: 14px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1px solid var(--primary-light);
}
.cta-professional h2 { margin-bottom: 0.5rem; }
.cta-professional p { color: var(--text-soft); margin: 0 0 1.35rem; font-size: 1.0625rem; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.cta-professional .btn-wrap { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; align-items: center; }
.cta-professional .btn-wrap a { flex: 0 1 auto; font-size: 1rem; padding: 14px 22px; }

@media (max-width: 600px) {
  .top-bar { font-size: 0.8rem; gap: 0.5rem; padding: 8px 12px; }
  nav { padding: 0.5rem 8px; }
  nav a { margin: 2px; padding: 8px 12px; font-size: 0.875rem; }
  .app-phones { flex-direction: column; align-items: center; gap: 1.5rem; }
  .app-phone-mockup { max-width: 100%; }
  .hero { min-height: 340px; }
  .hero-bg {
    background-image: url('/img/hero-fondo.png'), linear-gradient(145deg, rgba(28,25,23,0.75) 0%, rgba(234,88,12,0.65) 100%);
    background-size: cover, cover;
    background-position: center 28%, center;
  }
  .hero-cronoshare { min-height: 380px; }
  .hero-cronoshare .hero-content { padding: 1.75rem 1rem; }
  .hero-cta { flex-direction: row; gap: 0.5rem; }
  .hero-cta a { padding: 10px 16px; font-size: 0.875rem; }
  .search-cta-block { flex-direction: column; border-radius: var(--radius); max-width: 100%; min-height: auto; }
  .search-cta-block .search-cta-input { width: 100%; padding: 12px 16px; justify-content: center; }
  .search-cta-block .search-cta-btn { width: 100%; padding: 12px 16px; }
  .steps-section { padding: 2rem 1rem; }
  .steps-section .section-sub { margin-bottom: 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
  .step-card { padding: 1.25rem; }
  .stats-strip { padding: 1.25rem 1rem; gap: 1rem 1.5rem; }
  .stats-strip .stat-item .stat-num { font-size: 1.1rem; }
  section { padding: 2rem 1rem; }
  .cta-professional { margin: 0 1rem; padding: 2rem 1rem; }
  .cta-professional .btn-wrap { flex-direction: column; }
  .cta-professional .btn-wrap a { width: 100%; max-width: 280px; justify-content: center; }
}
