/* =========================================================
   Roberto Junior Lima Prado — Transportes
   Site institucional
   ========================================================= */

:root {
  --brand-orange: #ff7a00;
  --brand-orange-dark: #e56900;
  --brand-orange-light: #ffe4c7;
  --ink: #12100e;
  --ink-soft: #4a4640;
  --paper: #fff9f4;
  --paper-alt: #f7f2ea;
  --line: rgba(18, 16, 14, 0.1);
  --dark: #100e0c;
  --dark-card: #1a1712;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.25, .8, .25, 1);
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: .9rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand-orange);
  display: inline-block;
}

.eyebrow.on-dark { color: #ffb066; }

h1, h2, h3 { letter-spacing: -0.02em; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-stagger > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: .16s; }
.reveal-stagger > *:nth-child(3) { transition-delay: .27s; }
.reveal-stagger > *:nth-child(4) { transition-delay: .38s; }
.reveal-stagger > *:nth-child(5) { transition-delay: .49s; }
.reveal-stagger > *:nth-child(6) { transition-delay: .6s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-bg, .route-dot, .marquee-track, .counter { animation: none !important; }
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink);
  color: #fff;
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: .55rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.75rem;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
}
.topbar-inner a { color: #fff; text-decoration: none; opacity: .92; }
.topbar-item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar-item svg { width: 14px; height: 14px; flex: none; stroke: var(--brand-orange); }
.topbar-inner strong { color: var(--brand-orange); font-weight: 700; }

@media (max-width: 640px) {
  .topbar-item.topbar-address { display: none; }
  .topbar-inner { gap: .4rem 1.1rem; font-size: .78rem; }
}

/* ---------- Header ---------- */
header.site-header {
  padding: 1.1rem 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(160%) blur(8px);
  background: rgba(255, 249, 244, 0.92);
}

.navbar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-orange);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.02em;
  box-shadow: 0 8px 18px rgba(255, 122, 0, .28);
  flex: none;
}

.brand-text { line-height: 1.15; }
.brand-text .name { font-size: 1.12rem; font-weight: 800; display: block; }
.brand-text .tagline { font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }

nav.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
nav.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  position: relative;
  padding-bottom: 4px;
}
nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--brand-orange);
  transition: right .28s var(--ease);
}
nav.main-nav a:hover::after { right: 0; }
nav.main-nav a:hover { color: var(--brand-orange-dark); }

.header-actions { display: flex; align-items: center; gap: .9rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--brand-orange);
  border-radius: 999px;
  padding: .8rem 1.4rem;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--brand-orange); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 26px rgba(255, 122, 0, .32); background: var(--brand-orange-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand-orange); color: var(--brand-orange-dark); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: all .25s var(--ease);
}
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }
.menu-toggle.active span { background: transparent; }
.menu-toggle.active span::before { transform: rotate(45deg); top: 0; }
.menu-toggle.active span::after { transform: rotate(-45deg); top: 0; }

