:root {
  --blue-900: #062a56;
  --blue-800: #07366d;
  --blue-700: #0a4a84;
  --petrol: #0b5b73;
  --orange: #ff8a1d;
  --orange-dark: #e46f00;
  --white: #ffffff;
  --gray-50: #f7f9fc;
  --gray-100: #eef3f8;
  --gray-200: #dbe4ee;
  --gray-500: #667085;
  --gray-700: #344054;
  --shadow: 0 20px 50px rgba(6, 42, 86, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--blue-900);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6, 42, 86, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand img {
  width: 245px;
  max-height: 74px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  color: var(--gray-700);
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 999px;
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--blue-900);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta,
.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(255, 138, 29, 0.28);
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid rgba(6, 42, 86, 0.14);
  box-shadow: 0 10px 24px rgba(6, 42, 86, 0.08);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(6, 42, 86, 0.14);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(6, 42, 86, 0.14);
  border-radius: 14px;
  background: var(--white);
  padding: 12px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--blue-900);
  border-radius: 999px;
  margin: 5px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 138, 29, 0.16), transparent 28%),
    radial-gradient(circle at 0% 80%, rgba(11, 91, 115, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f6f9fc 48%, #eef5fb 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
}

.route {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  transform: rotate(-25deg);
  animation: routeMove 5s linear infinite;
  opacity: 0.65;
}

.route-one {
  width: 420px;
  top: 24%;
  right: -80px;
}

.route-two {
  width: 340px;
  bottom: 22%;
  left: -60px;
  animation-delay: 1.4s;
}

.route-three {
  width: 260px;
  top: 62%;
  right: 18%;
  animation-delay: 2.2s;
}

@keyframes routeMove {
  0% { transform: translateX(-40px) rotate(-25deg); opacity: 0; }
  20% { opacity: 0.75; }
  100% { transform: translateX(90px) rotate(-25deg); opacity: 0; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: 0.97;
  letter-spacing: -0.07em;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.hero-text {
  font-size: 1.18rem;
  color: var(--gray-700);
  max-width: 650px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(6, 42, 86, 0.06);
  color: var(--blue-900);
  font-weight: 800;
}

.hero-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 42, 86, 0.1);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -90px -90px auto auto;
  width: 220px;
  height: 220px;
  background: rgba(255, 138, 29, 0.18);
  border-radius: 50%;
}

.card-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--gray-50);
  border: 1px solid rgba(6, 42, 86, 0.08);
  border-radius: 999px;
  font-weight: 800;
  color: var(--petrol);
  margin-bottom: 22px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 8px rgba(22, 163, 74, 0.11);
}

.hero-card h2 {
  font-size: 2.35rem;
}

.hero-card p {
  color: var(--gray-700);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.mini-stats div {
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid rgba(6, 42, 86, 0.08);
}

.mini-stats strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--blue-900);
}

.mini-stats span {
  display: block;
  margin-top: 8px;
  font-size: 0.77rem;
  color: var(--gray-500);
  font-weight: 700;
}

.route-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue-900), var(--petrol));
  color: var(--white);
  font-weight: 900;
}

.route-card i {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  position: relative;
}

.route-card i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  color: var(--gray-700);
  font-size: 1.05rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(6, 42, 86, 0.09);
  padding: 28px;
  box-shadow: 0 12px 30px rgba(6, 42, 86, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 138, 29, 0.32);
}

.icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255, 138, 29, 0.12);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-card p {
  color: var(--gray-700);
}

.service-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--orange-dark);
  font-weight: 900;
}

.split-section {
  background: var(--gray-50);
}

.split-grid,
.coverage-grid,
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.split-content p {
  color: var(--gray-700);
  font-size: 1.05rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--gray-700);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 0.82rem;
}

.values-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.values-panel div {
  min-height: 150px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(6, 42, 86, 0.08);
  box-shadow: 0 10px 28px rgba(6, 42, 86, 0.06);
}

.values-panel strong {
  display: block;
  color: var(--orange);
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 28px;
}

.values-panel span {
  font-size: 1.15rem;
  font-weight: 900;
}

.coverage {
  overflow: hidden;
}

.map-card {
  min-height: 520px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(6, 42, 86, 0.95), rgba(11, 91, 115, 0.92)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 28%);
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 24px;
}

.city {
  position: absolute;
  z-index: 2;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--blue-900);
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.city::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 8px;
}

.bogota { left: 46%; top: 48%; transform: translate(-50%, -50%); }
.barranquilla { left: 52%; top: 13%; }
.cartagena { left: 28%; top: 20%; }
.santa-marta { left: 63%; top: 23%; }
.medellin { left: 22%; top: 45%; }
.cali { left: 28%; top: 70%; }
.mocoa { left: 57%; top: 78%; }

