:root {
  --orange: #ff7300;
  --orange-dark: #e86600;
  --green: #28b963;
  --charcoal: #242423;
  --charcoal-soft: #2c2c2a;
  --ink: #292929;
  --muted: #6d6d6d;
  --light: #f3f3f3;
  --light-2: #e3e3e3;
  --white: #ffffff;
  --line: rgba(0, 0, 0, 0.08);
  --divider-white: rgba(255, 255, 255, 0.9);
  --radius: 10px;
  --container: 1180px;
  --shadow: 0 12px 35px rgba(22, 22, 22, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--light);
  font-family: "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
strong {
  line-height: 1.16;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--orange);
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 23px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 115, 0, 0.38);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 8px 20px rgba(255, 115, 0, 0.18);
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 12px 24px rgba(255, 115, 0, 0.24);
}

.button-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  box-shadow: 0 0 17px -8px rgba(0, 0, 0, 0.25);
}

.button-outline:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 50;
  color: var(--white);
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand img {
  width: 145px;
  height: auto;
}

.header-actions,
.header-phones {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 34px;
}

.header-phones {
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.06em;
}

.header-phones a:last-child {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-color: var(--charcoal);
  background-image: url("../images/fundo-transpesa.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(36, 36, 35, 0.24) 0%,
    rgba(36, 36, 35, 0.12) 58%,
    rgba(36, 36, 35, 0.05) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 86px 98px;
}

.hero .eyebrow {
  margin-bottom: 24px;
}

.hero h1 {
  max-width: 1000px;
  margin-bottom: 28px;
  font-family: "Space Grotesk", "Inter", ui-sans-serif, sans-serif;
  font-size: clamp(44px, 5.8vw, 76px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero h1 span {
  color: var(--orange);
}

.hero-list {
  display: grid;
  gap: 10px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.hero-list li {
  position: relative;
  padding-left: 23px;
}

.hero-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

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

.about {
  background: #dcdcdc;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-item {
  min-height: 245px;
  padding: 54px 48px 44px 0;
}

.about-item + .about-item {
  padding-right: 0;
  padding-left: 48px;
  border-left: 1px solid var(--divider-white);
}

.about-item h2 {
  margin-bottom: 16px;
  font-size: 21px;
}

.about-item p:last-child {
  margin-bottom: 0;
  color: #666;
  font-size: 14px;
}

.section {
  padding-block: 82px;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h2,
.munck-content h2,
.site-footer h2 {
  margin-bottom: 12px;
  font-size: clamp(27px, 3vw, 40px);
  letter-spacing: -0.025em;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.services {
  background: var(--light);
}

.services-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--radius);
  background: #d9d9d9;
}

.service-card {
  min-height: 225px;
  padding: 24px;
  border-right: 1px solid var(--divider-white);
  border-bottom: 1px solid var(--divider-white);
}

.service-card:nth-child(3n) {
  border-right: 0;
}

.service-card:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.service-card img {
  width: 56px;
  height: 57px;
  margin-bottom: 20px;
}

.service-card h3 {
  min-height: 40px;
  margin-bottom: 10px;
  font-size: 17px;
}

.service-card p {
  margin-bottom: 0;
  color: #666;
  font-size: 13px;
}

.centered-action {
  margin-top: 38px;
  text-align: center;
}

.fleet {
  padding-top: 34px;
  background: var(--light);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 30px;
}

.fleet-card {
  display: grid;
  min-height: 155px;
  overflow: hidden;
  grid-template-columns: 31% 69%;
  border-radius: 7px;
  background: var(--orange);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.fleet-image {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f1e8df;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.fleet-card:hover .fleet-image img {
  transform: scale(1.04);
}

.fleet-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 22px 24px;
  color: var(--white);
}

.fleet-info h3 {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 14px;
  font-size: 20px;
}

.fleet-info h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 110px;
  max-width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
}

.fleet-info dl,
.fleet-info dd {
  margin: 0;
}

.fleet-info dl {
  display: grid;
  gap: 2px;
  font-size: 12px;
}

.fleet-info dl > div {
  display: flex;
  gap: 4px;
}

.fleet-info dt {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.70);
}

.fleet-info dd {
  font-weight: 700;
}

.fleet-cta {
  display: flex;
  min-height: 155px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  text-align: center;
}

.fleet-cta p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.munck {
  padding-top: 50px;
  background: var(--light);
}

.munck-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.munck-content p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--muted);
}

.munck-photo {
  overflow: hidden;
  margin: 0;
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.munck-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.96 / 1;
  object-fit: cover;
}

.stats {
  padding-block: 52px 58px;
  background: #d7d7d7;
}

.stats-eyebrow {
  justify-content: center;
  margin-bottom: 38px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid rgb(255 255 255 / 40%);
}

.stat strong {
  margin-bottom: 14px;
  font-size: clamp(43px, 5vw, 62px);
  letter-spacing: -0.04em;
}

.stat strong em {
  color: var(--orange);
  font-size: 0.8em;
  font-style: normal;
}

.stat > span {
  color: #666;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-cta {
  padding-block: 68px 72px;
  text-align: center;
  background: var(--white);
}

.contact-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.8vw, 34px);
}