@media (max-width: 940px) {
  .menu-toggle { display: flex; }
  nav.main-nav {
    position: fixed;
    inset: 66px 0 auto 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: .5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: all .25s var(--ease);
  }
  nav.main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  nav.main-nav a { padding: .8rem 0; width: 100%; border-bottom: 1px solid var(--line); }
  .header-actions .btn-ghost-nav-hide { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 5rem;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -4%;
  background: url("../images/hero-caminhao-montanha.jpg") center 62%/cover no-repeat;
  animation: kenburns 26s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes kenburns {
  0% { transform: scale(1) translate3d(0,0,0); }
  100% { transform: scale(1.08) translate3d(-1%, -1%, 0); }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(190deg, rgba(10, 8, 6, .55) 0%, rgba(10, 8, 6, .78) 62%, rgba(10, 8, 6, .92) 100%);
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; max-width: 900px; text-align: center; margin: 0 auto; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255, 122, 0, .16);
  border: 1px solid rgba(255, 122, 0, .5);
  color: #ffcb94;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .15s forwards;
}

.hero-kicker svg { width: 14px; height: 14px; }

.hero-title {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.04;
  font-weight: 800;
  margin-bottom: 1.3rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .3s forwards;
}

.hero-copy {
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 0 auto 2.2rem;
  max-width: 720px;
  color: rgba(255,255,255,.88);
  opacity: 0;
  animation: fadeUp .9s var(--ease) .46s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .6s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 4px; height: 8px;
  border-radius: 999px;
  background: var(--brand-orange);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Route divider (signature element) ---------- */
.route-divider {
  position: relative;
  height: 54px;
  background: linear-gradient(90deg, var(--brand-orange-dark), var(--brand-orange));
  overflow: hidden;
}
.route-divider svg.route-line-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.route-dash {
  stroke: rgba(255,255,255,.75);
  stroke-width: 3;
  stroke-dasharray: 14 16;
  fill: none;
  animation: dashmove 2.6s linear infinite;
}
@keyframes dashmove { to { stroke-dashoffset: -60; } }
.route-truck {
  position: absolute;
  top: 0;
  left: -10%;
  width: 46px;
  height: 30px;
  animation: driveacross 11s linear infinite;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.3));
  will-change: left;
}
@keyframes driveacross {
  0% { left: -10%; }
  100% { left: 108%; }
}

/* ---------- Stats strip ---------- */
.stats-section { background: var(--dark); color: #fff; padding: 3.2rem 1.5rem; }
.stats-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat { text-align: center; }
.stat .num {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 800;
  color: var(--brand-orange);
  display: block;
  letter-spacing: -.02em;
}
.stat .label { font-size: .88rem; color: rgba(255,255,255,.72); margin-top: .35rem; }

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

/* ---------- Feature (Brasil inteiro) ---------- */
.feature-section { background: #fff; }
.feature-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  min-height: 480px;
}
.feature-left {
  background: var(--brand-orange);
  color: #fff;
  padding: 4.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.feature-left .eyebrow { color: #fff2e2; }
.feature-left .eyebrow::before { background: #fff2e2; }
.feature-left h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); margin-bottom: 1.1rem; line-height: 1.12; }
.feature-left p { font-size: 1.06rem; line-height: 1.75; opacity: .95; max-width: 480px; margin-bottom: 1.6rem; }
.feature-right { overflow: hidden; position: relative; }
.feature-right img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.feature-right:hover img { transform: scale(1.06); }

@media (max-width: 900px) {
  .feature-inner { grid-template-columns: 1fr; }
  .feature-left { padding: 3rem 1.6rem; }
  .feature-right { min-height: 260px; }
}

/* ---------- Sobre ---------- */
.about-section { background: var(--paper-alt); padding: 6rem 1.5rem; position: relative; overflow: hidden; }
.about-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 60px -20px rgba(18,16,14,.35); }
.about-media img { width: 100%; height: 460px; object-fit: cover; transition: transform .8s var(--ease); }
.about-media:hover img { transform: scale(1.05); }
.about-badge {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  box-shadow: 0 18px 34px rgba(18,16,14,.22);
}
.about-badge .icon-circle { width: 42px; height: 42px; border-radius: 50%; background: var(--brand-orange-light); display: grid; place-items: center; flex: none; }
.about-badge .icon-circle svg { width: 20px; height: 20px; stroke: var(--brand-orange-dark); }
.about-badge strong { display: block; font-size: 1rem; }
.about-badge span { font-size: .8rem; color: var(--ink-soft); }

.about-copy h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 1.1rem; line-height: 1.16; }
.about-copy p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.8; margin-bottom: 1.1rem; }
.about-list { margin-top: 1.6rem; display: grid; gap: .9rem; }
.about-list li { display: flex; align-items: flex-start; gap: .8rem; font-size: .98rem; color: var(--ink); }
.about-list img { width: 20px; height: 20px; margin-top: 3px; flex: none; }

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .about-media img { height: 320px; }
}

