/* ============================================================
   FERNANDO MUDANÇA — Folha de estilos principal
   ============================================================ */

/* === 1. CSS CUSTOM PROPERTIES === */
:root {
  --primary:       #0c1b3e;
  --primary-dark:  #060e22;
  --primary-mid:   #0f2250;
  --secondary:     #1b3272;
  --accent:        #e87820;
  --accent-dark:   #c96a18;
  --accent-light:  #f5921e;
  --light:         #f4f7fc;
  --light-2:       #edf1f8;
  --white:         #ffffff;
  --text:          #1a2335;
  --text-muted:    #5a6888;
  --border:        #dce4f0;
  --shadow-sm:     0 2px 12px rgba(12, 27, 62, 0.09);
  --shadow-md:     0 4px 28px rgba(12, 27, 62, 0.13);
  --shadow-lg:     0 8px 48px rgba(12, 27, 62, 0.18);
  --shadow-xl:     0 16px 64px rgba(12, 27, 62, 0.22);
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --transition:    0.28s ease;
  --font:          'Inter', system-ui, -apple-system, sans-serif;
  --header-h:      72px;
}

/* === 2. RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === 3. TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

p { color: var(--text-muted); line-height: 1.7; }
p + p { margin-top: 1rem; }

strong { color: var(--text); font-weight: 600; }

/* === 4. LAYOUT === */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section__header--light .section__title,
.section__header--light .section__sub {
  color: var(--white);
}

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232, 120, 32, 0.1);
  border: 1px solid rgba(232, 120, 32, 0.25);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}

.section__tag--light {
  background: rgba(232, 120, 32, 0.18);
  border-color: rgba(232, 120, 32, 0.35);
}

.section__title {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  color: var(--primary);
  margin-bottom: 14px;
}

.section__title--light { color: var(--white); }

.section__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* === 5. BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  padding: 12px 24px;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 12px;
}

.btn--sm {
  padding: 9px 18px;
  font-size: 0.88rem;
  border-radius: 9px;
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 18px rgba(232, 120, 32, 0.35);
}
.btn--accent:hover, .btn--accent:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 6px 28px rgba(232, 120, 32, 0.45);
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.38);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn--ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  border-color: transparent;
}
.btn--ig:hover, .btn--ig:focus-visible {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(225,48,108,0.35);
}

.btn--white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--white:hover, .btn--white:focus-visible {
  background: var(--light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* === 6. HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 32px;
}

.nav__logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nav__logo {
  flex-shrink: 0;
  margin-right: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav__link:hover, .nav__link:focus-visible {
  color: var(--accent);
  background: rgba(232, 120, 32, 0.07);
}

.nav__ig {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
  flex-shrink: 0;
}

.nav__ig:hover {
  color: #e1306c;
  background: rgba(225,48,108,0.08);
}

.nav__ig svg { width: 22px; height: 22px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  margin-left: auto;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === 7. HERO === */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #112560 100%);
}

.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero__routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__truck-wrap {
  position: absolute;
  right: -2%;
  bottom: 10%;
  width: 42%;
  max-width: 520px;
  opacity: 0.92;
}

.hero__truck-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.4));
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(232, 120, 32, 0.12);
  border: 1px solid rgba(232, 120, 32, 0.3);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.16;
  margin-bottom: 22px;
}

.hero__text {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

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

.hero__seal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 13px;
  border-radius: 40px;
  transition: background var(--transition);
}

.hero__seal svg { color: var(--accent); flex-shrink: 0; }
.hero__seal:hover { background: rgba(255,255,255,0.12); }

/* === 8. SERVICES === */
.services { background: var(--white); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(232, 120, 32, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card:hover::before { opacity: 1; }

.service-card--featured {
  border-color: rgba(232, 120, 32, 0.35);
  background: linear-gradient(135deg, rgba(232,120,32,0.04) 0%, var(--white) 60%);
}

.service-card--featured::before { opacity: 1; }

.service-card__icon {
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
}

.service-card__title {
  font-size: 1.08rem;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.65;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition), color var(--transition);
}

.service-card__link:hover { gap: 9px; color: var(--accent-dark); }

/* === 9. LOCAL SEO === */
.local-seo { background: var(--light); }

.local-seo__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: center;
}

.local-seo__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.df-map-wrap {
  width: 100%;
  max-width: 320px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(232,120,32,0.2);
}