.map-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,138,29,0.95), rgba(255,255,255,0));
  transform-origin: left center;
  animation: pulseLine 2.8s ease-in-out infinite;
}

.l1 { width: 172px; left: 49%; top: 49%; transform: rotate(-86deg); }
.l2 { width: 162px; left: 47%; top: 49%; transform: rotate(-128deg); animation-delay: .2s; }
.l3 { width: 130px; left: 48%; top: 48%; transform: rotate(-58deg); animation-delay: .4s; }
.l4 { width: 126px; left: 44%; top: 50%; transform: rotate(178deg); animation-delay: .6s; }
.l5 { width: 132px; left: 43%; top: 51%; transform: rotate(132deg); animation-delay: .8s; }
.l6 { width: 155px; left: 48%; top: 52%; transform: rotate(74deg); animation-delay: 1s; }

@keyframes pulseLine {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 1; }
}

.coverage-content p:not(.eyebrow) {
  color: var(--gray-700);
  font-size: 1.05rem;
}

.routes-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.routes-list span {
  padding: 14px 16px;
  border: 1px solid rgba(6, 42, 86, 0.1);
  border-radius: 16px;
  background: var(--gray-50);
  font-weight: 900;
}

.process {
  background: linear-gradient(180deg, var(--gray-50), var(--white));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(6, 42, 86, 0.08);
  box-shadow: 0 12px 26px rgba(6, 42, 86, 0.06);
}

.process-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--blue-900);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 22px;
}

.process-step p {
  color: var(--gray-700);
}

.quote-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 138, 29, 0.14), transparent 26%),
    linear-gradient(135deg, var(--blue-900), #071c38);
  color: var(--white);
}

.quote-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.quote-note {
  margin-top: 28px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.quote-form {
  background: var(--white);
  color: var(--blue-900);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.2);
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  margin-bottom: 16px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: var(--blue-900);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 138, 29, 0.12);
}

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

.form-disclaimer {
  margin: 14px 0 0;
  font-size: 0.84rem;
  color: var(--gray-500);
}

.contact-section {
  padding-bottom: 50px;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  border-radius: var(--radius-xl);
  background: var(--gray-50);
  border: 1px solid rgba(6, 42, 86, 0.08);
  box-shadow: 0 14px 34px rgba(6, 42, 86, 0.07);
}

.contact-card p:not(.eyebrow) {
  color: var(--gray-700);
  margin-bottom: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.34);
  animation: floatBtn 2.4s ease-in-out infinite;
}

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

.footer {
  padding: 48px 0 28px;
  background: #061f40;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
}

.footer img {
  width: 230px;
  background: white;
  border-radius: 16px;
  padding: 8px;
  margin-bottom: 16px;
}

.footer strong {
  display: block;
  margin-bottom: 14px;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin: 8px 0;
}

.footer a:hover {
  color: var(--orange);
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 34px;
  padding-top: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }

@media (max-width: 1050px) {
  .nav-cta {
    display: none;
  }

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

  .hero-grid,
  .split-grid,
  .coverage-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .navbar {
    min-height: 72px;
  }

  .brand img {
    width: 190px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 12px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid rgba(6, 42, 86, 0.08);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: var(--gray-50);
  }

  .nav-links a::after {
    display: none;
  }

  .section {
    padding: 70px 0;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4.4rem);
  }

  .hero-card {
    padding: 24px;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .process-grid,
  .values-panel,
  .routes-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .map-card {
    min-height: 460px;
  }

  .city {
    font-size: 0.74rem;
    padding: 7px 9px;
  }

  .copyright {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .quote-form {
    padding: 22px;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
}

/* ==============================
   Servicios con tarjetas y páginas detalle
   ============================== */
.service-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-tile {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(6, 42, 86, 0.09);
  box-shadow: 0 14px 34px rgba(6, 42, 86, 0.08);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-tile:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 138, 29, 0.36);
}

.service-visual {
  min-height: 210px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.service-visual::before,
.service-visual::after {
  content: "";
  position: absolute;
  inset: auto auto -70px -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
}

.service-visual::after {
  inset: -60px -60px auto auto;
  background: rgba(255, 138, 29, 0.18);
}

.service-visual span {
  position: relative;
  z-index: 1;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 2.65rem;
  backdrop-filter: blur(8px);
}

.visual-carga {
  background:
    linear-gradient(135deg, rgba(6, 42, 86, 0.94), rgba(10, 74, 132, 0.88)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255,255,255,.07) 18px 20px);
}

.visual-bodegaje {
  background:
    linear-gradient(135deg, rgba(7, 54, 109, 0.92), rgba(11, 91, 115, 0.9)),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.2), transparent 28%);
}

