/* ============================================================
   LS Informática — Stylesheet
   Organizado por seções numeradas (ver índice abaixo).
   ============================================================ */
    /* ==============================================================
       CSS INDEX
       01. VARIABLES & RESET
       02. LOADER
       03. SCROLLBAR & SELECTION
       04. NAVBAR
       05. HERO (+ DIAGNOSTIC CARD)
       06. SERVICES
       07. WHY US
       08. TESTIMONIALS
       09. DIAGNOSIS PROCESS
       10. FAQ
       11. STATS
       12. CONTACT
       13. MAP
       14. FOOTER
       15. FLOATING ELEMENTS (WhatsApp, Back-to-top)
       16. LEGAL MODALS
       17. REVEAL ANIMATIONS
       18. FLOATING PARTICLES (global)
       19. PHOTO CAROUSEL (galeria)
       20. PRODUTOS / VENDAS
       21. COOKIES
       22. URGENCY BAR
       23. ACTIVE NAV LINK (scroll spy)
       24. GOOGLE BADGE (hero)
       25. UTILITY CLASSES
       26. ENTRY ANIMATIONS
       27. RESPONSIVE (1200 / 1024 / 992 / 768 / 576 / 400)
    ============================================================== */

    /* ── 01. VARIABLES & RESET ─────────────────────────────────── */
    :root {
      --primary:     #2563eb;
      --primary-d:   #1d4ed8;
      --primary-l:   #3b82f6;
      --accent:      #93c5fd;
      --bg:          #020617;
      --bg-card:     rgba(15, 23, 42, .6);
      --bg-card2:    #070b19;
      --border:      rgba(255, 255, 255, .05);
      --border-blue: rgba(59, 130, 246, .3);
      --text:        #cbd5e1;
      --text-muted:  #94a3b8;
      --white:       #ffffff;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      font-family: 'Poppins', sans-serif;
      background: radial-gradient(circle at top, #0f172a 0%, var(--bg) 100%);
      color: var(--white);
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; transition: .3s; }
    a:focus { outline: none; }
    ul { list-style: none; }

    /* ── 02. LOADER ────────────────────────────────────────────── */
    .loader {
      position: fixed; inset: 0;
      background: var(--bg);
      display: flex; justify-content: center; align-items: center;
      z-index: 99999; transition: .5s;
    }
    .loader.hidden { opacity: 0; visibility: hidden; }
    .ls-spinner {
      width: 70px; height: 70px;
      border: 4px solid rgba(255,255,255,.08);
      border-top: 4px solid var(--primary-l);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }
    @keyframes spin { 100% { transform: rotate(360deg); } }

    /* ── 03. SCROLLBAR & SELECTION ─────────────────────────────── */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 20px; }
    ::selection { background: var(--primary); color: #fff; }

    /* ── 04. NAVBAR ─────────────────────────────────────────────── */
    .navbar {
      padding: 12px 0;
      position: fixed; width: 100%; top: 0; left: 0;
      background: rgba(2, 6, 23, .7);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      z-index: 1000;
      transition: all .35s ease;
    }
    .navbar.scrolled {
      background: rgba(2, 6, 23, .97);
      box-shadow: 0 4px 30px rgba(0,0,0,.4);
    }
    .navbar-brand img {
      height: 44px; width: auto;
    }
    .navbar-light .navbar-nav .nav-link {
      color: var(--text);
      font-family: 'Poppins', sans-serif;
      font-size: 14px; font-weight: 500;
      padding: 0 14px;
      transition: color .3s;
    }
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active { color: var(--primary-l) !important; }
    .navbar-light .navbar-toggler {
      border: 1px solid var(--border-blue);
      border-radius: 8px; padding: 6px 10px;
    }
    .navbar-light .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(147,197,253,0.9)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    /* ── 05. HERO ───────────────────────────────────────────────── */
    #home {
      position: relative;
      min-height: 100vh;
      display: flex; align-items: center;
      padding: 140px 0 100px;
      background: var(--bg);
      overflow: hidden;
      border-bottom: 1px solid var(--border);
    }
    #home::before {
      content: '';
      position: absolute; inset: 0;
      background:
        url('../assets/images/image_4f6b84.jpg') center/cover no-repeat,
        var(--bg);
      opacity: .12;
      z-index: 0;
    }
    #home::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at top left, rgba(37,99,235,.18) 0%, transparent 55%);
      z-index: 0;
    }
    #particles-js {
      position: absolute; inset: 0;
      z-index: 1; pointer-events: none;
    }
    #particles-js canvas { pointer-events: none !important; }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 760px;
    }
    .hero-badge {
      display: inline-block;
      padding: 8px 20px;
      background: rgba(37,99,235,.18);
      border: 1px solid rgba(59,130,246,.45);
      border-radius: 50px;
      color: var(--accent);
      margin-bottom: 20px;
      font-size: .8rem;
      letter-spacing: 1.5px;
      font-weight: 600;
      backdrop-filter: blur(10px);
    }
    .hero-content h1 {
      font-size: 2.9rem;
      line-height: 1.2;
      margin-bottom: 18px;
      font-weight: 700;
      text-shadow: 0 0 30px rgba(59,130,246,.2);
    }

    .hero-content p {
      font-size: 1rem;
      color: var(--text);
      margin-bottom: 32px;
      line-height: 1.8;
      max-width: 480px;
    }
    .hero-buttons {
      display: flex; gap: 18px; flex-wrap: wrap;
    }
    .btn-ls {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 14px 34px; border-radius: 12px;
      font-weight: 600; font-size: .95rem;
      background: var(--primary);
      color: #fff;
      box-shadow: 0 4px 18px rgba(37,99,235,.45);
      transition: all .3s ease;
      touch-action: manipulation; -webkit-tap-highlight-color: transparent;
    }
    .btn-ls:hover { transform: translateY(-4px); background: var(--primary-d); color: #fff; box-shadow: 0 8px 24px rgba(37,99,235,.55); }
    .btn-ls-ghost {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 14px 34px; border-radius: 12px;
      font-weight: 600; font-size: .95rem;
      border: 1px solid rgba(255,255,255,.15);
      background: rgba(255,255,255,.03);
      color: #fff;
      backdrop-filter: blur(10px);
      transition: all .3s ease;
      touch-action: manipulation; -webkit-tap-highlight-color: transparent;
    }
    .btn-ls-ghost:hover { transform: translateY(-4px); border-color: var(--primary); background: rgba(37,99,235,.12); color: #fff; }

    /* ── 05b. DIAGNOSTIC CARD (hero side) ──────────────────────────── */
    .diag-card {
      background: rgba(7, 10, 22, .85);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(59,130,246,.22);
      border-radius: 20px;
      padding: 28px 28px 22px;
      box-shadow: 0 0 60px rgba(37,99,235,.12), 0 0 0 1px rgba(255,255,255,.04);
      position: relative;
      overflow: hidden;
      max-width: 420px;
      margin: 0 auto;
    }
    .diag-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--primary-l), transparent);
      animation: diagScan 3s ease-in-out infinite;
      z-index: 10;
      transform: translateY(0);
    }
    @keyframes diagScan {
      0%   { transform: translateY(0); }
      50%  { transform: translateY(var(--diag-h, 300px)); }
      100% { transform: translateY(0); }
    }
    .diag-header {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 20px;
    }
    .diag-title {
      font-size: .75rem; font-weight: 700;
      letter-spacing: 1.5px; color: var(--text-muted);
    }
    .diag-title i { margin-right: 6px; color: var(--primary-l); }
    .diag-live {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(239,68,68,.12);
      border: 1px solid rgba(239,68,68,.35);
      border-radius: 50px;
      padding: 3px 12px;
      font-size: .68rem; font-weight: 700;
      color: #f87171;
      letter-spacing: 1px;
    }
    .diag-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: #f87171;
      animation: blink .8s infinite;
    }
    .diag-temp-block {
      background: rgba(0,0,0,.35);
      border: 1px solid rgba(255,255,255,.06);
      border-radius: 12px;
      padding: 18px 20px 14px;
      margin-bottom: 16px;
    }
    .diag-temp-label {
      font-size: .68rem; letter-spacing: 2px; font-weight: 700;
      color: var(--text-muted); margin-bottom: 6px;
    }
    .diag-temp-value {
      font-size: 3.2rem; font-weight: 800;
      color: #f97316;
      text-shadow: 0 0 30px rgba(249,115,22,.55);
      line-height: 1;
      font-variant-numeric: tabular-nums;
    }
    .diag-temp-sub {
      font-size: .75rem; color: #fbbf24; margin-top: 6px; font-weight: 500;
    }
    .diag-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
      margin-bottom: 16px;
    }
    .diag-item {
      border-radius: 10px; padding: 12px 14px;
      border: 1px solid transparent;
    }
    .diag-item--warn     { background: rgba(234,179,8,.08);  border-color: rgba(234,179,8,.25); }
    .diag-item--danger   { background: rgba(249,115,22,.08); border-color: rgba(249,115,22,.3); }
    .diag-item--critical { background: rgba(239,68,68,.1);   border-color: rgba(239,68,68,.35); }
    .diag-item-label {
      font-size: .62rem; letter-spacing: 1.5px;
      color: var(--text-muted); font-weight: 700; margin-bottom: 5px;
    }
    .diag-item-label i { margin-right: 4px; }
    .diag-item--warn .diag-item-val     { color: #fde047; }
    .diag-item--danger .diag-item-val   { color: #fb923c; }
    .diag-item--critical .diag-item-val { color: #f87171; }
    .diag-item-val { font-size: .92rem; font-weight: 700; }
    .diag-risks {
      border-top: 1px solid rgba(255,255,255,.06);
      padding-top: 14px;
      display: flex; flex-direction: column; gap: 7px;
    }
    .diag-risks li {
      font-size: .78rem; color: var(--text-muted);
      display: flex; align-items: center; gap: 8px;
    }
    .diag-risks li i { color: #f87171; flex-shrink: 0; }

    /* ── 06. SERVICES SECTION (Lucas Sousa process-content) ─────────── */
    .services-section {
      background: rgba(7, 11, 25, .8);
      border-bottom: 1px solid var(--border);
      padding: 90px 0;
    }
    .section-title { margin-bottom: 55px; }
    .section-title h1 {
      font-size: 2.6rem; font-weight: 700;
      margin-bottom: 12px; text-transform: capitalize;
      color: #fff;
    }
    .section-title p {
      color: var(--text-muted);
      width: 75%; margin: auto;
      font-size: 1rem; line-height: 1.75;
    }
    .section-title .section-line {
      width: 50px; height: 3px;
      background: var(--primary); border-radius: 2px;
      margin: 14px auto 0;
    }
    /* Service cards — Lucas Sousa single-process style */
    /* row stretch — todas as colunas da mesma linha ficam com igual altura */
    .services-section .row { align-items: stretch; }
    .services-section [class*="col-"] { display: flex; }

    .service-card {
      background: var(--bg-card);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid var(--border);
      border-top: 3px solid var(--primary);   /* destaque topo */
      border-radius: 18px;
      padding: 36px 28px 32px;
      text-align: center;
      transition: all .3s ease;
      position: relative; overflow: hidden;
      width: 100%;                             /* ocupa toda a coluna flex */
      display: flex; flex-direction: column; align-items: center;
    }
    .service-card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(120deg, transparent, rgba(255,255,255,.03), transparent);
      transform: translateX(-100%); transition: .8s;
    }
    .service-card:hover::before { transform: translateX(100%); }
    .service-card:hover {
      transform: translateY(-10px);
      border-top-color: var(--primary-l);
      border-color: var(--primary);
      box-shadow: 0 20px 50px rgba(37,99,235,.18), 0 0 40px rgba(37,99,235,.08);
    }
    /* ícone em círculo com fundo */
    .service-icon-wrap {
      width: 72px; height: 72px; border-radius: 50%;
      background: rgba(37,99,235,.12);
      border: 1px solid rgba(59,130,246,.25);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 22px; flex-shrink: 0;
      transition: all .3s;
    }
    .service-card:hover .service-icon-wrap {
      background: rgba(37,99,235,.25);
      border-color: var(--primary-l);
      transform: scale(1.08);
    }
    .service-card i {
      font-size: 1.9rem; color: var(--primary-l);
      display: block; transition: transform .3s;
    }
    .service-card h4 {
      font-size: 1.05rem; font-weight: 600;
      margin-bottom: 10px; color: #fff;
    }
    .service-card p {
      color: var(--text); font-size: .88rem; line-height: 1.7;
      flex-grow: 1;                            /* empurra descrição para baixo uniformemente */
    }

    /* ── 07. WHY US (Lucas Sousa) ──────────────────────── */
    .why-section { padding: 90px 0; background: var(--bg); }
    .why-left h2 {
      font-size: 2.5rem; font-weight: 700;
      margin: 16px 0 20px; line-height: 1.2; color: #fff;
    }
    .why-left p { color: var(--text-muted); line-height: 1.8; font-size: 1rem; }
    .why-left a {
      display: inline-block; margin-top: 28px;
      padding: 12px 30px; border-radius: 50px;
      background: var(--primary); color: #fff; font-weight: 600;
      transition: all .3s;
    }
    .why-left a:hover { background: var(--primary-d); color: #fff; }
    .why-card {
      background: var(--bg-card);
      backdrop-filter: blur(10px);
      border: 1px solid var(--border);
      border-top: 3px solid var(--primary);
      border-radius: 18px; padding: 32px;
      margin-bottom: 24px; transition: .3s;
      position: relative; overflow: hidden;
    }
    .why-card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(120deg, transparent, rgba(255,255,255,.03), transparent);
      transform: translateX(-100%); transition: .8s;
    }
    .why-card:hover::before { transform: translateX(100%); }
    .why-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: 0 15px 35px rgba(37,99,235,.12); }
    .why-card i { font-size: 2rem; color: var(--primary-l); margin-bottom: 16px; display: block; }
    .why-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: #fff; }
    .why-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; }

    /* ── 08. TESTIMONIALS ─────────────────────────────── */
    .testimonials-section {
      padding: 90px 0;
      background: linear-gradient(135deg, #040b18 0%, #060e1f 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .testimonial-card {
      background: var(--bg-card);
      backdrop-filter: blur(10px);
      border: 1px solid var(--border);
      border-radius: 20px; padding: 35px;
      transition: .3s; position: relative; overflow: hidden;
    }
    .testimonial-card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(120deg, transparent, rgba(255,255,255,.03), transparent);
      transform: translateX(-100%); transition: .8s;
    }
    .testimonial-card:hover::before { transform: translateX(100%); }
    .testimonial-card:hover { border-color: var(--primary); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(37,99,235,.12); }
    .stars { color: #fbbf24; margin-bottom: 18px; }
    .testimonial-card p { color: var(--text); line-height: 1.75; font-size: .95rem; font-style: italic; margin-bottom: 18px; }
    .testimonial-card h4 { color: var(--primary-l); font-size: .9rem; font-weight: 600; }
    .google-reviews-btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 13px 30px; border-radius: 12px;
      border: 1px solid rgba(255,255,255,.12);
      color: #fff; font-weight: 600; font-size: .9rem;
      background: rgba(255,255,255,.04);
      backdrop-filter: blur(10px);
      margin-top: 44px;
      transition: all .3s;
    }
    .google-reviews-btn:hover { border-color: var(--primary); background: rgba(37,99,235,.12); color: #fff; }

    /* ── 09. DIAGNOSIS PROCESS ─────────────────────────── */
    .diagnosis-section { padding: 90px 0; background: var(--bg); }
    .process-badge-label {
      color: var(--primary-l); font-size: .78rem;
      letter-spacing: 2px; font-weight: 600;
      position: relative; padding-left: 26px; display: inline-block;
      margin-bottom: 14px;
    }
    .process-badge-label::before {
      content: ''; position: absolute; left: 0; top: 50%;
      width: 18px; height: 2px; background: var(--primary-l);
      transform: translateY(-50%);
    }
    .diagnosis-intro h2 {
      font-size: 2.4rem; font-weight: 700; color: #fff;
      margin-bottom: 14px; line-height: 1.2;
    }
    .diagnosis-intro p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      background: var(--border);
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--border);
      margin: 50px 0 28px;
    }
    .step-card {
      background: var(--bg-card2);
      padding: 38px 26px;
      display: flex; flex-direction: column;
      transition: all .3s; position: relative; overflow: hidden;
    }
    .step-card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(120deg, transparent, rgba(255,255,255,.03), transparent);
      transform: translateX(-100%); transition: .8s;
    }
    .step-card:hover::before { transform: translateX(100%); }
    .step-card:hover { background: rgba(10,20,42,.9); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(37,99,235,.12); }
    .step-number { font-size: .85rem; font-weight: 700; color: var(--primary); margin-bottom: 28px; }
    .step-card h3 { font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 12px; }
    .step-card p { color: var(--text-muted); font-size: .88rem; line-height: 1.6; }
    .diagnosis-policy {
      background: rgba(15,23,42,.4);
      border: 1px solid rgba(59,130,246,.15);
      border-radius: 14px; padding: 22px 28px;
      box-shadow: inset 0 0 15px rgba(37,99,235,.05);
    }
    .diagnosis-policy p { color: var(--text); font-size: .92rem; line-height: 1.7; }
    .diagnosis-policy strong { color: var(--primary-l); }

    /* ── 10. FAQ ────────────────────────────────────────── */
    .faq-section { padding: 90px 0; background: rgba(7,11,25,.85); border-top: 1px solid var(--border); }
    .faq-item {
      background: var(--bg-card);
      backdrop-filter: blur(10px);
      border: 1px solid var(--border);
      border-radius: 16px; overflow: hidden;
      transition: all .3s; margin-bottom: 14px;
    }
    .faq-title {
      font-size: 1rem; font-weight: 500;
      padding: 20px 24px; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      color: #fff; user-select: none;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
    }
    .faq-title i { transition: transform .3s; color: var(--primary-l); pointer-events: none; }
    .faq-item.active { border-color: var(--primary); background: rgba(15,23,42,.8); }
    .faq-item.active .faq-title i { transform: rotate(180deg); }
    .faq-content {
      max-height: 0; overflow: hidden;
      transition: max-height .35s cubic-bezier(0,0,.2,1);
      padding: 0 24px;
    }
    .faq-content p { padding-bottom: 20px; color: var(--text); line-height: 1.7; font-size: .92rem; }
    .faq-item.active .faq-content { max-height: 500px; }

    /* ── 11. STATS ─────────────────────────────────────── */
    .stats-section {
      padding: 80px 0;
      background: rgba(7,11,25,.95);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      position: relative; overflow: hidden;
    }
    .stats-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(37,99,235,.06) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(37,99,235,.06) 1px, transparent 1px);
      background-size: 50px 50px;
    }
    .stat-box {
      text-align: center; position: relative; z-index: 1;
      padding: 28px 20px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 18px;
      transition: all .3s;
    }
    .stat-box:hover {
      border-color: var(--primary);
      transform: translateY(-6px);
      box-shadow: 0 15px 40px rgba(37,99,235,.15);
    }
    .stat-box h2 {
      font-size: 3.2rem; font-weight: 800;
      color: var(--primary-l); margin-bottom: 8px;
      text-shadow: 0 0 20px rgba(59,130,246,.4);
    }
    .stat-box p { color: var(--text); font-size: 1rem; font-weight: 500; }
    .stat-box .stat-icon {
      font-size: 1.6rem; color: var(--primary);
      margin-bottom: 12px; display: block;
    }

    /* ── 12. CONTACT ───────────────────────────────────── */
    .contact-section {
      padding: 90px 0;
      background: var(--bg);
      position: relative;
    }
    .contact-info-card {
      background: var(--bg-card);
      backdrop-filter: blur(10px);
      border: 1px solid var(--border);
      border-radius: 14px; padding: 22px;
      margin-bottom: 18px;
      display: flex; align-items: center; gap: 16px;
    }
    .contact-info-icon {
      width: 48px; height: 48px; border-radius: 50%;
      background: rgba(37,99,235,.2); border: 1px solid var(--border-blue);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      font-size: 18px; color: var(--primary-l);
    }
    .contact-info-text h5 { color: #fff; font-weight: 600; font-size: .9rem; margin-bottom: 4px; }
    .contact-info-text p { color: var(--text-muted); font-size: .9rem; margin: 0; }
    .contact-form-box {
      background: var(--bg-card);
      backdrop-filter: blur(10px);
      border: 1px solid var(--border-blue);
      border-radius: 18px; padding: 44px;
    }
    .contact-form-box input,
    .contact-form-box textarea {
      width: 100%; padding: 16px 18px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 12px; color: #fff;
      font-size: .95rem; font-family: inherit;
      transition: .3s; outline: none;
      margin-bottom: 18px;
    }
    .contact-form-box input:focus,
    .contact-form-box textarea:focus { border-color: var(--primary); background: rgba(255,255,255,.07); }
    .contact-form-box input::placeholder,
    .contact-form-box textarea::placeholder { color: rgba(255,255,255,.35); }
    .contact-form-box textarea { height: 150px; resize: none; }

    /* Orçamento form — campos com label */
    .contact-form-box .form-group { margin-bottom: 20px; }
    .contact-form-box .form-group:last-of-type { margin-bottom: 0; }
    .contact-form-box .form-group label {
      display: block;
      font-size: .7rem; font-weight: 700;
      letter-spacing: 1.3px; text-transform: uppercase;
      color: var(--text-muted); margin-bottom: 10px;
    }
    .contact-form-box .form-group label .req { color: var(--primary-l); margin-left: 2px; }
    .contact-form-box .form-group input,
    .contact-form-box .form-group select,
    .contact-form-box .form-group textarea { margin-bottom: 0; }
    .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .contact-form-box select {
      width: 100%; padding: 16px 44px 16px 18px;
      background: rgba(255,255,255,.04) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2393c5fd' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 16px center;
      background-size: 16px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 12px; color: #fff;
      font-size: .95rem; font-family: inherit;
      transition: .3s; outline: none;
      appearance: none; -webkit-appearance: none; -moz-appearance: none;
      cursor: pointer;
    }
    .contact-form-box select:focus { border-color: var(--primary); background-color: rgba(255,255,255,.07); }
    .contact-form-box select option { background: #0f172a; color: #fff; }
    .contact-form-box select:required:invalid { color: rgba(255,255,255,.4); }
    .form-hint {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      margin-top: 16px; text-align: center;
      color: var(--text-muted); font-size: .82rem;
    }
    .form-hint i { color: #25D366; font-size: .95rem; }
    .btn-submit {
      width: 100%; padding: 16px;
      background: var(--primary); color: #fff;
      border: none; border-radius: 12px;
      font-size: 1rem; font-weight: 700; cursor: pointer;
      box-shadow: 0 4px 18px rgba(37,99,235,.35);
      transition: all .3s; touch-action: manipulation;
      display: flex; align-items: center; justify-content: center; gap: 10px;
    }
    .btn-submit:hover { background: var(--primary-d); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,99,235,.5); }

    /* ── 13. MAP ───────────────────────────────────────── */
    .map-section { padding: 0 0 90px; background: var(--bg); }
    .map-section iframe {
      width: 100%; height: 420px; border: none;
      border-radius: 18px;
      box-shadow: 0 10px 40px rgba(0,0,0,.5);
      border: 1px solid var(--border);
    }

    /* ── 14. FOOTER ────────────────────────────────────── */
    footer {
      background: #060913;
      border-top: 1px solid var(--border);
      padding: 75px 0 35px;
    }
    .footer-brand p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin: 14px 0; }
    .footer-brand h5 { color: rgba(255,255,255,.35); font-size: .78rem; font-weight: 400; margin-top: 6px; }
    .footer-col h4 {
      color: var(--primary-l); font-size: 1rem; font-weight: 600;
      margin-bottom: 22px; text-transform: uppercase; letter-spacing: .5px;
      position: relative; padding-bottom: 10px;
    }
    .footer-col h4::after {
      content: ''; position: absolute; left: 0; bottom: 0;
      width: 32px; height: 2px; background: var(--primary);
    }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a {
      color: var(--text-muted); font-size: .9rem;
      display: inline-block; transition: all .3s;
    }
    .footer-col ul li a:hover { color: var(--primary-l); transform: translateX(5px); }
    .footer-contact-item {
      display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
    }
    .footer-contact-item i { color: var(--primary-l); width: 20px; text-align: center; }
    .footer-contact-item span { color: var(--text-muted); font-size: .9rem; }
    .highlight-time { color: #fff; font-weight: 500; }
    .footer-social { display: flex; gap: 10px; margin-top: 16px; }
    .footer-social a {
      width: 40px; height: 40px;
      display: flex; justify-content: center; align-items: center;
      background: rgba(255,255,255,.04);
      border: 1px solid var(--border);
      border-radius: 10px; color: var(--text-muted); font-size: 1rem;
      transition: all .3s;
    }
    .footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-4px); }
    .footer-bottom {
      margin-top: 55px; padding-top: 28px;
      border-top: 1px solid var(--border);
      text-align: center;
    }
    .footer-bottom span { color: #64748b; font-size: .82rem; }

    /* ── 15. FLOATING ELEMENTS ─────────────────────────── */
    /* WhatsApp chatbox */
    .whatsapp-wrapper {
      position: fixed; bottom: 28px; right: 28px;
      z-index: 9999;
      display: flex; flex-direction: column; align-items: flex-end;
    }
    .whatsapp-chatbox {
      width: 350px; background: #1e293b;
      border-radius: 18px;
      box-shadow: 0 15px 40px rgba(0,0,0,.4), 0 0 30px rgba(37,99,235,.1);
      border: 1px solid var(--border);
      margin-bottom: 14px; overflow: hidden;
      transform: translateY(20px); opacity: 0; visibility: hidden;
      transition: all .3s cubic-bezier(.4,0,.2,1);
    }
    .whatsapp-chatbox.active { transform: translateY(0); opacity: 1; visibility: visible; }
    .chatbox-header {
      background: var(--primary); padding: 18px 20px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .chatbox-title h4 { color: #fff; font-size: 1rem; font-weight: 600; margin: 0; }
    .chatbox-title span { color: #93c5fd; font-size: .78rem; }
    .chatbox-close {
      background: transparent; border: none;
      color: rgba(255,255,255,.7); font-size: 1.6rem;
      cursor: pointer; line-height: 1; transition: color .2s;
    }
    .chatbox-close:hover { color: #fff; }
    .chatbox-body { background: #0f172a; padding: 22px; }
    .chatbox-body p { color: var(--text); font-size: .92rem; line-height: 1.6; margin: 0 0 10px; }
    .chatbox-footer { background: #0f172a; padding: 0 22px 22px; }
    .chatbox-cta {
      display: flex; justify-content: center; align-items: center; gap: 10px;
      background: var(--primary); color: #fff; text-decoration: none;
      padding: 13px; border-radius: 50px; font-weight: 600; font-size: .92rem;
      transition: all .3s; box-shadow: 0 4px 15px rgba(37,99,235,.3);
    }
    .chatbox-cta:hover { background: var(--primary-d); color: #fff; }
    .whatsapp-btn {
      width: 58px; height: 58px;
      background: var(--primary); color: #fff;
      border-radius: 50%; border: none;
      display: flex; justify-content: center; align-items: center;
      font-size: 28px; cursor: pointer;
      box-shadow: 0 4px 16px rgba(37,99,235,.45);
      transition: all .3s; position: relative;
      touch-action: manipulation;
    }
    .whatsapp-btn::before {
      content: ''; position: absolute; inset: 0;
      border-radius: 50%; background: var(--primary); opacity: .4; z-index: -1;
      animation: pulseBlue 2s infinite;
    }
    .whatsapp-btn:hover { transform: scale(1.08); background: var(--primary-d); }
    @keyframes pulseBlue { 0%{transform:scale(1);opacity:.4} 100%{transform:scale(1.6);opacity:0} }

    /* Back to top */
    .back-to-top {
      position: fixed; bottom: 28px; left: 28px;
      width: 48px; height: 48px;
      background: rgba(30,41,59,.85); color: #fff;
      border-radius: 50%; border: 1px solid var(--border);
      display: flex; justify-content: center; align-items: center;
      font-size: 18px; cursor: pointer; z-index: 9999;
      box-shadow: 0 4px 15px rgba(0,0,0,.4);
      opacity: 0; visibility: hidden; transform: translateY(14px);
      transition: all .3s cubic-bezier(.4,0,.2,1);
      touch-action: manipulation;
    }
    .back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
    .back-to-top:hover { background: var(--primary); border-color: var(--primary); transform: scale(1.1); }

    /* ── 16. LEGAL MODALS ──────────────────────────────── */
    .modal-overlay {
      position: fixed; inset: 0;
      background: rgba(2,6,23,.88);
      backdrop-filter: blur(8px);
      display: flex; justify-content: center; align-items: center;
      z-index: 10000; opacity: 0; visibility: hidden; transition: all .3s;
    }
    .modal-overlay.active { opacity: 1; visibility: visible; }
    .modal-container {
      background: #0f172a;
      border: 1px solid rgba(59,130,246,.2);
      box-shadow: 0 20px 40px rgba(0,0,0,.5), 0 0 30px rgba(37,99,235,.15);
      width: 90%; max-width: 750px; max-height: 85vh;
      border-radius: 20px; display: flex; flex-direction: column;
      transform: translateY(-30px); transition: all .3s;
    }
    .modal-overlay.active .modal-container { transform: translateY(0); }
    .modal-header {
      padding: 20px 28px; border-bottom: 1px solid var(--border);
      display: flex; justify-content: space-between; align-items: center;
    }
    .modal-header h2 { font-size: 1.4rem; color: var(--primary-l); font-weight: 600; }
    .modal-close { background: transparent; border: none; color: #64748b; font-size: 2rem; cursor: pointer; line-height: 1; transition: color .2s; }
    .modal-close:hover { color: #ef4444; }
    .modal-body {
      padding: 28px; overflow-y: auto;
      color: var(--text); font-size: .92rem; line-height: 1.8;
      -webkit-overflow-scrolling: touch;
    }
    .modal-body h3 { color: var(--primary-l); margin: 22px 0 8px; font-size: 1.05rem; }
    .modal-body h3:first-child { margin-top: 0; }
    .modal-body p { margin-bottom: 14px; }
    .modal-body ul { margin: 0 0 14px 18px; }
    .modal-body li { margin-bottom: 6px; }

    /* ── 17. REVEAL ANIMATIONS ─────────────────────────── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .6s ease, transform .6s ease;
      pointer-events: auto !important; visibility: visible !important;
    }
    .reveal.active { opacity: 1; transform: translateY(0); }
    /* stagger para cards filhos */
    .reveal.active [class*="col-"] .service-card,
    .reveal.active [class*="col-"] .why-card,
    .reveal.active [class*="col-"] .testimonial-card,
    .reveal.active [class*="col-"] .produto-card {
      animation: cardFadeUp .5s ease both;
    }
    .reveal.active [class*="col-"]:nth-child(1) .service-card,
    .reveal.active [class*="col-"]:nth-child(1) .why-card,
    .reveal.active [class*="col-"]:nth-child(1) .testimonial-card,
    .reveal.active [class*="col-"]:nth-child(1) .produto-card { animation-delay: .05s; }
    .reveal.active [class*="col-"]:nth-child(2) .service-card,
    .reveal.active [class*="col-"]:nth-child(2) .why-card,
    .reveal.active [class*="col-"]:nth-child(2) .testimonial-card,
    .reveal.active [class*="col-"]:nth-child(2) .produto-card { animation-delay: .15s; }
    .reveal.active [class*="col-"]:nth-child(3) .service-card,
    .reveal.active [class*="col-"]:nth-child(3) .why-card,
    .reveal.active [class*="col-"]:nth-child(3) .testimonial-card,
    .reveal.active [class*="col-"]:nth-child(3) .produto-card { animation-delay: .25s; }
    .reveal.active [class*="col-"]:nth-child(4) .service-card,
    .reveal.active [class*="col-"]:nth-child(4) .why-card,
    .reveal.active [class*="col-"]:nth-child(4) .produto-card { animation-delay: .35s; }
    .reveal.active [class*="col-"]:nth-child(5) .service-card,
    .reveal.active [class*="col-"]:nth-child(5) .produto-card { animation-delay: .45s; }
    .reveal.active [class*="col-"]:nth-child(6) .service-card,
    .reveal.active [class*="col-"]:nth-child(6) .produto-card { animation-delay: .55s; }
    @keyframes cardFadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    /* step-card stagger */
    .reveal.active .step-card { animation: cardFadeUp .5s ease both; }
    .reveal.active .steps-grid .step-card:nth-child(1) { animation-delay: .05s; }
    .reveal.active .steps-grid .step-card:nth-child(2) { animation-delay: .15s; }
    .reveal.active .steps-grid .step-card:nth-child(3) { animation-delay: .25s; }
    .reveal.active .steps-grid .step-card:nth-child(4) { animation-delay: .35s; }
    .reveal.active .steps-grid .step-card:nth-child(5) { animation-delay: .45s; }
    /* TESTE TEMPORÁRIO — desativado para diagnóstico
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      .reveal.active [class*="col-"] .service-card,
      .reveal.active [class*="col-"] .why-card,
      .reveal.active [class*="col-"] .testimonial-card,
      .reveal.active [class*="col-"] .produto-card,
      .reveal.active .step-card { animation: none; }
    }
    */

    /* ── 18. FLOATING PARTICLES (global) ───────────────── */
    #ls-particles {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      z-index: 999;
      overflow: hidden;
    }
    .ls-particle {
      position: absolute;
      width: 3px; height: 3px;
      border-radius: 50%;
      opacity: 0.35;
      animation: lsFloatUp 6s linear infinite;
    }
    @keyframes lsFloatUp {
      0%   { transform: translateY(100vh) rotate(0deg);   opacity: 0; }
      10%  { opacity: 0.7; }
      90%  { opacity: 0.7; }
      100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
    }

    /* ── SECTION PADDING & SEPARATORS ─────────────────────────────── */
    .section-padding { padding: 90px 0; }
    .container-ls { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    /* Gradient separator between sections */
    section + section::before,
    section + section.reveal::before { display: none; }
    /* Section title eyebrow accent */
    .section-title h1 { position: relative; display: inline-block; }

    /* Touch helpers */
    a, button,
    .menu-toggle, .faq-title,
    .btn-ls, .btn-ls-ghost,
    .whatsapp-btn, .chatbox-close, .chatbox-cta,
    .modal-close, .back-to-top,
    .footer-col ul li a,
    [id^="open-"], .btn-submit {
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
    }
    /* ── 19. CARROSSEL DE FOTOS ────────────────────────────────── */
.photo-carousel-section {
  padding: 90px 0;
  background: rgba(7,11,25,.9);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
/* wrapper externo que posiciona as setas */
.photo-carousel-outer {
  position: relative;
  padding: 0 60px;
}
.photo-carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}
.photo-carousel-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  gap: 0;
}
.photo-slide {
  min-width: calc(33.333% - 10px);
  width: calc(33.333% - 10px);
  margin: 0 5px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.photo-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.photo-carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(15,23,42,.85);
  border: 1px solid var(--border-blue);
  border-radius: 50%;
  color: #fff; font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
  z-index: 10;
  backdrop-filter: blur(8px);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.photo-carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}
.photo-carousel-btn.prev { left: 6px; }
.photo-carousel-btn.next { right: 6px; }
.photo-carousel-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 24px;
}
.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background .3s;
  -webkit-tap-highlight-color: transparent;
}
.carousel-dot.active {
  background: var(--primary);
}

/* ── 20. PRODUTOS / VENDAS ───────────────────────────────── */
.produtos-section {
  padding: 90px 0;
  background: rgba(7,11,25,.9);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.produto-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all .3s ease;
  display: flex; flex-direction: column;
  height: 100%;
}
.produto-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(37,99,235,.18);
}
.produto-img {
  height: 190px;
  background: linear-gradient(135deg, #060d1c, #0a1535);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.produto-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.produto-card:hover .produto-img img {
  transform: scale(1.06);
}
.produto-img .produto-icon {
  font-size: 3.5rem;
  color: rgba(59,130,246,.3);
}
.produto-body {
  padding: 22px 20px;
  display: flex; flex-direction: column;
  flex-grow: 1;
  text-align: center;
}
.produto-badge {
  display: block;
  padding: 3px 12px;
  background: rgba(37,99,235,.15);
  border: 1px solid var(--border-blue);
  border-radius: 50px;
  font-size: .72rem; font-weight: 600;
  color: var(--accent);
  letter-spacing: .8px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.produto-body h4 {
  font-size: .98rem; font-weight: 600;
  color: #fff; margin-bottom: 6px;
}
.produto-body p {
  color: var(--text-muted);
  font-size: .84rem; line-height: 1.6;
  flex-grow: 1; margin-bottom: 16px;
}
.produto-price {
  font-size: 1.3rem; font-weight: 700;
  color: var(--primary-l);
  margin-bottom: 14px;
}
.produto-price span {
  font-size: .85rem; font-weight: 400;
  color: var(--text-muted);
}
.btn-produto {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 11px;
  background: transparent;
  border: 1px solid var(--border-blue);
  border-radius: 10px;
  color: var(--primary-l); font-size: .88rem; font-weight: 600;
  cursor: pointer; transition: all .3s;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn-produto:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
/* produtos extras ficam ocultos até clicar em Ver Mais */
.produto-col.extra {
  display: none;
}
.produto-col.extra.visible {
  display: flex;
}
.ver-mais-wrap {
  display: none;
  text-align: center;
  margin-top: 42px;
}
.ver-mais-wrap.show { display: block; }
.btn-ver-mais {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 36px; border-radius: 50px;
  border: 1px solid var(--border-blue);
  background: rgba(37,99,235,.08);
  color: #fff; font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: all .3s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn-ver-mais:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(37,99,235,.35);
}
.btn-ver-mais i { transition: transform .3s; }
.btn-ver-mais.aberto i { transform: rotate(180deg); }

/* ── 21. COOKIES ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0; right: 0;
  z-index: 99998;
  background: rgba(10, 18, 40, 0.97);
  border-top: 1px solid var(--border-blue);
  backdrop-filter: blur(12px);
  padding: 18px 30px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(0,0,0,.4);
  transition: bottom .5s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.show { bottom: 0; }
.cookie-content {
  display: flex; align-items: center; gap: 14px;
  flex: 1; min-width: 0;
}
.cookie-icon {
  font-size: 1.6rem; color: var(--primary-l); flex-shrink: 0;
}
.cookie-content p {
  color: var(--text); font-size: .88rem;
  line-height: 1.6; margin: 0;
}
.cookie-content a {
  color: var(--primary-l); text-decoration: underline;
}
.cookie-buttons {
  display: flex; gap: 10px; flex-shrink: 0;
}
.cookie-btn-aceitar {
  padding: 9px 24px; border-radius: 8px;
  background: var(--primary); color: #fff;
  border: none; font-weight: 600; font-size: .88rem;
  cursor: pointer; transition: all .3s;
  touch-action: manipulation;
}
.cookie-btn-aceitar:hover { background: var(--primary-d); transform: translateY(-2px); }
.cookie-btn-recusar {
  padding: 9px 24px; border-radius: 8px;
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--border); font-weight: 600; font-size: .88rem;
  cursor: pointer; transition: all .3s;
  touch-action: manipulation;
}
.cookie-btn-recusar:hover { border-color: #ef4444; color: #ef4444; }

    /* ── 22. URGENCY BAR ──────────────────────────────────────── */
    .urgency-bar {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1100;
      background: linear-gradient(90deg, #1d4ed8, #2563eb, #1d4ed8);
      background-size: 200% 100%;
      animation: urgencyShimmer 4s ease infinite;
      padding: 8px 20px;
      transition: transform .4s ease;
    }
    .urgency-bar.hidden { transform: translateY(-100%); }
    @keyframes urgencyShimmer {
      0%,100% { background-position: 0% 50%; }
      50%      { background-position: 100% 50%; }
    }
    .urgency-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; justify-content: center;
      gap: 10px; position: relative;
    }
    .urgency-text {
      font-size: .78rem; color: #fff; text-align: center;
      display: flex; flex-wrap: wrap; align-items: center;
      justify-content: center; gap: 6px;
    }
    .urgency-pulse {
      color: #93c5fd; font-size: .6rem;
      animation: blink .9s infinite;
    }
    .urgency-sep { color: rgba(255,255,255,.4); }
    .urgency-phone {
      color: #fff; font-weight: 600;
      display: inline-flex; align-items: center; gap: 5px;
      text-decoration: none; transition: color .2s;
    }
    .urgency-phone:hover { color: #bfdbfe; }
    .urgency-close {
      position: absolute; right: 0;
      background: transparent; border: none;
      color: rgba(255,255,255,.6); font-size: 1.2rem;
      cursor: pointer; line-height: 1; padding: 0 4px;
      transition: color .2s;
    }
    .urgency-close:hover { color: #fff; }
    /* push navbar down when bar is visible */
    body.has-urgency-bar .navbar { top: 37px; }
    body.has-urgency-bar #home { padding-top: 177px; }

    /* ── 23. ACTIVE NAV LINK (scroll spy) ────────────────────── */
    .navbar-light .navbar-nav .nav-link.nav-active {
      color: var(--primary-l) !important;
      position: relative;
    }
    .navbar-light .navbar-nav .nav-link.nav-active::after {
      content: '';
      position: absolute; bottom: -4px; left: 14px; right: 14px;
      height: 2px; border-radius: 2px;
      background: var(--primary-l);
    }

    /* ── 24. GOOGLE BADGE (hero) ─────────────────────────────── */
    .hero-google-badge {
      display: inline-flex; align-items: center; gap: 10px;
      margin-top: 18px;
      padding: 9px 18px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 50px;
      backdrop-filter: blur(10px);
      text-decoration: none;
      transition: all .3s;
    }
    .hero-google-badge:hover { border-color: var(--primary); background: rgba(37,99,235,.1); }
    .hero-google-badge .badge-stars { color: #fbbf24; font-size: .85rem; letter-spacing: 1px; }
    .hero-google-badge .badge-text { color: var(--text); font-size: .8rem; }
    .hero-google-badge .badge-text strong { color: #fff; }


    /* ── 25. UTILITY CLASSES (substituem estilos inline) ─────── */
    .hero-container { position: relative; z-index: 2; }
    .hero-badge-row { display: flex; justify-content: flex-start; flex-wrap: wrap; }
    .text-highlight { color: var(--primary-l); text-shadow: 0 0 18px rgba(59,130,246,.6); }
    .google-icon { color: #4285F4; font-size: .85rem; }
    .produto-img img.produto-icon-img { width: 80px; height: 80px; object-fit: contain; }
    .footer-logo { height: 42px; margin-bottom: 16px; }
    .footer-cnpj { color: #fff; font-size: .82rem; font-weight: 400; opacity: .75; margin-top: 6px; }
    .footer-hours { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }
    .footer-hours + .footer-hours { margin-top: 10px; }

    /* ── 26. ENTRADAS ANIMADAS (substitui animate.css) ────────── */
    @keyframes lsFadeInUp {
      from { opacity: 0; transform: translateY(34px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes lsFadeInRight {
      from { opacity: 0; transform: translateX(34px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .ls-anim-up    { animation: lsFadeInUp .8s ease both; }
    .ls-anim-right { animation: lsFadeInRight .8s ease both; animation-delay: .15s; }
    @media (prefers-reduced-motion: reduce) {
      .ls-anim-up, .ls-anim-right { animation: none; opacity: 1; transform: none; }
    }

    /* ──────────────────────────────────────────────────────────────
       27. RESPONSIVE
       Breakpoints principais: 1024px (tablets / notebooks pequenos)
       e 768px (tablets em retrato / celulares). 1200/992/576/400
       cobrem ajustes finos complementares.
    ────────────────────────────────────────────────────────────── */

    /* ── ≤1200px — transição steps-grid para 3 colunas ─────────── */
    @media (max-width: 1200px) {
      .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; background: transparent; border: none; border-radius: 0; }
      .step-card { border: 1px solid var(--border); border-radius: 14px; }
    }

    /* ── ≤1024px — tablets em paisagem / notebooks pequenos ────── */
    @media (max-width: 1024px) {
      .hero-content h1 { font-size: 2.4rem; }
      .hero-content p { max-width: 100%; }
      .diag-card { max-width: 380px; padding: 24px 22px 18px; }
      .why-left h2 { font-size: 2.1rem; }
      .diagnosis-intro h2 { font-size: 2.1rem; }
      .section-title h1 { font-size: 2.3rem; }
      .form-row-2 { gap: 14px; }
      .contact-form-box { padding: 36px 30px; }
      .footer-col h4 { font-size: .95rem; }
    }

    /* ── ≤992px — fim do breakpoint "lg" do Bootstrap ──────────── */
    @media (max-width: 992px) {
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-content { text-align: center; margin: 0 auto; }
      .hero-buttons, .hero-badge-row { justify-content: center; }
      .why-card { margin-bottom: 16px; }
    }

    /* ── Menu mobile (abaixo do breakpoint lg = 992px) ─────────── */
    @media (max-width: 991.98px) {
      .navbar-collapse {
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid var(--border);
      }
      .navbar-nav { gap: 4px; }
      .navbar-light .navbar-nav .nav-link {
        padding: 12px 6px;
        border-radius: 8px;
      }
      .navbar-light .navbar-nav .nav-link:hover,
      .navbar-light .navbar-nav .nav-link.nav-active {
        background: rgba(37,99,235,.1);
      }
      .navbar-light .navbar-nav .nav-link.nav-active::after { display: none; }
    }

    /* ── ≤768px — celulares e tablets em retrato ───────────────── */
    @media (max-width: 768px) {
      .hero-content h1 { font-size: 1.9rem !important; }
      .hero-buttons { flex-direction: column; }
      .btn-ls, .btn-ls-ghost { width: 100%; justify-content: center; }

      .steps-grid { display: flex !important; flex-direction: column !important; gap: 12px !important; background: transparent !important; border: none !important; }
      .step-card { width: 100% !important; border: 1px solid var(--border) !important; border-radius: 14px !important; padding: 24px 20px !important; }

      .contact-form-box { padding: 28px 20px; }
      .form-row-2 { grid-template-columns: 1fr; gap: 0; }

      .section-title h1 { font-size: 2rem; }
      .section-title p { width: 100%; }

      /* Por que escolher — empilha em 1 coluna no mobile */
      .why-section [class*="col-6"] { flex: 0 0 100%; max-width: 100%; }
      .why-card { text-align: center; }

      /* Carrossel de fotos */
      .photo-carousel-outer { padding: 0 44px; }
      .photo-slide { min-width: calc(100% - 10px); width: calc(100% - 10px); }
      .photo-slide img { width: 100%; height: 260px; }

      /* Banner de urgência */
      .urgency-text { font-size: .72rem; }
      body.has-urgency-bar .navbar { top: 50px; }
      body.has-urgency-bar #home { padding-top: 190px; }

      /* Banner de cookies */
      .cookie-banner { padding: 16px 18px; }
      .cookie-buttons { width: 100%; }
      .cookie-btn-aceitar, .cookie-btn-recusar { flex: 1; text-align: center; }

      .footer-bottom span { font-size: .76rem; }
    }

    /* ── ≤576px — celulares pequenos ───────────────────────────── */
    @media (max-width: 576px) {
      .hero-google-badge { width: 100%; justify-content: center; }
    }

    /* ── ≤400px — celulares muito pequenos ─────────────────────── */
    @media (max-width: 400px) {
      .whatsapp-wrapper { right: 14px; bottom: 14px; }
      .whatsapp-chatbox { width: calc(100vw - 28px); }
      .back-to-top { left: 14px; bottom: 14px; }
    }