.df-map-wrap svg { width: 100%; height: auto; }

.df-map-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.local-seo__photo {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(232,120,32,0.2);
}

.local-seo__photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.local-seo__content .section__tag { display: inline-block; margin-bottom: 16px; }
.local-seo__content .section__title { text-align: left; margin-bottom: 20px; }
.local-seo__content p { margin-bottom: 14px; font-size: 0.97rem; }
.local-seo__content .btn { margin-top: 8px; }

/* === 10. DIFFERENTIALS === */
.differentials {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.differentials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.differentials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.differential {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}

.differential:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(232,120,32,0.4);
  transform: translateY(-3px);
}

.differential--wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.differential--wide .differential__icon { flex-shrink: 0; margin-bottom: 0; }

.differential__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.differential h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.differential p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* === 11. PROCESS === */
.process { background: var(--light-2); }

.process__track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 56px;
}

.process__step {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.process__step:hover {
  border-color: rgba(232,120,32,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.process__num {
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(232,120,32,0.15);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

.process__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
}

.process__step h3 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.process__step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  margin-top: 48px;
}

.process__arrow svg {
  width: 48px;
  height: 24px;
  flex-shrink: 0;
}

.process__cta {
  text-align: center;
}

/* === 12. CTA BLOCK === */
.cta-block {
  position: relative;
  background: linear-gradient(135deg, #0c3878 0%, var(--primary-dark) 50%, #0a1e4e 100%);
  padding: 96px 0;
  overflow: hidden;
  text-align: center;
}

.cta-block__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-block__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.cta-block__bg::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(232,120,32,0.12) 0%, transparent 70%);
}

.cta-block__truck {
  position: absolute;
  right: 4%;
  bottom: -5%;
  width: 26%;
  max-width: 280px;
}

.cta-block__truck svg { width: 100%; height: auto; }

.cta-block .container {
  position: relative;
  z-index: 1;
}

.cta-block__content {
  max-width: 620px;
  margin: 0 auto;
}

.cta-block__title {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-block__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-block__phone {
  display: block;
  margin-top: 18px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.cta-block__phone:hover { color: var(--white); }

.cta-block__ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.cta-block__ig:hover { color: var(--white); }
.cta-block__ig svg { flex-shrink: 0; }

/* === 13. BLOG HOME === */
.blog-home { background: var(--white); }

.blog-home__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,120,32,0.3);
  transform: translateY(-4px);
}

.blog-card__img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
}

.blog-card__img-box {
  width: 100%;
  height: 100%;
}

.blog-card__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img-box img { transform: scale(1.04); }

.blog-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 40px;
}

.blog-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__title {
  font-size: 1.12rem;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-card__title a:hover { color: var(--accent); }

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex: 1;
  line-height: 1.65;
}

.blog-card__read {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
}

.blog-card__read:hover { gap: 9px; }

.blog-coming {
  background: var(--light);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.blog-coming__inner {
  text-align: center;
  padding: 32px 24px;
}

.blog-coming__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.blog-coming h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.blog-coming p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* === 14. FAQ === */
.faq { background: var(--light); }

.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq__item:has(.faq__btn[aria-expanded="true"]) {
  border-color: rgba(232,120,32,0.35);
  box-shadow: var(--shadow-sm);
}

.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  transition: color var(--transition);
}

.faq__btn:hover { color: var(--accent); }

.faq__chevron {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.28s ease;
}

.faq__btn[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 24px 20px;
  animation: faqOpen 0.25s ease;
}

.faq__answer p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === 15. FOOTER === */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.65);
}

.footer__main { padding: 72px 0 56px; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer__wabtn {
  display: inline-flex;
  margin-top: 0;
}

.footer__igbtn {
  display: inline-flex;
  margin-top: 8px;
  margin-left: 8px;
}

.btn--outline-light {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  gap: 8px;
  align-items: center;
  transition: all var(--transition);
}

.btn--outline-light:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}

.footer__col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 9px; }

.footer__col li, .footer__col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* === 16. WHATSAPP FLOAT === */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 20px 13px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: all var(--transition);
}

.wa-float:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.55);
}

.wa-float__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.wa-float__label { white-space: nowrap; }

/* Pulse animation on load */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 32px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 48px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.12); }
}

.wa-float { animation: waPulse 2.5s ease-in-out infinite; }
.wa-float:hover { animation: none; }