/* ---------- White field CTA banner ---------- */
.white-field-section { background: #fff; padding: 4.5rem 1.5rem; }
.white-field-card {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}
.white-field-title {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: .9rem;
  line-height: 1.1;
}
.white-field-title span { color: var(--brand-orange); }
.white-field-text { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.75; max-width: 700px; margin: 0 auto; }

/* ---------- Services / cartões ---------- */
.services-section { background: var(--dark); color: #fff; padding: 2rem 1.5rem 5.5rem; position: relative; }
.services-header { max-width: var(--container); margin: 0 auto 2.6rem; text-align: center; }
.services-header .eyebrow { justify-content: center; }
.services-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }

.services-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  padding: 2rem 1.7rem;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(255,122,0,.5); background: #201c15; }

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255,122,0,.14);
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  transition: background .3s var(--ease);
}
.service-card:hover .service-icon { background: var(--brand-orange); }
.service-icon svg { width: 26px; height: 26px; stroke: var(--brand-orange); transition: stroke .3s var(--ease); }
.service-card:hover .service-icon svg { stroke: #fff; }

.service-title { font-size: 1.12rem; font-weight: 700; margin-bottom: .55rem; }
.service-desc { color: rgba(255,255,255,.68); line-height: 1.65; font-size: .96rem; }

/* ---------- Diferenciais ---------- */
.diff-section { background: #fff; padding: 6rem 1.5rem; }
.diff-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.diff-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 60px -20px rgba(18,16,14,.3); order: 2; }
.diff-media img { width: 100%; height: 440px; object-fit: cover; transition: transform .8s var(--ease); }
.diff-media:hover img { transform: scale(1.05); }
.diff-copy h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 1.2rem; line-height: 1.16; }
.diff-grid { display: grid; gap: 1.3rem; margin-top: 1.6rem; }
.diff-item { display: flex; gap: 1rem; align-items: flex-start; }
.diff-item .icon-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-orange-light);
  display: grid; place-items: center; flex: none;
}
.diff-item .icon-circle img { width: 22px; height: 22px; }
.diff-item h4 { font-size: 1.02rem; margin-bottom: .25rem; }
.diff-item p { color: var(--ink-soft); font-size: .95rem; line-height: 1.6; }

@media (max-width: 900px) {
  .diff-inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .diff-media { order: 1; }
  .diff-media img { height: 300px; }
}

/* ---------- Cobertura / mapa ---------- */
.coverage-section {
  background: var(--paper-alt);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.coverage-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.coverage-copy h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 1.1rem; line-height: 1.16; }
.coverage-copy p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.8; margin-bottom: 1rem; }
.coverage-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .6rem 1.1rem;
  font-size: .88rem;
  font-weight: 700;
  margin-top: .6rem;
  margin-right: .6rem;
}
.coverage-pill svg { width: 16px; height: 16px; stroke: var(--brand-orange); }
.coverage-media { position: relative; }
.coverage-media img { border-radius: var(--radius-lg); box-shadow: 0 30px 60px -18px rgba(18,16,14,.28); }
.route-ping {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 0 rgba(255,122,0,.55);
  animation: ping 2.4s ease-out infinite;
}
.route-ping::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--brand-orange);
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(255,122,0,.55); }
  70% { box-shadow: 0 0 0 16px rgba(255,122,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,122,0,0); }
}
.ping-1 { top: 20%; left: 30%; }
.ping-2 { top: 55%; left: 62%; animation-delay: .6s; }
.ping-3 { top: 72%; left: 22%; animation-delay: 1.2s; }

@media (max-width: 900px) {
  .coverage-inner { grid-template-columns: 1fr; gap: 2.4rem; }
}

