    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    :root {
      --bg: #0b0f0c;
      --bg-soft: #111714;
      --card: #141b17;
      --card-2: #18211c;
      --primary: #8bc34a;
      --primary-strong: #6fb62c;
      --text: #f3f6f4;
      --muted: #b9c4bc;
      --border: rgba(255,255,255,0.08);
      --shadow: 0 12px 35px rgba(0,0,0,0.28);
      --max: 1180px;
    }
    
    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: 100%;
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 24px;
    }

    .topbar {
      background: rgba(0,0,0,0.45);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(8px);
      position: sticky;
      top: 0;
      width: 100%;
      z-index: 1000;
    }

    .topbar-inner {
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1001;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .brand-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .brand strong {
        font-size: 28px;
        color: #8bc34a;
        line-height: 1;
    }

    .brand span {
        font-size: 13px;
        color: #b9c4bc;
    }
    
    .card,
    .mini-card,
    .faq-item,
    .stat,
    .contact-direct a {
      position: relative;
      overflow: hidden;
      transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        opacity 0.6s ease,
        filter 0.35s ease;
      will-change: transform, box-shadow, opacity;
    }
    
    /* HOVER PRINCIPAL */
    
    .card:hover,
    .mini-card:hover,
    .faq-item:hover,
    .stat:hover,
    .contact-direct a:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 20px 45px rgba(0,0,0,0.38);
        border-color: rgba(139,195,74,0.32);
        filter: brightness(1.04);
    }
    
    .form-box:hover,
    .contact-box:hover {
        border-color: rgba(139,195,74,0.32);
        filter: brightness(1.04);
    }
    
    /* BRILHO NOS CARDS */
    
    .card::before,
    .mini-card::before,
    .faq-item::before,
    .stat::before,
    .contact-direct a::before,
    .form-box::before,
    .contact-box::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      border: 1px solid transparent;
      background: linear-gradient(
        135deg,
        rgba(139,195,74,0.0),
        rgba(139,195,74,0.22),
        rgba(255,255,255,0.04),
        rgba(139,195,74,0.0)
      );
      -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.35s ease;
    }
    
    .hero::before,
    section::before,
    .card::before {
      pointer-events: none;
    }
    
    button,
    input[type="submit"],
    .btn {
      cursor: pointer;
    }
        
    .card:hover::before,
    .mini-card:hover::before,
    .faq-item:hover::before,
    .stat:hover::before,
    .contact-direct a:hover::before,
    .form-box:hover::before,
    .contact-box:hover::before {
      opacity: 1;
    }
    
    /* ENTRADA INICIAL */
    .js .reveal {
      opacity: 0;
      transform: translateY(28px) scale(0.98);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .js .reveal.show {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    
    .js .reveal-left {
      opacity: 0;
      transform: translateX(-32px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .js .reveal-right {
      opacity: 0;
      transform: translateX(32px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .js .reveal-left.show,
    .js .reveal-right.show {
      opacity: 1;
      transform: translateX(0);
    }
    
    .delay-1 { transition-delay: 0.08s; }
    .delay-2 { transition-delay: 0.16s; }
    .delay-3 { transition-delay: 0.24s; }
    .delay-4 { transition-delay: 0.32s; }
    
    /* EFEITO NO BOTÃO */
    
    .btn {
      transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
    }
    
    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.28);
    }
    
    /* EFEITO NO HERO */
    
    .hero-content > * {
      animation: heroFade 0.9s ease both;
    }
    
    .hero-content > *:nth-child(1) { animation-delay: 0.08s; }
    .hero-content > *:nth-child(2) { animation-delay: 0.18s; }
    .hero-content > *:nth-child(3) { animation-delay: 0.28s; }
    .hero-content > *:nth-child(4) { animation-delay: 0.38s; }
    .hero-content > *:nth-child(5) { animation-delay: 0.48s; }
    
    @keyframes heroFade {
      from {
        opacity: 0;
        transform: translateY(18px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .logo {
        height: 40px;
        width: auto;
    }

    .contact-links {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .contact-pill {
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.04);
      color: var(--text);
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 14px;
      transition: 0.2s ease;
    }

    .contact-pill:hover {
      border-color: rgba(139,195,74,0.45);
      background: rgba(139,195,74,0.08);
    }

    .hero {
      max-height: 135vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 15px;
      align-items: flex-start;
      background:
        linear-gradient(rgba(8, 14, 10, 0.58), rgba(8, 14, 10, 0.72)),
        linear-gradient(90deg, rgba(9,14,11,0.86) 0%, rgba(9,14,11,0.65) 40%, rgba(9,14,11,0.34) 100%),
        url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    }

    .hero-content {
      padding: 24px 0 60px;
      max-width: 760px;
    }

    .eyebrow {
      display: inline-block;
      padding: 8px 14px;
      border: 1px solid rgba(139,195,74,0.35);
      background: rgba(139,195,74,0.10);
      color: #d8f0b2;
      border-radius: 999px;
      font-size: 13px;
      margin-bottom: 18px;
    }

    h1 {
      font-size: 58px;
      line-height: 1.04;
      margin-bottom: 18px;
      max-width: 760px;
    }

    .hero p.lead {
      font-size: 20px;
      color: #d3ddd5;
      max-width: 680px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 20px;
      border-radius: 12px;
      font-weight: 700;
      transition: 0.2s ease;
      border: 1px solid transparent;
    }

    .btn-primary {
      background: var(--primary);
      color: #0c120e;
    }

    .btn-primary:hover {
      background: var(--primary-strong);
      transform: translateY(-1px);
    }

    .btn-secondary {
      background: rgba(255,255,255,0.06);
      border-color: var(--border);
      color: var(--text);
    }

    .btn-secondary:hover {
      border-color: rgba(139,195,74,0.4);
      background: rgba(255,255,255,0.10);
    }

    .hero-mini-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 16px;
      margin-top: 34px;
    }

    .mini-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 18px;
      backdrop-filter: blur(8px);
    }

    .mini-card small {
      display: block;
      color: var(--muted);
      margin-bottom: 4px;
      font-size: 13px;
    }

    .mini-card strong {
      font-size: 16px;
      color: var(--text);
    }

    section {
      padding: 82px 0;
    }

    .section-dark {
      background: linear-gradient(to bottom, #0f1411, #0b0f0c);
    }

    .section-soft {
      background: linear-gradient(to bottom, #111714, #0f1411);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .section-head {
      max-width: 780px;
      margin-bottom: 34px;
    }

    .section-head span {
      display: inline-block;
      color: var(--primary);
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    h2 {
      font-size: 38px;
      line-height: 1.14;
      margin-bottom: 12px;
    }

    .section-head p {
      color: var(--muted);
      font-size: 17px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 24px;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 24px;
    }

    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 18px;
    }

    .card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 26px;
      box-shadow: var(--shadow);
    }

    .card h3 {
      font-size: 22px;
      margin-bottom: 12px;
    }

    .card p {
      color: #ffffff;
    }

    .service-badge {
      display: inline-block;
      margin-bottom: 14px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #dff2c3;
      background: rgba(139,195,74,0.12);
      border: 1px solid rgba(139,195,74,0.25);
      padding: 7px 10px;
      border-radius: 999px;
    }

    .service-list,
    .check-list {
      list-style: none;
      margin-top: 16px;
    }

    .service-list li,
    .check-list li {
      color: #ffffff;
      padding-left: 20px;
      position: relative;
      margin-bottom: 10px;
    }

    .service-list li::before,
    .check-list li::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--primary);
      position: absolute;
      left: 0;
      top: 10px;
    }

    .about-box {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 24px;
      align-items: stretch;
    }

    #highlight-img1 {
      background:
        linear-gradient(rgba(12,18,14,0.58), rgba(12,18,14,0.72)),
        url('/img/Highlight1.jpg') center/cover no-repeat;
      min-height: 100%;
    }
    
    #highlight-img2 {
      background:
        linear-gradient(rgba(12,18,14,0.58), rgba(12,18,14,0.72)),
        url('/img/Highlight2.jpg') center/cover no-repeat;
      min-height: 100%;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 16px;
      margin-top: 22px;
    }

    .stat {
      background: var(--card-2);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 18px;
    }

    .stat strong {
      display: block;
      color: var(--primary);
      font-size: 22px;
      margin-bottom: 6px;
    }

    .timeline {
      display: grid;
      gap: 18px;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 16px;
      align-items: start;
    }

    .timeline-number {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      background: rgba(139,195,74,0.12);
      border: 1px solid rgba(139,195,74,0.25);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 18px;
    }

    .faq {
      display: grid;
      gap: 16px;
    }

    .faq-item {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 20px 22px;
    }

    .faq-item h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .faq-item p {
      color: var(--muted);
    }

    .form-wrap {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 26px;
      align-items: start;
    }

    .form-box,
    .contact-box {
      position: relative;
      overflow: hidden;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .contact-box p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .contact-direct {
      display: grid;
      gap: 14px;
      margin-top: 18px;
    }

    .contact-direct a {
      display: block;
      padding: 16px 18px;
      background: var(--card-2);
      border: 1px solid var(--border);
      border-radius: 16px;
      transition: 0.2s ease;
    }

    .contact-direct a:hover {
      border-color: rgba(139,195,74,0.4);
      background: #1a241e;
    }

    .contact-direct small {
      display: block;
      color: var(--muted);
      margin-bottom: 3px;
    }

    .contact-direct strong {
      color: var(--text);
      font-size: 16px;
    }

    form .grid-form {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 16px;
    }

    label {
      display: block;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #dce6de;
    }

    input, select, textarea {
      width: 100%;
      background: #0e1310;
      color: var(--text);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      padding: 14px 15px;
      font-size: 15px;
      outline: none;
      transition: 0.2s ease;
    }

    input:focus, select:focus, textarea:focus {
      border-color: rgba(139,195,74,0.42);
      box-shadow: 0 0 0 3px rgba(139,195,74,0.10);
    }

    textarea {
      resize: vertical;
      min-height: 140px;
    }

    .form-group {
      margin-top: 16px;
    }

   .footer {
      padding: 28px 0 40px;
      border-top: 1px solid var(--border);
      background: #090d0a;
    }
    
    .footer-inner {
      display: flex;
      flex-direction: column; /* centraliza vertical */
      align-items: center;
      justify-content: center;
      gap: 12px;
      text-align: center;
    }
    
    /* LINKS (Termos / Privacidade) */
    
    .footer-links {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 28px; /* espaço entre links */
      flex-wrap: wrap;
    }
    
    .footer-links a {
      color: var(--text);
      font-size: 14px;
      transition: 0.2s ease;
    }
    
    .footer-links a:hover {
      color: var(--primary);
    }
    
    /* TEXTO COPYRIGHT */
    
    .footer p {
      color: var(--muted);
      font-size: 14px;
      text-align: center;
    }

    @media (max-width: 980px) {
      h1 {
        font-size: 42px;
      }

      h2 {
        font-size: 31px;
      }

      .hero-mini-grid,
      .grid-3,
      .grid-4,
      .about-box,
      .form-wrap,
      .grid-2 {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .topbar-inner {
        align-items: flex-start;
      }

      .hero {
        min-height: auto;
      }

      .hero-content {
        padding: 64px 0;
      }

      h1 {
        font-size: 34px;
      }

      .hero p.lead {
        font-size: 17px;
      }

      form .grid-form {
        grid-template-columns: 1fr;
      }
    }
    
    
    /* COOKIES */
    
    .cookie-banner {
      position: fixed;
      left: 24px;
      bottom: 24px;
      z-index: 9999;
      max-width: 420px;
      width: calc(100% - 48px);
    }
    
    .cookie-box {
      background: linear-gradient(180deg, #0f1712 0%, #0b0f0c 100%);
      border: 1px solid rgba(139, 195, 74, 0.18);
      border-radius: 24px;
      box-shadow: 0 18px 40px rgba(0,0,0,0.45);
      padding: 24px 24px 22px;
    }
    
    .cookie-box h3 {
      font-size: 18px;
      font-weight: 700;
      color: #f3f6f4;
      margin-bottom: 10px;
    }
    
    .cookie-box p {
      font-size: 14px;
      line-height: 1.55;
      color: #b9c4bc;
      margin-bottom: 20px;
    }
    
    .cookie-box p a {
      color: #8bc34a;
      text-decoration: underline;
      text-underline-offset: 2px;
      font-weight: 600;
    }
    
    .cookie-buttons {
      display: flex;
      gap: 14px;
    }
    
    .cookie-btn {
      flex: 1;
      min-height: 52px;
      border: none;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
    }
    
    .cookie-btn:hover {
      transform: translateY(-1px);
    }
    
    .cookie-btn-accept {
      background: linear-gradient(180deg, #8bc34a 0%, #6fb62c 100%);
      color: #0b0f0c;
      box-shadow: 0 10px 22px rgba(139, 195, 74, 0.25);
    }
    
    .cookie-btn-accept:hover {
      opacity: 0.95;
    }
    
    .cookie-btn-reject {
      background: rgba(255,255,255,0.08);
      color: #f3f6f4;
      border: 1px solid rgba(255,255,255,0.12);
    }
    
    .cookie-btn-reject:hover {
      background: rgba(255,255,255,0.12);
    }
    
    @media (max-width: 640px) {
      .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        max-width: none;
      }
    
      .cookie-box {
        padding: 20px 18px 18px;
        border-radius: 20px;
      }
    
      .cookie-buttons {
        gap: 10px;
      }
    
      .cookie-btn {
        min-height: 48px;
        font-size: 15px;
      }
    }

    /* FORMULÁRIO */
    
    .form-feedback {
      margin-bottom: 18px;
      padding: 14px 16px;
      border-radius: 14px;
      font-size: 14px;
      line-height: 1.6;
      border: 1px solid transparent;
    }
    
    .form-feedback.is-success {
      background: rgba(139,195,74,0.10);
      border-color: rgba(139,195,74,0.28);
      color: #dff2c3;
    }
    
    .form-feedback.is-error {
      background: rgba(217,83,79,0.10);
      border-color: rgba(217,83,79,0.28);
      color: #ffb3b0;
    }
    
    input.input-error,
    select.input-error,
    textarea.input-error {
      border-color: #d9534f;
      box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.12);
    }
    
    .error-message {
      display: block;
      margin-top: 6px;
      color: #ff8f8f;
      font-size: 13px;
      min-height: 18px;
    }
    
    .form-checkbox label {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      line-height: 1.5;
    }
    
    .form-checkbox input[type="checkbox"] {
      width: auto;
      margin-top: 3px;
    }
    
    .btn.is-loading {
      opacity: 0.75;
      pointer-events: none;
    }

    /* RESPONSIVIDADE MOBILE */
    
    @media (max-width: 900px) {
    .topbar-inner {
        gap: 14px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

  .contact-links {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    background-position: center center;
  }

  .hero-content {
    padding: 36px 0 48px;
    max-width: 100%;
  }

  h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .hero p.lead,
  .section-head p {
    font-size: 16px;
  }

  .hero-mini-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .about-box,
  .form-wrap,
  .stats {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-number {
    margin-bottom: 8px;
  }
}

    @media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

  .topbar {
    position: sticky;
  }

  .topbar-inner {
    align-items: flex-start;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand span {
    font-size: 12px;
  }

  .logo {
    height: 30px;
  }

  .contact-links {
    gap: 8px;
  }

  .contact-pill {
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero-content {
    padding: 28px 0 40px;
  }

  h1 {
    font-size: 34px;
    margin-bottom: 14px;
  }

  h2 {
    font-size: 26px;
  }

  .hero p.lead {
    font-size: 15px;
  }

  .eyebrow {
    font-size: 12px;
    padding: 7px 12px;
  }

  .btn,
  .cookie-btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .card,
  .form-box,
  .contact-box,
  .faq-item,
  .mini-card {
    padding: 20px;
    border-radius: 18px;
  }

  form .grid-form {
    grid-template-columns: 1fr;
  }

  input,
  select,
  textarea {
    font-size: 16px;
    padding: 13px 14px;
  }

  textarea {
    min-height: 120px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-copy p {
    font-size: 13px;
    line-height: 1.5;
  }
}

.form-feedback {
  word-break: break-word;
}

@media (max-width: 640px) {
  .form-feedback {
    font-size: 13px;
    padding: 12px 14px;
  }
}

form#contact-form button#submit-button {
  cursor: pointer !important;
}

/* REMOVE BLOQUEIO DE OVERLAYS */
.card::before,
.mini-card::before,
.faq-item::before,
.stat::before,
.contact-direct a::before,
.form-box::before,
.hero::before,
section::before,
section::after {
  pointer-events: none !important;
}

/* GARANTE INTERAÇÃO NO FORM */
#contact-form,
#contact-form * {
  pointer-events: auto !important;
}

/* TRAZ FORM PRA FRENTE */
#contact-form {
  position: relative;
  z-index: 999;
}

/* BOTÃO */
#submit-button {
  cursor: pointer !important;
}

/* BUG DO SCROLL */
html,
body {
  overflow-anchor: none;
}

#contact-form,
.form-box,
.form-wrap,
textarea,
input,
select,
button {
  overflow-anchor: none;
}

/* CHAT BOT */
.agent-header,
.agent-chat,
.agent-choices,
.agent-form {
  position: static !important;
}

.agent-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1400;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, #8bc34a 0%, #6fb62c 100%);
  color: #0b0f0c;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 18px 38px rgba(0,0,0,0.36);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.agent-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(0,0,0,0.42);
}

.agent-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(11,15,12,0.14);
  font-size: 14px;
  flex-shrink: 0;
}

.agent-backdrop[hidden],
.agent-panel[hidden] {
  display: none !important;
}

.agent-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1398;
  background: rgba(0,0,0,0.30);
  backdrop-filter: blur(2px);
}

.agent-panel {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 1399;
  width: 380px;
  max-width: calc(100vw - 24px);
  height: 620px;
  max-height: calc(100vh - 120px);
  flex: 1;
  min-height: 0;

  display: flex;
  flex-direction: column;

  background: linear-gradient(180deg, #101713 0%, #0b0f0c 100%);
  border: 1px solid rgba(139,195,74,0.16);
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(0,0,0,0.45);
  overflow: hidden;
}

.agent-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  z-index: 3;
}

.agent-chat {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.agent-choices {
  flex-shrink: 0;
  padding: 0 16px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.agent-form {
  flex-shrink: 0;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}

.agent-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.agent-avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  background: #0b0f0c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.agent-header h3 {
  margin: 0;
  font-size: 18px;
  color: #f3f6f4;
}

.agent-header {
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: #0f1612;
  z-index: 10;
}

.agent-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: #f3f6f4;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.agent-bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
  word-break: break-word;
}

.agent-bubble.bot {
  align-self: flex-start;
  background: #141b17;
  color: #f3f6f4;
  border: 1px solid rgba(255,255,255,0.07);
}

.agent-bubble.user {
  align-self: flex-end;
  background: rgba(139,195,74,0.14);
  color: #e7f6d5;
  border: 1px solid rgba(139,195,74,0.20);
}

.agent-bubble.summary {
  align-self: stretch;
  background: rgba(255,255,255,0.03);
  color: #dce6de;
  border: 1px dashed rgba(139,195,74,0.22);
  white-space: pre-line;
}

.agent-choice {
  border: 1px solid rgba(139,195,74,0.18);
  background: rgba(139,195,74,0.08);
  color: #dff2c3;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
}

.agent-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #d7e0d8;
}