.visual-mudanzas {
  background:
    linear-gradient(135deg, rgba(6, 31, 64, 0.94), rgba(255, 138, 29, 0.78)),
    repeating-linear-gradient(-45deg, transparent 0 20px, rgba(255,255,255,.08) 20px 22px);
}

.visual-embalaje {
  background:
    linear-gradient(135deg, rgba(11, 91, 115, 0.94), rgba(255, 138, 29, 0.82)),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.22), transparent 28%);
}

.visual-logistica {
  background:
    linear-gradient(135deg, rgba(6, 42, 86, 0.96), rgba(6, 31, 64, 0.88)),
    linear-gradient(90deg, transparent 0 48%, rgba(255,138,29,.35) 48% 52%, transparent 52% 100%);
}

.service-body {
  padding: 26px;
}

.service-label {
  margin: 0 0 10px;
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 900;
}

.service-body p:not(.service-label) {
  color: var(--gray-700);
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.read-more,
.quote-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 900;
}

.read-more {
  background: var(--blue-900);
  color: var(--white);
}

.read-more::after {
  content: "→";
  margin-left: 8px;
}

.quote-link {
  color: var(--orange-dark);
  background: rgba(255, 138, 29, 0.12);
}

/* Páginas internas de servicios */
.detail-hero {
  padding: 86px 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 138, 29, 0.18), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4f8fc 58%, #edf5fb 100%);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 46px;
  align-items: center;
}

.breadcrumb {
  display: inline-flex;
  color: var(--orange-dark);
  font-weight: 900;
  margin-bottom: 18px;
}

.detail-hero p:not(.eyebrow) {
  color: var(--gray-700);
  font-size: 1.08rem;
}

.detail-visual {
  min-height: 380px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.detail-body-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 44px;
  align-items: start;
}

.content-panel,
.side-panel {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(6, 42, 86, 0.08);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 42, 86, 0.06);
}

.content-panel {
  padding: 36px;
}

.content-panel p {
  color: var(--gray-700);
  font-size: 1.04rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  position: relative;
  padding-left: 34px;
  color: var(--gray-700);
  font-weight: 700;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 0.78rem;
}

.side-panel {
  padding: 30px;
  position: sticky;
  top: 105px;
}

.side-panel h3 {
  margin-bottom: 18px;
}

.quick-data {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.quick-data span {
  display: block;
  padding: 14px;
  border-radius: 16px;
  background: var(--gray-50);
  color: var(--gray-700);
  font-weight: 800;
}

.related-services {
  background: var(--gray-50);
}

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

.related-card {
  display: block;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(6, 42, 86, 0.08);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(6, 42, 86, 0.06);
}

.related-card:hover {
  color: var(--orange-dark);
  transform: translateY(-3px);
}

@media (max-width: 1050px) {
  .service-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-hero-grid,
  .detail-body-grid {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

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

@media (max-width: 640px) {
  .service-showcase-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .detail-visual {
    min-height: 270px;
  }

  .content-panel,
  .side-panel {
    padding: 24px;
  }
}


/* ==============================
   Ajustes v3 solicitados
   ============================== */
:root {
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5d;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
}

.navbar {
  min-height: 102px;
}

.brand img {
  width: 320px;
  max-height: 88px;
}

.nav-links {
  font-size: 1.03rem;
}

.nav-cta,
.btn {
  padding: 15px 24px;
}

.js-whatsapp:not(.floating-whatsapp),
.btn-whatsapp {
  background: var(--whatsapp) !important;
  color: #ffffff !important;
  border-color: var(--whatsapp) !important;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.26) !important;
}

.js-whatsapp:not(.floating-whatsapp):hover,
.btn-whatsapp:hover {
  background: var(--whatsapp-dark) !important;
  transform: translateY(-2px);
}

.js-whatsapp:not(.floating-whatsapp)::after,
.btn-whatsapp::after {
  content: "";
  width: 21px;
  height: 21px;
  background: url("assets/whatsapp-icon.svg") center / contain no-repeat;
  display: inline-block;
  flex: 0 0 auto;
}

.floating-whatsapp span {
  width: 31px;
  height: 31px;
  display: block;
  background: url("assets/whatsapp-icon.svg") center / contain no-repeat;
  color: transparent;
  overflow: hidden;
}

.hero {
  min-height: calc(100vh - 102px);
  padding: 88px 0 76px;
}

.hero-grid-wide {
  grid-template-columns: 1fr;
  gap: 30px;
}

.hero-grid-wide .hero-content {
  max-width: 1180px;
}

.hero-grid-wide h1 {
  max-width: 1180px;
  font-size: clamp(2.7rem, 5.5vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.hero-grid-wide .hero-text {
  max-width: 920px;
}

.hero-grid-wide .hero-card {
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
  align-items: center;
}

.hero-grid-wide .hero-card h2,
.hero-grid-wide .hero-card p {
  margin-bottom: 0;
}

.hero-grid-wide .mini-stats {
  margin: 0;
}

.hero-grid-wide .route-card {
  grid-column: 1 / -1;
}

.hero-service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 960px;
  margin: 0 0 30px;
}

.hero-service-strip a {
  padding: 16px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(6, 42, 86, 0.10);
  box-shadow: 0 12px 28px rgba(6, 42, 86, 0.08);
  color: var(--blue-900);
  font-weight: 900;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}

.hero-service-strip a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 138, 29, .45);
}

.coverage-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--gray-50);
}

