/*
Theme Name:   MueveTodo Child
Template:     zaaztheme
Description:  Child theme of zaaztheme for muevetodo.com.
Author:       Zaaz
Version:      0.2.0
Text Domain:  muevetodo-child
*/

/* ------------------------------------------------------------------
   Typography: Oswald (condensed, industrial) for headings +
   Inter for body. Extended to theme chrome for consistency.
   ------------------------------------------------------------------ */

body, .zt-main, .zt-footer, .zt-top-bar {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  letter-spacing: -0.005em;
  color: #1F2937;
  background: #FAFAFA;
}

.zt-site-title, .zt-site-title a, .zt-header-brand {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.zt-nav__link, .zt-nav__submenu .zt-nav__link,
.zt-top-bar-menu .menu-item a, .zt-footer__menu .menu-item a {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #1F2937;
}

.zt-nav__link:hover, .zt-footer__menu .menu-item a:hover {
  color: #E86A33;
}

h1, h2, h3, h4, h5, h6, .zt-heading {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: #1F2937;
}

/* ------------------------------------------------------------------
   Hero — full-bleed, industrial truck photo + dark gradient.
   ------------------------------------------------------------------ */

.mt-hero-bg {
  position: relative;
  margin: -96px calc(50% - 50vw) 0;
  padding: 140px calc(50vw - 50%) 120px;
  color: #FAFAFA;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.82) 45%, rgba(232,106,51,0.55) 100%),
    url("/wp-content/uploads/2026/04/mt-hero.jpg") center/cover no-repeat,
    #111111;
}

.mt-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 100% 100%, rgba(251,191,36,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 0% 0%, rgba(232,106,51,0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.mt-hero-bg > * { position: relative; z-index: 1; }

/* Orange accent stripe used as divider in hero / sections */
.mt-accent-bar {
  width: 64px;
  height: 4px;
  background: #E86A33;
  border-radius: 2px;
  margin: 0 0 20px;
}
.mt-accent-bar--center { margin-left: auto; margin-right: auto; }

/* Sub-hero for interior pages */
.mt-subhero {
  position: relative;
  margin: -96px calc(50% - 50vw) 0;
  padding: 88px calc(50vw - 50%) 64px;
  color: #FAFAFA;
  background: linear-gradient(100deg, #111111 0%, #1F2937 60%, #3A1F14 100%);
}

/* Eyebrow label */
.mt-eyebrow {
  display: inline-block;
  font-family: 'Oswald', 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E86A33;
  margin-bottom: 14px;
}

/* Service / content cards */
.mt-card {
  display: block;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.mt-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.1);
  border-color: rgba(232, 106, 51, 0.2);
}

.mt-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #E86A33 0%, #F59E0B 100%);
  color: #FAFAFA;
  margin-bottom: 20px;
}

/* Buttons */
.mt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none !important;
  transition: all 180ms ease;
}
.mt-btn--primary {
  background: #E86A33;
  color: #FFFFFF !important;
  box-shadow: 0 2px 8px rgba(232, 106, 51, 0.35);
}
.mt-btn--primary:hover {
  background: #C55721;
  box-shadow: 0 6px 18px rgba(232, 106, 51, 0.45);
  transform: translateY(-1px);
}
.mt-btn--ghost {
  background: transparent;
  color: #FAFAFA !important;
  border: 1.5px solid rgba(250, 250, 250, 0.4);
}
.mt-btn--ghost:hover {
  background: rgba(250, 250, 250, 0.1);
  border-color: rgba(250, 250, 250, 0.8);
}
.mt-btn--outline {
  background: transparent;
  color: #E86A33 !important;
  border: 1.5px solid #E86A33;
}
.mt-btn--outline:hover {
  background: #E86A33;
  color: #FFFFFF !important;
}

/* Grid utilities (display:X needed here — inline stripped by kses) */
.mt-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mt-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mt-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mt-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.mt-hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.mt-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.mt-btn-group-center { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.mt-row-icon { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }

.mt-icon-badge {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  background: rgba(232, 106, 51, 0.1); color: #E86A33;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Check-list items */
.mt-check-list { list-style: none; padding: 0; margin: 0; display: block; }
.mt-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  font-size: 0.97rem;
  line-height: 1.5;
  color: #374151;
}
.mt-check-item:last-child { border-bottom: none; }
.mt-check-dot {
  flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px;
  border-radius: 50%; background: #E86A33; color: #FFFFFF;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Stats band */
.mt-stat-value {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #E86A33;
}

/* Client logo strip */
.mt-logo-strip {
  display: flex; flex-wrap: wrap; gap: 40px 60px;
  align-items: center; justify-content: center;
}
.mt-logo-strip img {
  max-height: 56px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(1);
  transition: opacity 180ms ease, filter 180ms ease;
}
.mt-logo-strip img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* Contact card aside */
.mt-contact-card {
  background: #111111;
  color: #FAFAFA;
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 6px 24px rgba(17, 17, 17, 0.15);
}
.mt-contact-card a { color: #FBBF24; }

/* Responsive */
@media (max-width: 900px) {
  .mt-hero-bg { padding: 96px calc(50vw - 50%) 80px; }
  .mt-grid-2, .mt-grid-3, .mt-grid-4, .mt-grid-5, .mt-hero-grid {
    grid-template-columns: 1fr !important;
  }
  .mt-hero-grid { text-align: left; }
  .mt-hero-ctas { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .mt-grid-5 { grid-template-columns: repeat(2, 1fr) !important; }
}