.agent-input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0b100d;
  color: #fff;
}

.agent-input:focus {
  border-color: rgba(139,195,74,0.38);
  box-shadow: 0 0 0 3px rgba(139,195,74,0.10);
}

.agent-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.agent-send,
.agent-secondary {
  flex: 1;
  min-height: 46px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
}

.agent-send {
  border: none;
  background: linear-gradient(180deg, #8bc34a 0%, #6fb62c 100%);
  color: #0b0f0c;
}

.agent-secondary {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: #f3f6f4;
}

@media (max-width: 640px) {
  .agent-toggle {
    right: 14px;
    bottom: 14px;
    width: 62px;
    height: 62px;
    min-height: 62px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }

  .agent-toggle-text {
    display: none;
  }

  .agent-toggle-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

/* ===== CORREÇÃO DO HERO: mantém movimento, remove área/efeito fantasma ===== */

.hero {
  overflow: hidden;
}

.hero .hero-mini-grid {
  position: relative;
  z-index: 2;
}

.hero .mini-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: default;
}

/* mantém o movimento */
.hero .mini-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 45px rgba(0,0,0,0.38);
  border-color: rgba(139,195,74,0.32);
  filter: brightness(1.04);
}

/* o brilho continua, mas não interfere visualmente nem na interação */
.hero .mini-card::before {
  pointer-events: none !important;
  inset: 0;
  opacity: 0;
}

.hero .mini-card:hover::before {  
importa
Êxito!
  opacity: 1;
}

/* evita “faixa” pegando mouse perto dos botões acima */
.hero .hero-actions {
  position: relative;
  z-index: 3;
}

.hero .btn {
  position: relative;
  z-index: 4;
}

.hero .mini-card::before {
  display: none !important;
  opacity: 0 !important;
}