.coverage-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.visual-options-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--blue-900);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(6, 42, 86, .16);
}

.side-quote-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  margin-bottom: 15px;
}

.side-quote-form input,
.side-quote-form textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: var(--blue-900);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  background: #ffffff;
}

.side-quote-form input:focus,
.side-quote-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 138, 29, .12);
}

.side-form-intro {
  color: var(--gray-700);
  margin-bottom: 22px;
}

.side-quote-form .btn {
  width: 100%;
}

.visual-options-section {
  background: var(--gray-50);
}

.visual-options-grid {
  display: grid;
  gap: 36px;
}

.visual-option-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid rgba(6,42,86,.08);
  box-shadow: 0 14px 34px rgba(6,42,86,.08);
}

.visual-option-card img {
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(6,42,86,.08);
}

.visual-option-card p:not(.eyebrow) {
  color: var(--gray-700);
}

@media (max-width: 1050px) {
  .hero-grid-wide .hero-card {
    grid-template-columns: 1fr;
  }

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

  .visual-option-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .navbar {
    min-height: 86px;
  }

  .brand img {
    width: 235px;
  }

  .nav-links {
    top: 86px;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 56px;
  }

  .hero-grid-wide h1 {
    font-size: clamp(2.3rem, 11vw, 4rem);
    letter-spacing: -0.055em;
  }
}

@media (max-width: 520px) {
  .hero-service-strip {
    grid-template-columns: 1fr;
  }

  .visual-options-link {
    position: static;
    display: block;
    margin: 12px;
    text-align: center;
  }
}


/* ==============================
   Ajustes solicitados v4: menú superior + carrusel de servicios
   ============================== */
:root {
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
}

.navbar {
  min-height: 96px;
  gap: 22px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 270px;
  max-height: 86px;
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex: 1 1 auto;
  min-width: 0;
}

.service-top-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.service-top-menu a {
  padding: 14px 18px;
  min-width: 142px;
  text-align: center;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(6, 42, 86, 0.10);
  box-shadow: 0 12px 26px rgba(6, 42, 86, 0.08);
  color: var(--blue-900);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.15;
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}

.service-top-menu a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 29, .50);
  color: var(--orange-dark);
}

.nav-links {
  gap: 22px;
  flex: 0 0 auto;
}

.nav-cta,
.nav-cta:hover {
  background: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .28);
}

.nav-cta:hover {
  background: var(--whatsapp-dark);
}

.nav-cta::after,
.btn-whatsapp::after,
.btn-secondary.js-whatsapp::after,
.btn-primary.js-whatsapp::after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url("assets/whatsapp-icon.svg") center / contain no-repeat;
}

.service-carousel {
  position: relative;
  overflow: hidden;
  padding: 10px 0 22px;
  margin-top: 22px;
}

.service-carousel::before,
.service-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 3;
  pointer-events: none;
}

.service-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0));
}

.service-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255,255,255,0));
}

.service-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: servicesMove 32s linear infinite;
  will-change: transform;
}

.service-carousel:hover .service-track,
.service-carousel:focus-within .service-track {
  animation-play-state: paused;
}

@keyframes servicesMove {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 12px)); }
}

.service-slide {
  flex: 0 0 clamp(292px, 29vw, 380px);
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(6, 42, 86, 0.09);
  box-shadow: 0 16px 38px rgba(6, 42, 86, 0.09);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 56px rgba(6, 42, 86, 0.15);
  border-color: rgba(255, 138, 29, .44);
}

.service-photo-slot {
  min-height: 235px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-900), var(--petrol));
}

