*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:   #0a1628;
      --navy2:  #0d1f3c;
      --blue:   #1a3a6e;
      --blue2:  #1e4d96;
      --orange: #f47920;
      --orange2:#e06510;
      --white:  #ffffff;
      --gray:   #f4f6fa;
      --gray2:  #e2e8f0;
      --text:   #2d3748;
      --muted:  #718096;
      --shadow: 0 4px 24px rgba(10,22,40,.12);
      --shadow2:0 8px 40px rgba(10,22,40,.18);
      --radius: 12px;
      --transition: .3s cubic-bezier(.4,0,.2,1);
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Barlow', sans-serif;
      background: var(--white);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ───── NAVBAR ───── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(10,22,40,.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,.07);
      transition: var(--transition);
    }
    nav.scrolled { background: rgba(10,22,40,.99); box-shadow: var(--shadow2); }
    .nav-inner {
      max-width: 1200px; margin: 0 auto;
      padding: 0 24px;
      height: 72px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 12px;
      text-decoration: none;
    }
    .logo-badge {
      width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .logo-text { line-height: 1.1; }
    .logo-text strong {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: 20px;
      color: var(--white); letter-spacing: .5px;
    }
    .logo-text span {
      font-size: 11px; color: rgba(255,255,255,.55);
      font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
    }
    .nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
    .nav-links a {
      padding: 8px 14px; border-radius: 8px;
      text-decoration: none; font-weight: 600; font-size: 14px;
      color: rgba(255,255,255,.75);
      transition: var(--transition);
    }
    .nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
    .nav-cta {
      background: var(--orange) !important;
      color: var(--white) !important;
      padding: 10px 20px !important;
    }
    .nav-cta:hover { background: var(--orange2) !important; transform: translateY(-1px); }
    .hamburger {
      display: none; flex-direction: column; gap: 5px; cursor: pointer;
      padding: 6px; border: none; background: none;
    }
    .hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
    .mobile-menu {
      display: none; flex-direction: column; gap: 4px;
      padding: 16px 24px 20px;
      border-top: 1px solid rgba(255,255,255,.07);
    }
    .mobile-menu a {
      padding: 12px 16px; border-radius: 8px;
      text-decoration: none; font-weight: 600; font-size: 15px;
      color: rgba(255,255,255,.8);
      transition: var(--transition);
    }
    .mobile-menu a:hover { background: rgba(255,255,255,.08); color: var(--white); }
    .mobile-menu .nav-cta { background: var(--orange); color: var(--white); text-align: center; margin-top: 4px; }

    /* ───── HERO ───── */
    #hero {
      min-height: 100vh;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, var(--blue) 100%);
      position: relative; overflow: hidden;
      display: flex; align-items: center;
    }
    .hero-grid {
      position: absolute; inset: 0; opacity: .04;
      background-image:
        linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-glow {
      position: absolute; top: -200px; right: -200px;
      width: 700px; height: 700px; border-radius: 50%;
      background: radial-gradient(circle, rgba(244,121,32,.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-glow2 {
      position: absolute; bottom: -100px; left: -100px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(30,77,150,.3) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-inner {
      position: relative; z-index: 2;
      max-width: 1200px; margin: 0 auto; padding: 120px 24px 80px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(244,121,32,.15); border: 1px solid rgba(244,121,32,.35);
      border-radius: 100px; padding: 6px 16px;
      font-size: 13px; font-weight: 600; color: var(--orange);
      letter-spacing: .5px; margin-bottom: 24px;
      animation: fadeUp .6s ease both;
    }
    .hero-badge i { font-size: 12px; }
    .hero-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900; font-size: clamp(2.4rem, 5vw, 3.8rem);
      line-height: 1.05; color: var(--white);
      margin-bottom: 20px;
      animation: fadeUp .6s .1s ease both;
    }
    .hero-title .highlight { color: var(--orange); }
    .hero-sub {
      font-size: 1.1rem; color: rgba(255,255,255,.7);
      line-height: 1.7; margin-bottom: 36px; max-width: 480px;
      animation: fadeUp .6s .2s ease both;
      font-weight: 400;
    }
    .hero-actions {
      display: flex; gap: 14px; flex-wrap: wrap;
      animation: fadeUp .6s .3s ease both;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--orange); color: var(--white);
      padding: 15px 28px; border-radius: 10px;
      font-weight: 700; font-size: 15px; text-decoration: none;
      transition: var(--transition);
      box-shadow: 0 4px 20px rgba(244,121,32,.35);
      border: none; cursor: pointer;
    }
    .btn-primary:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(244,121,32,.45); }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,.1); color: var(--white);
      padding: 15px 28px; border-radius: 10px;
      font-weight: 600; font-size: 15px; text-decoration: none;
      border: 1px solid rgba(255,255,255,.2);
      transition: var(--transition);
    }
    .btn-secondary:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
    .hero-stats {
      display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap;
      animation: fadeUp .6s .4s ease both;
    }
    .stat { text-align: left; }
    .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1;
    }
    .stat-num span { color: var(--orange); }
    .stat-label { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 4px; font-weight: 500; }

    /* Truck illustration SVG */
    .hero-visual {
      display: flex; justify-content: center; align-items: center;
      animation: fadeLeft .8s .2s ease both;
    }
    .truck-wrap {
      position: relative; width: 100%; max-width: 500px;
    }
    .truck-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 20px; padding: 32px;
      backdrop-filter: blur(10px);
    }
    .truck-svg { width: 100%; }

    /* ───── SECTION BASE ───── */
    section { padding: 96px 24px; }
    .container { max-width: 1200px; margin: 0 auto; }
    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--orange);
      margin-bottom: 12px;
    }
    .section-label::before {
      content: ''; width: 24px; height: 2px; background: var(--orange); border-radius: 2px;
    }
    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.8rem);
      color: var(--navy); line-height: 1.15; margin-bottom: 16px;
    }
    .section-sub {
      font-size: 1.05rem; color: var(--muted); line-height: 1.7; max-width: 580px;
    }

    /* ───── SOBRE ───── */
    #sobre { background: var(--gray); }
    .sobre-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
    }
    .sobre-visual {
      position: relative;
    }
    .sobre-img-block {
      background: linear-gradient(135deg, var(--navy), var(--blue2));
      border-radius: 20px; padding: 40px;
      position: relative; overflow: hidden;
    }
    .sobre-img-block::after {
      content: ''; position: absolute; bottom: -40px; right: -40px;
      width: 200px; height: 200px; border-radius: 50%;
      background: rgba(244,121,32,.2);
    }
    .sobre-icon-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
      position: relative; z-index: 1;
    }
    .sobre-icon-card {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 12px; padding: 20px;
      text-align: center;
    }
    .sobre-icon-card i { font-size: 28px; color: var(--orange); margin-bottom: 10px; display: block; }
    .sobre-icon-card p { font-size: 13px; color: rgba(255,255,255,.8); font-weight: 600; line-height: 1.4; }
    .sobre-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
    .sobre-list li {
      display: flex; align-items: flex-start; gap: 14px;
      font-size: 15px; color: var(--text); font-weight: 500; line-height: 1.5;
    }
    .sobre-list li i {
      color: var(--orange); font-size: 18px; margin-top: 2px; flex-shrink: 0;
    }
    .sobre-badge {
      position: absolute; bottom: -20px; right: -20px;
      background: var(--orange); border-radius: 16px;
      padding: 16px 24px; text-align: center; box-shadow: var(--shadow2);
    }
    .sobre-badge strong { display: block; font-size: 32px; font-weight: 900; color: var(--white); font-family: 'Barlow Condensed', sans-serif; }
    .sobre-badge span { font-size: 12px; color: rgba(255,255,255,.85); font-weight: 600; letter-spacing: .5px; }

    /* ───── DIFERENCIAIS ───── */
    #diferenciais { background: var(--white); }
    .cards-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px;
    }
    .diff-card {
      background: var(--gray);
      border: 1px solid var(--gray2);
      border-radius: var(--radius);
      padding: 32px 28px;
      transition: var(--transition);
      position: relative; overflow: hidden;
    }
    .diff-card::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 4px; height: 100%; background: var(--orange);
      transform: scaleY(0); transform-origin: bottom; transition: var(--transition);
    }
    .diff-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); border-color: rgba(244,121,32,.2); }
    .diff-card:hover::before { transform: scaleY(1); }
    .diff-icon {
      width: 56px; height: 56px; border-radius: 14px;
      background: linear-gradient(135deg, var(--navy), var(--blue2));
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px; transition: var(--transition);
    }
    .diff-card:hover .diff-icon { background: var(--orange); transform: scale(1.08); }
    .diff-icon i { font-size: 22px; color: var(--white); }
    .diff-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
    .diff-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

    /* ───── FORMULÁRIO ───── */
    #cotacao { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); position: relative; overflow: hidden; }
    #cotacao::before {
      content: ''; position: absolute; inset: 0; opacity: .03;
      background-image:
        linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
      background-size: 50px 50px;
    }
    .cotacao-wrap { position: relative; z-index: 1; }
    .cotacao-header { text-align: center; margin-bottom: 52px; }
    .cotacao-header .section-title { color: var(--white); }
    .cotacao-header .section-sub { color: rgba(255,255,255,.65); margin: 0 auto; }
    .form-card {
      background: var(--white); border-radius: 20px;
      padding: 48px; max-width: 860px; margin: 0 auto;
      box-shadow: 0 24px 80px rgba(0,0,0,.25);
    }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group.full { grid-column: 1 / -1; }
    .form-group label {
      font-size: 13px; font-weight: 700; color: var(--navy);
      letter-spacing: .3px; text-transform: uppercase;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 13px 16px;
      border: 1.5px solid var(--gray2);
      border-radius: 10px;
      font-family: 'Barlow', sans-serif;
      font-size: 15px; color: var(--text);
      background: var(--gray);
      transition: var(--transition);
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--blue2);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(30,77,150,.1);
    }
    .form-group input.error,
    .form-group select.error,
    .form-group textarea.error {
      border-color: #e53e3e;
    }
    .field-error { font-size: 12px; color: #e53e3e; font-weight: 500; }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-group select { cursor: pointer; }
    .form-submit { margin-top: 28px; text-align: center; }
    .btn-submit {
      background: var(--orange); color: var(--white);
      border: none; cursor: pointer;
      display: inline-flex; align-items: center; gap: 12px;
      padding: 16px 40px; border-radius: 12px;
      font-family: 'Barlow', sans-serif;
      font-weight: 700; font-size: 16px;
      box-shadow: 0 4px 24px rgba(244,121,32,.35);
      transition: var(--transition);
    }
    .btn-submit:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(244,121,32,.45); }
    .btn-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
    .form-note { margin-top: 14px; font-size: 13px; color: var(--muted); }
    .form-note i { color: var(--orange); }

    /* Success message */
    .success-msg {
      display: none; text-align: center; padding: 52px 32px;
    }
    .success-circle {
      width: 80px; height: 80px; background: #e6f9ef;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px;
    }
    .success-circle i { font-size: 36px; color: #38a169; }
    .success-msg h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
    .success-msg p { color: var(--muted); font-size: 15px; line-height: 1.6; }

    /* ───── RODAPÉ ───── */
    footer { background: var(--navy); padding: 64px 24px 32px; }
    .footer-grid {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
      padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .footer-brand { }
    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .footer-logo .logo-badge { width: 36px; height: 36px; }
    .footer-logo strong { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 18px; color: var(--white); }
    .footer-brand p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 280px; }
    .footer-tagline {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 16px; font-size: 13px; font-weight: 600;
      color: var(--orange);
    }
    .footer-col h4 {
      font-size: 14px; font-weight: 700; color: var(--white);
      letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-size: 14px; color: rgba(255,255,255,.55);
      text-decoration: none; transition: var(--transition);
    }
    .footer-links a:hover { color: var(--orange); }
    .contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .contact-list li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 14px; color: rgba(255,255,255,.7);
    }
    .contact-list li i { color: var(--orange); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
    .contact-list a { color: rgba(255,255,255,.7); text-decoration: none; transition: var(--transition); }
    .contact-list a:hover { color: var(--orange); }
    .footer-bottom {
      max-width: 1200px; margin: 0 auto; padding-top: 28px;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }
    .footer-bottom span { color: rgba(255,255,255,.25); }

    /* ───── WHATSAPP FLOAT ───── */
    .wa-float {
      position: fixed; bottom: 28px; right: 28px; z-index: 200;
      width: 58px; height: 58px; border-radius: 50%;
      background: #25d366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,.4);
      text-decoration: none; transition: var(--transition);
      animation: pulse 2.5s infinite;
    }
    .wa-float:hover { transform: scale(1.1); }
    .wa-float i { font-size: 28px; color: var(--white); }

    /* ───── ANIMATIONS ───── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeLeft {
      from { opacity: 0; transform: translateX(40px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
      50%       { box-shadow: 0 4px 32px rgba(37,211,102,.7); }
    }
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ───── RESPONSIVE ───── */
    @media (max-width: 1024px) {
      .cards-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .mobile-menu.open { display: flex; }
      .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 100px 24px 60px; }
      .hero-visual { order: -1; }
      .hero-title { font-size: 2.2rem; }
      .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
      .sobre-badge { position: static; margin-top: 20px; display: inline-block; }
      .cards-grid { grid-template-columns: 1fr; }
      .form-card { padding: 28px 20px; }
      .form-grid { grid-template-columns: 1fr; }
      .form-group.full { grid-column: 1; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .hero-stats { gap: 20px; }
    }
/* ───── LGPD: CONSENTIMENTO NO FORMULÁRIO ───── */
.consent-group { margin-top: 22px; }
.consent-check {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; user-select: none;
}
.consent-check input[type="checkbox"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.consent-box {
  flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px;
  border: 2px solid var(--gray2); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); background: var(--white);
}
.consent-box i { font-size: 11px; color: transparent; transition: var(--transition); }
.consent-check input:checked ~ .consent-box {
  background: var(--orange); border-color: var(--orange);
}
.consent-check input:checked ~ .consent-box i { color: var(--white); }
.consent-check input.error ~ .consent-box { border-color: #e53e3e; }
.consent-text { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.policy-link { color: var(--orange); font-weight: 600; text-decoration: underline; }
.policy-link:hover { color: var(--orange2); }

/* ───── LGPD: MODAL POLÍTICA DE PRIVACIDADE ───── */
.privacy-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,22,40,.72);
  backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  padding: 20px;
}
.privacy-overlay.open { display: flex; }
.privacy-modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 720px; width: 100%;
  max-height: 85vh; overflow-y: auto;
  padding: 40px 36px;
  position: relative;
  box-shadow: var(--shadow2);
  animation: fadeUp .35s ease both;
}
.privacy-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: var(--gray); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: var(--transition);
}
.privacy-close:hover { background: var(--gray2); }
.privacy-modal h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 800; color: var(--navy);
  display: flex; align-items: center; gap: 10px;
}
.privacy-modal h2 i { color: var(--orange); }
.privacy-updated { font-size: 12.5px; color: var(--muted); margin-top: 4px; margin-bottom: 20px; }
.privacy-body h3 {
  font-size: 15.5px; font-weight: 700; color: var(--navy);
  margin-top: 20px; margin-bottom: 6px;
}
.privacy-body p { font-size: 14px; color: var(--text); line-height: 1.65; margin-bottom: 4px; }
.privacy-body a { color: var(--orange); font-weight: 600; }

/* ───── LGPD: BANNER DE COOKIES ───── */
.cookie-banner {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--navy);
  color: var(--white);
  padding: 18px 24px;
  align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
}
.cookie-banner.show { display: flex; }
.cookie-text {
  font-size: 13.5px; color: rgba(255,255,255,.85);
  max-width: 720px; line-height: 1.5;
}
.cookie-text i { color: var(--orange); margin-right: 6px; }
.cookie-text a { color: var(--orange); font-weight: 600; text-decoration: underline; }
.btn-cookie-accept {
  background: var(--orange); color: var(--white);
  border: none; padding: 10px 24px; border-radius: 8px;
  font-weight: 700; font-size: 13.5px; cursor: pointer;
  white-space: nowrap; transition: var(--transition);
}
.btn-cookie-accept:hover { background: var(--orange2); }

@media (max-width: 640px) {
  .privacy-modal { padding: 28px 22px; }
  .cookie-banner { flex-direction: column; text-align: center; padding: 16px; }
}