
  :root {
    --green: #021479;
    --green-dark: #09017e;
    --green-light: #e6faf0;
    --blue: #1a2a6c;
    --blue-mid: #363663;
    --yellow: #FFD600;
    --dark: #0d1a0d;
    --gray: #f4f6f4;
    --text: #1e2a1e;
    --white: #fff;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Barlow', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  h1, h2, h3, h4, h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }


  .logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: .3s ease;
}

.logo-img:hover {
    transform: scale(1.03);
}
  /* ── TOP BAR ── */
  .topbar {
    background: var(--blue-mid);
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
  }
  .topbar a { color: var(--yellow); text-decoration: none; font-weight: 700; }

  /* ── HEADER ── */
  header {
    background: var(--white);
    padding: 16px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--green);
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  }
  .logo { display: flex; align-items: center; gap: 12px; }
  .logo-icon {
    width: 52px; height: 52px;
    background: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
  }
  .logo-text { line-height: 1.1; }
  .logo-text span { display: block; }
  .logo-text .brand { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 900; color: var(--blue-mid); text-transform: uppercase; letter-spacing: 1px; }
  .logo-text .sub { font-size: 12px; color: var(--green-dark); font-weight: 600; }

  .header-cta {
    display: flex; align-items: center; gap: 20px; border-radius: 50%;
  }
  .phone { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 18px; color: var(--blue-mid); }
  .btn {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    border: none; cursor: pointer;
  }
  .btn:hover { background: var(--green-dark); transform: translateY(-2px); }
  .btn-outline {
    background: transparent;
    border: 2px solid var(--green);
    color: var(--green);
  }
  .btn-outline:hover { background: var(--green); color: #fff; }
  .btn-yellow { background: var(--yellow); color: var(--dark); }
  .btn-yellow:hover { background: #e6c000; }
  .btn-large { font-size: 20px; padding: 16px 40px; }

  /* ── HERO ── */
  .hero {
    background: var(--blue-mid);
    background-image: linear-gradient(135deg, #1a2a6c 0%, #363663 40%, #0d3b1e 100%);
    color: #fff;
    padding: 80px 5% 70px;
    position: relative;
    overflow: hidden;
  }
 .hero::before {
    position: absolute;

    width: 800px;
    height: 800px;

    right: -200px;
    top: -150px;

    background-image: url('img/carro.avif');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.15;

    filter:
        grayscale(50%)
        brightness(1.2)
        blur(2px);

    pointer-events: none;
}

.produto-imagem {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.produto-imagem img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
}
  .hero-inner { max-width: 780px; }
  .hero-badge {
    display: inline-block;
    background: var(--yellow);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
  }
  .hero h1 em { color: var(--yellow); font-style: normal; }
  .hero p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin-bottom: 32px;
  }
  .hero-stats {
    display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 36px;
    color: #fbff04;
  }
  .hero-stat { text-align: center; color: #fbff04; } 
  .hero-stat strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 900; color: var(--yellow); line-height: 1; }
  .hero-stat span { font-size: 12px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

  /* ── DELIVERY BADGE ── */
  .delivery-bar {
    background: var(--green);
    color: #fff;
    text-align: center;
    padding: 18px 5%;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .delivery-bar span { color: var(--yellow); }

  /* ── SECTIONS ── */
  section { padding: 72px 5%; }
  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
  }
  .section-title { font-size: clamp(28px, 4vw, 48px); color: var(--blue-mid); margin-bottom: 16px; line-height: 1.05; }
  .section-sub { font-size: 17px; color: #555; max-width: 600px; line-height: 1.6; margin-bottom: 48px; }
  .section-center { text-align: center; }
  .section-center .section-sub { margin-left: auto; margin-right: auto; }

  /* ── SOBRE ── */
  .sobre { background: var(--gray); }
  .sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .sobre-icon-big { font-size: 120px; text-align: center; line-height: 1; }
  .sobre ul { list-style: none; margin-top: 20px; }
  .sobre ul li {
    padding: 10px 0 10px 36px;
    position: relative;
    font-size: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .sobre ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; font-size: 18px; }

  /* ── PRODUTOS ── */
  .produtos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
  .produto-card {
    border: 2px solid #e8ede8;
    border-radius: 8px;
    padding: 28px 24px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }
  .produto-card:hover { border-color: var(--green); box-shadow: 0 8px 32px rgba(4,191,85,0.12); transform: translateY(-4px); }
  .produto-card .marca-badge {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    background: var(--blue-mid); color: #fff;
    padding: 4px 12px; border-radius: 2px; margin-bottom: 16px;
  }
  .produto-card h3 { font-size: 22px; color: var(--blue-mid); margin-bottom: 12px; }
  .produto-card ul { list-style: none; }
  .produto-card ul li { padding: 5px 0; font-size: 14px; color: #555; border-bottom: 1px solid #f0f0f0; }
  .produto-card ul li::before { content: '→ '; color: var(--green); font-weight: 700; }
  .produto-card .card-footer { margin-top: 20px; }

  /* ── DIFERENCIAIS ── */
  .diferenciais { background: var(--blue-mid); color: #fff; }
  .diferenciais .section-title { color: #fff; }
  .diferenciais .section-sub { color: rgba(255,255,255,0.75); }
  .dif-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
  .dif-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 28px 22px;
    text-align: center;
    transition: background 0.2s;
  }
  .dif-card:hover { background: rgba(4,191,85,0.15); border-color: var(--green); }
  .dif-icon { font-size: 40px; margin-bottom: 14px; }
  .dif-card h4 { font-size: 18px; color: var(--green); margin-bottom: 8px; }
  .dif-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; }

  /* ── URGÊNCIA ── */
  .urgencia {
    background: linear-gradient(135deg, #0d3b1e 0%, #04BF55 100%);
    color: #fff;
    text-align: center;
    padding: 80px 5%;
  }
  .urgencia h2 { font-size: clamp(30px, 5vw, 56px); color: #fff; margin-bottom: 16px; }
  .urgencia p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 36px; line-height: 1.6; }

  /* ── UNIDADES ── */
  .unidades-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
  .unidade-card {
    border-left: 4px solid var(--green);
    background: var(--gray);
    padding: 20px 20px 20px 24px;
    border-radius: 0 6px 6px 0;
  }
  .unidade-card .bairro { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 20px; color: var(--blue-mid); text-transform: uppercase; }
  .unidade-card .endereco { font-size: 14px; color: #666; margin-top: 6px; line-height: 1.4; }

  /* ── HORÁRIO ── */
  .horario { background: var(--gray); }
  .horario-inner { display: flex; gap: 48px; flex-wrap: wrap; align-items: center; }
  .horario-table { flex: 1; min-width: 240px; }
  .horario-table h3 { font-size: 28px; color: var(--blue-mid); margin-bottom: 16px; }
  .horario-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #ddd; font-size: 15px; }
  .horario-row strong { color: var(--blue-mid); }
  .horario-row span { color: var(--green); font-weight: 600; }
  .horario-contact { flex: 1; min-width: 240px; }
  .horario-contact h3 { font-size: 28px; color: var(--blue-mid); margin-bottom: 12px; }
  .big-phone { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 8px; }
  .horario-contact p { color: #555; margin-bottom: 20px; font-size: 15px; }

  /* ── FAQ ── */
  .faq-list { max-width: 800px; margin: 0 auto; }
  details {
    border: 1px solid #e0e6e0;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
  }
  details[open] { border-color: var(--green); }
  summary {
    padding: 18px 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-mid);
    cursor: pointer;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
  }
  summary::after { content: '+'; font-size: 22px; color: var(--green); transition: transform 0.2s; }
  details[open] summary::after { transform: rotate(45deg); }
  details p { padding: 0 20px 18px; color: #555; line-height: 1.6; font-size: 15px; }

  /* ── FORM ── */
  .form-section { background: var(--blue-mid); }
  .form-section .section-title { color: #fff; }
  .form-section .section-sub { color: rgba(255,255,255,0.75); }
  .contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 700px; }
  .contact-form input, .contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Barlow', sans-serif;
    transition: border-color 0.2s;
    outline: none;
  }
  .contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
  .contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); }
  .contact-form .full { grid-column: 1 / -1; }
  .contact-form textarea { resize: vertical; min-height: 110px; }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 32px 5%;
    font-size: 14px;
  }
  footer a { color: var(--green); text-decoration: none; }
  .footer-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 8px; }

  /* ── WHATSAPP FLOAT ── */
  .wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    background: #25D366;
    color: #fff;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    text-decoration: none;
    animation: pulse 2.5s infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.9); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .header-cta .phone { display: none; }
    .sobre-grid { grid-template-columns: 1fr; }
    .sobre-icon-big { font-size: 80px; }
    .contact-form { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .horario-inner { flex-direction: column; gap: 32px; }
  }