.service-photo-slot::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 2px dashed rgba(255, 255, 255, .34);
  border-radius: 22px;
}

.service-photo-slot::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 138, 29, .95);
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(255, 138, 29, .32);
}

.service-photo-slot span,
.service-photo-slot strong {
  position: relative;
  z-index: 1;
}

.service-photo-slot span {
  align-self: flex-start;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.service-photo-slot strong {
  max-width: 260px;
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.slot-carga {
  background:
    linear-gradient(135deg, rgba(6,42,86,.94), rgba(10,74,132,.86)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255,255,255,.08) 18px 20px);
}

.slot-bodegaje {
  background:
    linear-gradient(135deg, rgba(11,91,115,.95), rgba(6,42,86,.88)),
    radial-gradient(circle at 20% 30%, rgba(255,138,29,.22), transparent 30%);
}

.slot-mudanzas {
  background:
    linear-gradient(135deg, rgba(255,138,29,.96), rgba(228,111,0,.82)),
    linear-gradient(45deg, rgba(6,42,86,.14), transparent);
}

.slot-embalaje {
  background:
    linear-gradient(135deg, rgba(6,42,86,.92), rgba(255,138,29,.82)),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.18), transparent 28%);
}

.service-slide-body {
  padding: 24px;
}

.service-slide-body p:not(.service-label) {
  color: var(--gray-700);
}

@media (max-width: 1200px) {
  .service-top-menu a {
    min-width: auto;
    padding: 12px 14px;
    font-size: .84rem;
  }

  .brand img {
    width: 238px;
  }
}

@media (max-width: 1050px) {
  .nav-cta {
    display: inline-flex;
  }

  .navbar {
    min-height: 88px;
  }

  .brand img {
    width: 220px;
  }

  .main-navigation {
    position: absolute;
    top: 88px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(6, 42, 86, 0.08);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .main-navigation.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .service-top-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .service-top-menu a {
    white-space: normal;
    padding: 14px;
  }

  .main-navigation .nav-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .main-navigation .nav-links a {
    padding: 14px;
    text-align: center;
    border-radius: 14px;
    background: var(--gray-50);
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 820px) {
  .navbar {
    min-height: 82px;
  }

  .brand img {
    width: 190px;
  }

  .main-navigation {
    top: 82px;
  }

  .nav-cta {
    display: none;
  }

  .service-carousel::before,
  .service-carousel::after {
    width: 38px;
  }

  .service-slide {
    flex-basis: min(84vw, 340px);
  }
}

@media (max-width: 520px) {
  .service-top-menu,
  .main-navigation .nav-links {
    grid-template-columns: 1fr;
  }

  .service-photo-slot {
    min-height: 205px;
  }
}

/* ==============================
   Ajustes v5: hero limpio, menú final, confianza y cobertura gráfica
   ============================== */
.site-header {
  background: rgba(255, 255, 255, 0.96);
}

.main-navigation .nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.main-navigation .nav-links a {
  padding: 14px 18px;
  min-width: 118px;
  text-align: center;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(6, 42, 86, 0.10);
  box-shadow: 0 12px 26px rgba(6, 42, 86, 0.08);
  color: var(--blue-900);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.main-navigation .nav-links a::after {
  display: none;
}

.main-navigation .nav-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 29, .50);
  color: var(--orange-dark);
}

.hero-clean {
  min-height: calc(86vh - 96px);
  text-align: center;
  align-items: center;
  padding: 92px 0 82px;
}

.hero-centered {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.hero-centered .hero-content {
  max-width: 1220px;
  margin: 0 auto;
}

.hero-centered h1 {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(3rem, 6vw, 6.25rem);
  line-height: .98;
  letter-spacing: -0.07em;
}

.hero-centered .hero-text {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.16rem, 1.55vw, 1.45rem);
}

.global-routes {
  opacity: 1;
}

.route {
  height: 4px;
  box-shadow: 0 0 18px rgba(255, 138, 29, .18);
}

.route-four {
  width: 520px;
  top: 42%;
  left: 8%;
  transform: rotate(-16deg);
  animation-delay: .8s;
}

.route-five {
  width: 460px;
  bottom: 13%;
  right: 0;
  transform: rotate(-22deg);
  animation-delay: 2.8s;
}

.section {
  position: relative;
}

.section-routes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: .65;
}

.section-routes::before,
.section-routes::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 460px;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 29, .55), transparent);
  transform: rotate(-20deg);
  animation: routeMove 7s linear infinite;
}

.section-routes::before {
  right: -70px;
  top: 18%;
}