.contact-cta > .container > p {
  color: #8a8a8a;
}

.button-whatsapp {
  gap: 10px;
  margin-top: 14px;
  color: var(--white);
  background: var(--green);
}

.button-whatsapp:hover {
  background: #209e53;
}

.button-whatsapp svg {
  width: 19px;
  fill: currentColor;
}

.cta-email {
  margin-top: 26px !important;
  margin-bottom: 0;
  font-size: 13px;
}

.cta-email a {
  color: #555;
  font-weight: 600;
}

.site-footer {
  color: var(--white);
  background: var(--charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 84px;
  padding-block: 72px 54px;
}

.site-footer h2 {
  margin-bottom: 38px;
}

.contact-list {
  display: grid;
  margin: 0;
  font-style: normal;
}

.contact-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding-block: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item:hover strong {
  color: var(--orange);
}

.contact-icon {
  display: grid;
  width: 54px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 9px;
  color: var(--orange);
  background: #202027;
}

.contact-icon svg {
  width: 25px;
  fill: currentColor;
}

.contact-item > span:last-child {
  min-width: 0;
}

.contact-item small,
.contact-item strong {
  display: block;
}

.contact-item small {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.41);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-item strong {
  color: var(--white);
  font-family: "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-map {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-logo {
  width: 180px;
  height: auto;
  margin: 0 18px 28px 0;
}

.footer-map iframe {
  width: 100%;
  min-height: 365px;
  border-radius: 9px;
  filter: saturate(0.9) contrast(1.02);
}

.footer-bottom {
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 56px;
  aspect-ratio: 1;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp svg {
  width: 28px;
  fill: currentColor;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .header-inner {
    min-height: 82px;
  }

  .brand img {
    width: 116px;
  }

  .header-actions {
    gap: 15px;
  }

  .header-phones {
    display: none;
  }

  .hero-inner {
    min-height: 560px;
  }

  .hero h1 {
    max-width: 760px;
  }

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

  .service-card:nth-child(3n) {
    border-right: 1px solid var(--divider-white);
  }

  .service-card:nth-child(2n) {
    border-right: 0;
  }

  .service-card:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--divider-white);
  }

  .service-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .fleet-grid {
    gap: 16px;
  }

  .fleet-card {
    grid-template-columns: 38% 62%;
  }

  .munck-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .munck-grid {
    gap: 38px;
  }

  .footer-grid {
    gap: 54px;
  }

  .footer-map {
    align-items: center;
  }

  .footer-logo {
    margin-right: 0;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .site-header.is-sticky {
    position: relative;
  }

  .header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .brand img {
    width: 96px;
  }

  .header-actions .button {
    min-height: 38px;
    padding: 10px 13px;
    font-size: 9px;
  }

  .hero {
    background-position: center center;
    background-size: cover;
  }

  .hero::after {
    background: linear-gradient(
      90deg,
      rgba(36, 36, 35, 0.30) 0%,
      rgba(36, 36, 35, 0.16) 100%
    );
  }

  .hero-inner {
    min-height: 500px;
    padding-block: 64px 70px;
  }

  .hero .eyebrow {
    max-width: 310px;
    margin-bottom: 19px;
    font-size: 9px;
    line-height: 1.45;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(37px, 11vw, 52px);
    line-height: 1.04;
  }

  .hero-list {
    gap: 7px;
    font-size: 12px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .button {
    width: min(100%, 210px);
    min-height: 44px;
    flex: none;
    padding-inline: 12px;
    font-size: 12px;
  }

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

  .about-item,
  .about-item + .about-item {
    min-height: 0;
    padding: 40px 0 36px;
  }

  .about-item + .about-item {
    border-top: 1px solid var(--divider-white);
    border-left: 0;
  }

  .about-item h2 {
    font-size: 19px;
  }

  .section {
    padding-block: 62px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .munck-content h2,
  .site-footer h2 {
    font-size: 28px;
  }

  .eyebrow {
    font-size: 9px;
  }

  .services-grid {
    display: flex;
    margin-right: -15px;
    margin-left: -15px;
    padding: 0 15px 12px;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 14px;
    border-radius: 0;
    background: transparent;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 15px;
    scrollbar-width: thin;
    scrollbar-color: #b8b8b8 transparent;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
  }

  .service-card,
  .service-card:nth-child(n) {
    width: min(78vw, 290px);
    min-width: min(78vw, 290px);
    max-width: min(78vw, 290px);
    min-height: 250px;
    flex: 0 0 min(78vw, 290px);
    padding: 22px 16px 24px;
    overflow: hidden;
    border: 0;
    border-radius: 14px;
    background: #d9d9d9;
    scroll-snap-align: start;
  }

  .service-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
  }

  .service-card h3 {
    min-height: 0;
    max-width: 100%;
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .service-card p {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    color: #5f5f5f;
    font-size: 15px;
    line-height: 1.55;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }

  .centered-action {
    margin-top: 28px;
  }

  .centered-action .button {
    width: 100%;
  }

  .fleet {
    padding-top: 20px;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fleet-card {
    min-height: 132px;
    grid-template-columns: 40% 60%;
  }

  .fleet-info {
    padding: 18px 17px;
  }

  .fleet-info h3 {
    margin-bottom: 14px;
    padding-bottom: 10px;
    font-size: 16px;
  }

  .fleet-info h3::after {
    width: 110px;
  }

  .fleet-info dl {
    font-size: 10px;
  }

  .fleet-cta {
    min-height: 150px;
    border: 1px dashed rgba(0, 0, 0, 0.16);
    border-radius: 8px;
  }

  .munck {
    padding-top: 50px;
  }

  .munck-content .button {
    width: 100%;
  }

  .munck-photo {
    order: -1;
  }

  .stats {
    padding-block: 44px;
  }

  .stats-eyebrow {
    margin-bottom: 22px;
  }

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

  .stat {
    min-height: 120px;
  }

  .stat + .stat {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 0;
  }

  .stat strong {
    font-size: 54px;
  }

  .contact-cta {
    padding-block: 56px;
  }

  .contact-cta h2 {
    font-size: 24px;
  }

  .button-whatsapp {
    width: 100%;
  }

  .cta-email {
    overflow-wrap: anywhere;
  }

  .footer-grid {
    padding-block: 56px 42px;
  }

  .contact-item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .contact-icon {
    width: 48px;
  }

  .contact-item strong {
    font-size: 11px;
    letter-spacing: 0.055em;
  }

  .footer-logo {
    width: 160px;
  }

  .footer-map iframe {
    min-height: 270px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
