/* ============================================
   LOCAGORA – style.css  (redesign real empresa)
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --laranja: #F97316;
  --laranja-d: #C2510A;
  --amarelo: #FFC107;
  --escuro: #111827;
  --cinza-t: #374151;
  --cinza-m: #6B7280;
  --cinza-b: #D1D5DB;
  --cinza-f: #F9FAFB;
  --branco: #FFFFFF;
  --verde: #16A34A;
  --r: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  color: var(--escuro);
  background: var(--branco);
  overflow-x: hidden;
  line-height: 1.55;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--escuro);
  color: rgba(255, 255, 255, .75);
  font-size: .8rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  flex-wrap: wrap;
}

.topbar-sep {
  opacity: .3;
}

.topbar-inner a {
  color: rgba(255, 255, 255, .85);
  transition: color .2s;
}

.topbar-inner a:hover {
  color: var(--amarelo);
}

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--branco);
  border-bottom: 2px solid var(--laranja);
  box-shadow: 0 1px 10px rgba(0, 0, 0, .07);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 12px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--laranja);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--escuro);
}

.logo-name strong {
  color: var(--laranja);
}

.logo-sub {
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cinza-m);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--cinza-t);
  transition: color .2s;
}

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

.btn-header-cta {
  background: var(--laranja);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--r);
  font-size: .88rem;
  font-weight: 700;
  transition: background .2s;
}

.btn-header-cta:hover {
  background: var(--laranja-d);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--escuro);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--branco);
  border-top: 1px solid var(--cinza-b);
}

.mobile-menu a {
  padding: 13px 20px;
  font-weight: 600;
  color: var(--cinza-t);
  border-bottom: 1px solid var(--cinza-b);
}

.mobile-menu a:hover,
.mobile-menu .mobile-cta {
  background: var(--laranja);
  color: #fff;
}

.mobile-menu.open {
  display: flex;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Full-bleed background photo */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('caminhao.png');
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

/* Dark overlay: stronger at bottom so content always readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10, 10, 10, 0.55) 0%,
      rgba(10, 10, 10, 0.65) 60%,
      rgba(10, 10, 10, 0.82) 100%);
  z-index: 1;
}

/* Orange side-accent strip */
.hero-overlay::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--laranja);
}

/* Centred content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
  padding: 60px 24px;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  background: var(--laranja);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 28px;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub strong {
  color: #fff;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hbtn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--verde);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--r);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: 0 6px 20px rgba(22, 163, 74, .35);
  transition: background .2s, transform .2s, box-shadow .2s;
}

.hbtn-primary:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(22, 163, 74, .45);
}

.hbtn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 16px 30px;
  border-radius: var(--r);
  font-size: 1rem;
  font-weight: 700;
  transition: background .2s, border-color .2s;
}

.hbtn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-pills span {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.88);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--laranja);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
}

.trust-icon {
  font-size: 1rem;
}

/* ── PLANOS (TABELA) ── */
.planos {
  padding: 80px 0;
  background: var(--branco);
}

.sec-header {
  margin-bottom: 44px;
}

.sec-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -.5px;
  line-height: 1.15;
}

.sec-header h2 span {
  color: var(--laranja);
}

.sec-header p {
  color: var(--cinza-m);
  margin-top: 8px;
  font-size: .95rem;
}

.sec-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--laranja);
  margin-bottom: 8px;
}

.tabela-wrap {
  overflow-x: auto;
  border: 1px solid var(--cinza-b);
  border-radius: var(--r);
}

.tabela-planos {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
}

.tabela-planos thead tr {
  background: var(--cinza-f);
}

.tabela-planos th {
  padding: 14px 20px;
  text-align: left;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--cinza-m);
  border-bottom: 1px solid var(--cinza-b);
  white-space: nowrap;
}

.tabela-planos td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--cinza-b);
  vertical-align: middle;
}

.tabela-planos tbody tr:last-child td {
  border-bottom: none;
}

.tabela-planos tbody tr:hover {
  background: var(--cinza-f);
}

.tabela-planos td:first-child strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.tabela-planos .destaque {
  background: #FFF7ED;
}

.tabela-planos .destaque:hover {
  background: #FEF3C7;
}

.badge-rec {
  display: inline-block;
  margin-left: 8px;
  background: var(--laranja);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 2px 8px;
  border-radius: 4px;
  vertical-align: middle;
}

.preco {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--escuro);
  white-space: nowrap;
}

.preco small {
  font-size: .75rem;
  font-weight: 600;
  color: var(--cinza-m);
}

.btn-tabela {
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid var(--cinza-b);
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--cinza-t);
  transition: all .2s;
  white-space: nowrap;
}

.btn-tabela:hover {
  border-color: var(--laranja);
  color: var(--laranja);
}

.destaque-btn {
  background: var(--laranja);
  border-color: var(--laranja);
  color: #fff;
}