.section-routes::after {
  left: -90px;
  bottom: 16%;
  animation-delay: 2.1s;
}

.trust-row-main {
  justify-content: center;
  margin-top: 30px;
  gap: 14px;
}

.trust-row-main span {
  padding: 13px 18px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(6,42,86,.10);
  box-shadow: 0 12px 26px rgba(6,42,86,.08);
}

.section-heading-centered {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading-centered h2 {
  letter-spacing: -0.06em;
}

.services-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.services-actions .btn {
  min-width: 230px;
}

.service-actions {
  margin-top: 18px;
}

.service-actions .read-more {
  background: var(--blue-900);
}

.service-actions .read-more:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.clean-map-card {
  background: transparent;
}

.clean-map-card img {
  width: 100%;
}

.coverage-content p:not(.eyebrow) {
  font-size: 1.16rem;
  max-width: 560px;
}

@media (max-width: 1050px) {
  .main-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .main-navigation .nav-links a {
    min-width: 0;
  }
}

@media (max-width: 820px) {
  .hero-clean {
    min-height: auto;
    padding: 70px 0 58px;
  }

  .hero-centered h1 {
    font-size: clamp(2.45rem, 12vw, 4.2rem);
    letter-spacing: -0.055em;
  }

  .trust-row-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .services-actions {
    display: grid;
  }
}

@media (max-width: 520px) {
  .trust-row-main {
    grid-template-columns: 1fr;
  }
}


/* ==============================
   Ajustes v6: navegación limpia, confianza con íconos y menos espacios
   ============================== */
.section {
  padding: 72px 0;
}

.hero-clean {
  min-height: calc(76vh - 96px);
  padding: 76px 0 62px;
}

.services {
  padding-top: 56px;
}

.services .section-heading-centered {
  margin-bottom: 24px;
}

.services-title-clean h2 {
  margin-bottom: 0;
}

.split-section,
.coverage,
.process,
.quote-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.contact-section {
  padding-top: 56px;
  padding-bottom: 44px;
}

/* Diferenciales: sin fondo tipo botón, con ícono al lado */
.trust-row-main {
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
}

.trust-row-main span {
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-900);
  font-weight: 900;
  font-size: 1.02rem;
  line-height: 1.2;
}

.trust-row-main i {
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1;
}

/* Menú superior: botones más intuitivos, compactos y sin cortes de texto */
.navbar {
  gap: 16px;
}

.brand img {
  width: 245px;
}

.main-navigation {
  gap: 12px;
}

.service-top-menu,
.main-navigation .nav-links {
  gap: 8px;
  flex-wrap: nowrap;
}

.service-top-menu a,
.main-navigation .nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0 !important;
  white-space: nowrap;
  padding: 12px 15px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(6, 42, 86, 0.12);
  box-shadow: 0 10px 20px rgba(6, 42, 86, 0.07);
  color: var(--blue-900);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.service-top-menu a::before,
.main-navigation .nav-links a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex: 0 0 auto;
  box-shadow: 0 0 0 4px rgba(255, 138, 29, .12);
}

.service-top-menu a:hover,
.main-navigation .nav-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 29, .55);
  color: var(--orange-dark);
  box-shadow: 0 14px 28px rgba(6, 42, 86, 0.11);
}

.nav-cta {
  padding: 13px 18px;
  white-space: nowrap;
}

.section-heading-centered h2 {
  margin-bottom: 0;
}

.service-carousel {
  margin-top: 8px;
}

.process-step h3 {
  margin-bottom: 10px;
}

@media (max-width: 1220px) {
  .brand img {
    width: 220px;
  }

  .service-top-menu a,
  .main-navigation .nav-links a {
    padding: 11px 12px;
    font-size: .82rem;
  }

  .nav-cta {
    padding: 12px 15px;
    font-size: .88rem;
  }
}