/* === 17. ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__badge    { animation: fadeUp 0.5s ease 0.1s both; }
.hero__title    { animation: fadeUp 0.5s ease 0.2s both; }
.hero__text     { animation: fadeUp 0.5s ease 0.32s both; }
.hero__actions  { animation: fadeUp 0.5s ease 0.44s both; }
.hero__seals    { animation: fadeUp 0.5s ease 0.56s both; }
.hero__truck-wrap { animation: fadeUp 0.7s ease 0.3s both; }

/* Scroll-driven fade (JS adds .revealed class) */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* === 18. BLOG ARTICLE PAGE === */
.article-page {
  padding-top: var(--header-h);
}

.article-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 64px 0 56px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

.article-hero__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232,120,32,0.15);
  border: 1px solid rgba(232,120,32,0.3);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
}

.article-hero__title {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
  max-width: 760px;
}

.article-hero__meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.article-img-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary-mid) 0%, var(--primary) 100%);
  box-shadow: var(--shadow-xl);
  margin-top: 48px;
}

.article-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  padding: 72px 0 96px;
  background: var(--white);
}

.article-body .container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  align-items: start;
}

.article-content { max-width: 100%; }

.article-content h2 {
  font-size: 1.45rem;
  color: var(--primary);
  margin: 40px 0 14px;
}

.article-content h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin: 28px 0 10px;
}

.article-content p {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.78;
}

.article-content ul, .article-content ol {
  margin: 0 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-content li {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.article-content ul li { list-style: disc; }
.article-content ol li { list-style: decimal; }

.article-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #0e2865 100%);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin: 40px 0;
  text-align: center;
}

.article-cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  font-size: 1rem;
}

.article-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.sidebar-widget {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.sidebar-widget h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.sidebar-widget p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.sidebar-widget .btn { width: 100%; justify-content: center; }

/* === 19. RESPONSIVE === */

/* Tablet landscape: 1024px */
@media (max-width: 1100px) {
  .services__grid    { grid-template-columns: repeat(2, 1fr); }
  .differentials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid      { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer__brand     { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start; }
  .footer__brand img { margin-bottom: 0; }

  .local-seo__grid   { gap: 48px; }
  .hero__truck-wrap  { width: 44%; }

  .article-body .container { grid-template-columns: 1fr 280px; gap: 48px; }
}

/* Tablet portrait: 768px */
@media (max-width: 900px) {
  :root { --header-h: 66px; }

  .section { padding: 72px 0; }

  /* Header mobile */
  .nav__menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.28s ease;
    box-shadow: var(--shadow-md);
  }

  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__link { padding: 12px 16px; font-size: 0.95rem; border-radius: 8px; }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }
  .nav__ig { display: none; }

  /* Hero */
  .hero { min-height: auto; padding: calc(var(--header-h) + 48px) 0 60px; }
  .hero__truck-wrap { display: none; }
  .hero__title { font-size: clamp(1.7rem, 5vw, 2.4rem); }
  .hero__content { max-width: 100%; }

  /* Services */
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  /* Local SEO */
  .local-seo__grid { grid-template-columns: 1fr; gap: 40px; }
  .local-seo__visual { order: -1; }
  .df-map-wrap { max-width: 260px; }

  /* Differentials */
  .differentials__grid { grid-template-columns: repeat(2, 1fr); }
  .differential--wide { grid-column: 1 / -1; }

  /* Process */
  .process__track {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .process__arrow {
    display: none;
  }

  /* Blog */
  .blog-home__grid { grid-template-columns: 1fr; }
  .blog-coming { min-height: 160px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; display: block; }
  .footer__brand img { margin-bottom: 16px; }

  /* Article */
  .article-body .container { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

/* Mobile: 560px */
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .section__header { margin-bottom: 40px; }

  .services__grid { grid-template-columns: 1fr; }
  .differentials__grid { grid-template-columns: 1fr; }

  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .hero__seals {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__main { padding: 48px 0 40px; }

  .wa-float { bottom: 18px; right: 18px; padding: 12px 16px 12px 14px; font-size: 0.85rem; }
  .wa-float__icon { width: 22px; height: 22px; }

  .article-hero { padding: 40px 0 36px; }
  .article-hero__title { font-size: 1.5rem; }
  .article-img-wrap { margin-top: 28px; border-radius: var(--radius-lg); }
  .article-body { padding: 40px 0 64px; }
}