.destaque-btn:hover {
  background: var(--laranja-d);
  border-color: var(--laranja-d);
  color: #fff;
}

.planos-obs {
  color: var(--cinza-m);
  font-size: .8rem;
  margin-top: 20px;
}

/* Mobile cards (hidden on desktop) */
.planos-cards-mobile {
  display: none;
  gap: 12px;
  flex-direction: column;
}

.card-mob {
  border: 1px solid var(--cinza-b);
  border-radius: var(--r);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-mob.rec {
  border-color: var(--laranja);
  background: #FFF7ED;
}

.cm-rec-tag {
  font-size: .7rem;
  font-weight: 800;
  color: var(--laranja);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cm-vol {
  font-size: 1.3rem;
  font-weight: 900;
}

.cm-uso {
  color: var(--cinza-m);
  font-size: .88rem;
}

.cm-preco {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--laranja);
  margin-top: 4px;
}

.card-mob a {
  color: var(--laranja);
  font-weight: 700;
  font-size: .88rem;
  margin-top: 8px;
}

/* ── BENEFÍCIOS ── */
.beneficios {
  padding: 80px 0;
  background: var(--cinza-f);
  border-top: 1px solid var(--cinza-b);
  border-bottom: 1px solid var(--cinza-b);
}

.beneficios-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.beneficios-foto img {
  width: 100%;
  border-radius: var(--r);
  display: block;
}

.beneficios-texto h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -.5px;
  line-height: 1.2;
  margin-bottom: 28px;
}

.beneficios-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.beneficios-lista li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.b-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.beneficios-lista strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--escuro);
  margin-bottom: 3px;
}

.beneficios-lista p {
  color: var(--cinza-m);
  font-size: .92rem;
  line-height: 1.6;
}

/* ── FAQ ── */
.faq {
  padding: 80px 0;
  background: var(--branco);
}

.faq-grid {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--cinza-b);
  border-radius: var(--r);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  background: none;
  border: none;
  font-family: 'Barlow', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--escuro);
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.faq-q i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--cinza-b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 1rem;
  color: var(--laranja);
  transition: all .2s;
}

.faq-q[aria-expanded="true"] {
  color: var(--laranja);
}

.faq-q[aria-expanded="true"] i {
  background: var(--laranja);
  border-color: var(--laranja);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-a.open {
  max-height: 300px;
  padding: 0 20px 18px;
}

.faq-a p {
  color: var(--cinza-t);
  font-size: .9rem;
  line-height: 1.7;
}

.faq-a strong {
  color: var(--laranja-d);
}

/* ── CTA FINAL ── */
.cta-final {
  background: var(--escuro);
  padding: 72px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900;
  color: #fff;
}

.cta-inner p {
  color: rgba(255, 255, 255, .5);
  margin-top: 6px;
  font-size: .93rem;
}

.btn-cta-final {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--verde);
  color: #fff;
  padding: 16px 30px;
  border-radius: var(--r);
  font-size: .95rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(22, 163, 74, .25);
  transition: background .2s, transform .2s;
}

.btn-cta-final:hover {
  background: #15803d;
  transform: translateY(-2px);
}

/* ── FOOTER ── */
.footer {
  background: #F3F4F6;
  border-top: 1px solid var(--cinza-b);
  padding: 48px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  color: var(--cinza-m);
  font-size: .88rem;
  margin-top: 14px;
  max-width: 240px;
  line-height: 1.6;
}

.footer-links,
.footer-contato {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong,
.footer-contato strong {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cinza-m);
  margin-bottom: 4px;
}

.footer-links a,
.footer-contato a,
.footer-contato span {
  font-size: .88rem;
  color: var(--cinza-t);
  transition: color .2s;
}

.footer-links a:hover,
.footer-contato a:hover {
  color: var(--laranja);
}

.footer-copy {
  background: var(--escuro);
  color: rgba(255, 255, 255, .4);
  font-size: .77rem;
  text-align: center;
  padding: 14px 20px;
}

/* ── WHATSAPP FLUTUANTE ── */
.wpp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  z-index: 999;
  background: var(--verde);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(22, 163, 74, .4);
  transition: transform .25s, box-shadow .25s;
}

.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(22, 163, 74, .5);
}

.wpp-float::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(22, 163, 74, .35);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .5;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {

  .nav-links,
  .btn-header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-content {
    padding: 40px 20px;
  }

  .beneficios-inner {
    grid-template-columns: 1fr;
  }

  .beneficios-foto {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trust-inner {
    gap: 12px;
  }

  .trust-item {
    font-size: .8rem;
  }
}

@media(max-width:640px) {
  .tabela-wrap {
    display: none;
  }

  .planos-cards-mobile {
    display: flex;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-selos {
    flex-wrap: wrap;
  }

  .topbar-inner {
    justify-content: center;
  }
}