@media (max-width: 1120px) {
  .main-navigation {
    position: absolute;
    top: 88px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(6, 42, 86, 0.08);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .main-navigation.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .service-top-menu,
  .main-navigation .nav-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .service-top-menu a,
  .main-navigation .nav-links a {
    white-space: normal;
    padding: 14px;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 58px 0;
  }

  .hero-clean {
    padding: 58px 0 48px;
  }

  .trust-row-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
    text-align: left;
  }

  .trust-row-main span {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .service-top-menu,
  .main-navigation .nav-links,
  .trust-row-main {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   Ajustes v7: alcance nacional, logo final e íconos profesionales
   ============================== */
.brand img {
  width: 260px;
  max-height: 72px;
  object-fit: contain;
}

.footer img {
  width: 245px;
  padding: 10px 12px;
}

.trust-row-main {
  align-items: center;
  gap: 34px;
}

.trust-row-main span {
  gap: 11px;
  font-size: 1.04rem;
  letter-spacing: -0.01em;
}

.trust-row-main img {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: block;
  filter: drop-shadow(0 7px 12px rgba(6,42,86,.10));
}

.coverage-image-card {
  border-radius: 34px;
  overflow: hidden;
  background: #061f40;
  border: 1px solid rgba(6,42,86,.10);
  box-shadow: 0 22px 48px rgba(6,42,86,.16);
}

.coverage-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.coverage-content h2 {
  max-width: 640px;
}

@media (max-width: 1220px) {
  .brand img {
    width: 230px;
  }

  .trust-row-main {
    gap: 24px;
  }
}

@media (max-width: 820px) {
  .brand img {
    width: 210px;
  }

  .trust-row-main {
    gap: 18px;
  }

  .trust-row-main span {
    justify-content: flex-start;
  }

  .trust-row-main img {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }
}


/* V8 - Mejoras visuales solicitadas: tarjetas más destacadas y mapa final */
.service-slide {
  position: relative;
  isolation: isolate;
}

.service-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  border: 2px solid rgba(255, 138, 29, 0);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.40);
  transition: border-color .25s ease, box-shadow .25s ease, opacity .25s ease;
  opacity: 0;
}

.service-slide:hover,
.service-slide:focus-within {
  transform: translateY(-14px) scale(1.025);
  box-shadow: 0 34px 80px rgba(6, 42, 86, 0.22), 0 14px 30px rgba(255, 138, 29, 0.16);
  border-color: rgba(255, 138, 29, .75);
  z-index: 6;
}

.service-slide:hover::after,
.service-slide:focus-within::after {
  opacity: 1;
  border-color: rgba(255, 138, 29, .85);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55), 0 0 0 8px rgba(255, 138, 29, .08);
}

.service-photo-slot {
  transition: transform .25s ease, filter .25s ease;
}

.service-slide:hover .service-photo-slot,
.service-slide:focus-within .service-photo-slot {
  transform: scale(1.018);
  filter: saturate(1.12) contrast(1.04);
}

.service-slide:hover .service-photo-slot::before,
.service-slide:focus-within .service-photo-slot::before {
  border-color: rgba(255,255,255,.62);
}

.service-slide:hover .service-photo-slot::after,
.service-slide:focus-within .service-photo-slot::after {
  transform: scale(1.12) rotate(90deg);
  background: #ffffff;
  color: var(--orange-dark);
}

.service-photo-slot::after {
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.service-slide:hover .service-slide-body h3,
.service-slide:focus-within .service-slide-body h3 {
  color: var(--orange-dark);
}

.service-slide:hover .read-more,
.service-slide:focus-within .read-more {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(255, 138, 29, .24);
}

.coverage-image-card.clean-map-card {
  background: #062a56;
  border: 1px solid rgba(255, 138, 29, .16);
  box-shadow: 0 26px 70px rgba(6, 42, 86, .22);
}

.coverage-image-card.clean-map-card img {
  width: 100%;
  display: block;
}


/* V9 - Páginas internas perfeccionadas por servicio */
.detail-hero-upgraded {
  position: relative;
  overflow: hidden;
  padding: 76px 0 68px;
}

.detail-hero-upgraded::before,
.detail-hero-upgraded::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 2px solid rgba(255, 138, 29, .24);
  width: 420px;
  height: 420px;
  border-radius: 42%;
  transform: rotate(22deg);
}

.detail-hero-upgraded::before {
  right: -190px;
  top: -190px;
}

.detail-hero-upgraded::after {
  left: -250px;
  bottom: -260px;
  border-color: rgba(11, 91, 115, .12);
}

.detail-hero-upgraded h1 {
  font-size: clamp(2.6rem, 5.4vw, 5.2rem);
  line-height: .96;
  letter-spacing: -0.075em;
  max-width: 940px;
  margin: 0 0 22px;
}

.service-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 4px;
}

.service-badge-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(6, 42, 86, .12);
  background: rgba(255,255,255,.72);
  color: var(--blue-900);
  padding: 11px 15px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(6,42,86,.06);
}

.service-badge-row span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255,138,29,.12);
}

.detail-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.36);
}

.detail-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 2px dashed rgba(255,255,255,.36);
  border-radius: 26px;
}

.detail-visual::after {
  content: "+";
  position: absolute;
  right: 38px;
  top: 34px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
}

.detail-visual strong,
.detail-visual span {
  position: relative;
  z-index: 1;
}