/* ---------- CTA / Contato ---------- */
.contact-section {
  background: linear-gradient(160deg, var(--ink) 0%, #241d14 100%);
  color: #fff;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.contact-inner { max-width: var(--container); margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.contact-inner h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: 1rem; line-height: 1.12; }
.contact-inner > p { color: rgba(255,255,255,.75); max-width: 640px; margin: 0 auto 2.4rem; font-size: 1.05rem; line-height: 1.75; }
.contact-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 940px;
  margin: 0 auto;
}
.contact-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  text-align: left;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); border-color: rgba(255,122,0,.5); }
.contact-card svg { width: 22px; height: 22px; stroke: var(--brand-orange); margin-bottom: .8rem; }
.contact-card strong { display: block; font-size: .96rem; margin-bottom: .2rem; }
.contact-card span, .contact-card a { color: rgba(255,255,255,.72); font-size: .92rem; text-decoration: none; }
.contact-card a:hover { color: var(--brand-orange); }

@media (max-width: 820px) {
  .contact-cards { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
footer.site-footer { background: #0b0906; color: rgba(255,255,255,.7); padding: 3.6rem 1.5rem 1.6rem; }
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.footer-brand .brand-logo { width: 40px; height: 40px; font-size: .95rem; }
.footer-brand .name { color: #fff; font-weight: 800; font-size: 1.02rem; display: block; }
.footer-brand .tagline { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.footer-col p, .footer-col address { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.62); font-style: normal; }
.footer-col h5 { color: #fff; font-size: .84rem; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: grid; gap: .65rem; }
.footer-col a { color: rgba(255,255,255,.68); text-decoration: none; font-size: .92rem; transition: color .2s; }
.footer-col a:hover { color: var(--brand-orange); }
.footer-legal { font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.5); }
.footer-legal strong { color: rgba(255,255,255,.78); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

@media (max-width: 820px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
  z-index: 60;
  animation: floatpulse 2.6s ease-in-out infinite;
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes floatpulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---------- Section utility ---------- */
.section-pad { padding: 6rem 1.5rem; }

/* ---------- Páginas internas (Política / Contato) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--ink) 0%, #241d14 100%);
  color: #fff;
  padding: 4.5rem 1.5rem 3.5rem;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: .7rem; }
.page-hero p { color: rgba(255,255,255,.72); max-width: 620px; margin: 0 auto; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.8); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand-orange); }

.policy-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 5.5rem;
}
.policy-wrap h2 { font-size: 1.35rem; margin: 2.2rem 0 .8rem; color: var(--ink); }
.policy-wrap h2:first-child { margin-top: 0; }
.policy-wrap p { color: var(--ink-soft); line-height: 1.85; margin-bottom: 1rem; font-size: .99rem; }
.policy-wrap ul { margin: 0 0 1rem 1.3rem; color: var(--ink-soft); line-height: 1.85; font-size: .99rem; }
.policy-wrap li { margin-bottom: .4rem; }
.policy-wrap strong { color: var(--ink); }
.policy-updated {
  display: inline-block;
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4rem .9rem;
  font-size: .82rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.contact-page-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-page-grid .about-copy p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 1rem; }
.contact-block-list { display: grid; gap: 1.1rem; margin-top: 1.6rem; }
.contact-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
}
.contact-block .icon-circle { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-orange-light); display: grid; place-items: center; flex: none; }
.contact-block .icon-circle svg { width: 20px; height: 20px; stroke: var(--brand-orange-dark); }
.contact-block strong { display: block; margin-bottom: .2rem; }
.contact-block a, .contact-block span { color: var(--ink-soft); text-decoration: none; font-size: .95rem; }
.contact-block a:hover { color: var(--brand-orange-dark); }

.contact-form-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  color: #fff;
}
.contact-form-card h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.contact-form-card p { color: rgba(255,255,255,.68); font-size: .92rem; line-height: 1.7; margin-bottom: 1.6rem; }
.contact-form-card .btn { width: 100%; justify-content: center; margin-bottom: .8rem; }

@media (max-width: 900px) {
  .contact-page-grid { grid-template-columns: 1fr; }
}