.detail-visual strong {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.05;
  max-width: 360px;
}

.detail-visual span {
  margin-top: 12px;
  font-weight: 900;
  opacity: .86;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  padding: 8px 14px;
}

.service-page-corporativo .detail-hero { background: linear-gradient(135deg, #ffffff 0%, #eff5fb 56%, #e8f1f8 100%); }
.service-page-corporativo .detail-visual { background: linear-gradient(135deg, rgba(6,42,86,.94), rgba(10,74,132,.88)), radial-gradient(circle at 80% 16%, rgba(255,138,29,.42), transparent 26%); }
.service-page-bodegaje .detail-hero { background: linear-gradient(135deg, #ffffff 0%, #f2f8fb 54%, #e4f0f3 100%); }
.service-page-bodegaje .detail-visual { background: linear-gradient(135deg, rgba(6,42,86,.94), rgba(11,91,115,.9)), radial-gradient(circle at 78% 20%, rgba(255,138,29,.34), transparent 26%); }
.service-page-mudanzas .detail-hero { background: linear-gradient(135deg, #ffffff 0%, #fff8f1 48%, #eef6fb 100%); }
.service-page-mudanzas .detail-visual { background: linear-gradient(135deg, rgba(255,138,29,.94), rgba(228,111,0,.88)), radial-gradient(circle at 82% 18%, rgba(6,42,86,.24), transparent 26%); }
.service-page-embalaje .detail-hero { background: linear-gradient(135deg, #ffffff 0%, #f8fbff 52%, #fff4e9 100%); }
.service-page-embalaje .detail-visual { background: linear-gradient(135deg, rgba(6,42,86,.94), rgba(7,54,109,.86)), radial-gradient(circle at 76% 18%, rgba(255,138,29,.42), transparent 26%); }

.service-detail-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.content-panel-upgraded h2 {
  max-width: 820px;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.service-note {
  margin-top: 28px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,138,29,.12), rgba(6,42,86,.04));
  border: 1px solid rgba(255,138,29,.20);
}

.service-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-900);
  font-size: 1.05rem;
}

.service-note p {
  margin: 0;
}

.btn-whatsapp img,
.nav-cta img {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}

.process-section {
  background: var(--gray-50);
  padding-top: 70px;
  padding-bottom: 70px;
}

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

.process-card {
  border: 1px solid rgba(6,42,86,.08);
  border-radius: 28px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 12px 32px rgba(6,42,86,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.process-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,138,29,.42);
  box-shadow: 0 24px 54px rgba(6,42,86,.12);
}

.process-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--blue-900);
  color: #fff;
  border-radius: 14px;
  font-weight: 900;
  margin-bottom: 22px;
}

.process-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.process-card p {
  margin: 0;
  color: var(--gray-700);
}

.photo-guide-section {
  padding-top: 72px;
  padding-bottom: 76px;
}

.photo-guide-section .section-heading p:not(.eyebrow) {
  color: var(--gray-700);
  margin-top: 8px;
}

.photo-guide-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(180px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding: 8px 4px 18px;
  scroll-snap-type: x mandatory;
}

.photo-guide-card {
  min-height: 245px;
  border-radius: 28px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(6,42,86,.86), rgba(11,91,115,.76)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 10px, transparent 10px 20px);
  box-shadow: 0 16px 34px rgba(6,42,86,.12);
  scroll-snap-align: start;
}

.photo-guide-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 2px dashed rgba(255,255,255,.28);
  border-radius: 22px;
  z-index: -1;
}

.photo-guide-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  right: -60px;
  top: -60px;
  background: rgba(255,138,29,.45);
  z-index: -1;
}

.photo-guide-card span {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--orange);
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
}

.photo-guide-card strong {
  font-size: 1.05rem;
  line-height: 1.2;
}

.photo-guide-card p {
  margin: 8px 0 0;
  opacity: .82;
  color: #fff;
}

.side-quote-form .btn-whatsapp {
  justify-content: center;
  width: 100%;
}

@media (max-width: 980px) {
  .detail-hero-upgraded h1 { font-size: clamp(2.2rem, 11vw, 4.4rem); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-visual { min-height: 310px; }
}

@media (max-width: 640px) {
  .detail-hero-upgraded { padding: 52px 0 42px; }
  .service-detail-section, .process-section, .photo-guide-section { padding-top: 48px; padding-bottom: 48px; }
  .process-grid { grid-template-columns: 1fr; }
  .service-badge-row span { width: 100%; justify-content: flex-start; }
  .photo-guide-grid { grid-template-columns: repeat(7, 240px); }
  .content-panel { padding: 24px; }
}
