  

    :root {
      color-scheme: light only;
      --verde: #006b5f;
      --turquesa: #47ead4;
      --texto: #1a1c1c;
      --texto2: #526160;
      --branco: #ffffff;
      --fundo1: #f4f3f3;
      --fundo2: #f9f9f9;
      --borda: #e2e2e2;
      --black: #1a1c1c;
      --white: #ffffff;

      /* FONTES */
      --font-display: 'Space Grotesk', sans-serif;
      --font-body: 'Manrope', sans-serif;
      --font-ui: 'Inter', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .section-title,
    .product-title,
    .product-category {
      font-family: var(--font-display);
      font-weight: 700;

    }

    body {
      font-family: var(--font-body);
      color: var(--texto);
      background: var(--branco);
      font-size: 15px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    button,
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-card,
    a.btn-card {
      font-family: var(--font-ui);
      font-weight: 700;
    }

      /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 32px;
      height: 80px;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--borda);
    }

    .nav-logo { display: flex; align-items: center; text-decoration: none; }
    .nav-logo img { height: 42px; width: auto; display: block; object-fit: contain; }

    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: rgba(26,28,28,0.7);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--turquesa); }
    .nav-links a.active {
      color: var(--turquesa);
      padding-bottom: 2px;
    }

   .search-box {
      width: 175px; height: 38px;
      border: 1px solid #e5e5e5;
      border-radius: 12px;
      display: flex; align-items: center; gap: 10px;
      padding: 0 14px;
      background: #fff;
    }
    .search-box svg path { stroke: rgb(82,97,96); }
    .search-box input {
      width: 100%; border: none; outline: none; background: transparent;
      font-family: var(--font-ui); font-size: 14px; color: rgb(82,97,96);
    }
    .search-box input::placeholder { color: rgb(82,97,96); opacity: 1; }

    /* ─── HERO ─── */
    #hero {
      padding: 140px 48px 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;

      max-width: 1280px;
      margin: 0 auto;
      overflow: visible;
    }

    .hero-tag {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 2.4px;
      text-transform: uppercase;
      color: var(--verde);
      margin-bottom: 20px;
    }

    .hero-title {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: clamp(56px, 7vw, 96px);
      line-height: 1.06;
      letter-spacing: -2px;
      color: var(--texto);
      margin-bottom: 24px;
    }

    .hero-title .accent {
      color: var(--verde);
    }

    .hero-desc {
      font-size: 17px;
      line-height: 1.7;
      color: var(--texto2);
      max-width: 480px;
      margin-bottom: 36px;
    }

    .hero-buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-solid {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      background: var(--verde);
      color: var(--branco);
      padding: 14px 26px;
      border-radius: 5px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background .2s;
    }

    .btn-solid:hover {
      background: #00574d;
    }

    .btn-outline {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      background: transparent;
      color: var(--texto);
      padding: 14px 26px;
      border-radius: 5px;
      text-decoration: none;
      border: 1.5px solid var(--borda);
      cursor: pointer;
      transition: border-color .2s, color .2s;
    }

    .btn-outline:hover {
      border-color: var(--verde);
      color: var(--verde);
    }

    /* ── SCROLL CTA ── */
    .scroll-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      margin: 40px auto 0;
      text-decoration: none;
      width: fit-content;
    }

    .scroll-cta span {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--verde);
    }

    .scroll-cta svg {
      color: var(--verde);
      animation: scrollBounce 1.6s ease-in-out infinite;
    }

    @keyframes scrollBounce {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(6px); }
    }

    .scroll-cta:hover span,
    .scroll-cta:hover svg { color: var(--turquesa); }

    .hero-image {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      background: var(--fundo1);
      width: 100%;
      height: 520px;
      box-shadow: 0 20px 48px rgba(0,0,0,.12);
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      display: block;
    }

    /* ───────── PROCESSO ───────── */

    .process-section {
      max-width: 1280px;
      margin: 0 auto;
      padding: 90px 48px;
    }

    .process-title {
      font-size: 54px;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 18px;
      color: var(--texto);
    }

    .process-line {
      width: 86px;
      height: 4px;
      background: var(--verde);
      margin-bottom: 56px;
    }

    /* GRID */
    .process-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 0;
      border-top: 1px solid #e5e5e5;
    }

    /* blocos */
    .process-card {
      background: #f3f3f3;
      padding: 64px 56px;
      min-height: 390px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* números */
    .process-num {
      font-size: 58px;
      font-weight: 700;
      color: #d7e4e1;
      margin-bottom: 24px;
      line-height: 1;
    }

    /* títulos */
    .process-card h3 {
      font-size: 28px;
      line-height: 1.1;
      margin-bottom: 22px;
      font-weight: 700;
      color: var(--texto);
    }

    /* texto */
    .process-card p {
      font-size: 18px;
      line-height: 1.75;
      color: var(--texto2);
      max-width: 520px;
    }

    /* imagem */
    .process-image {
      height: 525px;
      /* controla altura */
      overflow: hidden;
    }

    .process-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
      display: block;
    }

    /* lista */
    .process-list {
      margin-top: 34px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .process-list li {
      list-style: none;
      font-size: 15px;
      color: var(--texto2);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .process-list li::before {
      content: "✓";
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #dff5f0;
      color: var(--verde);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
    }

    /* bottom right verde */
    .process-card.green {
      background: var(--verde);
      color: white;
    }

    .process-card.green h3,
    .process-card.green p {
      color: white;
    }

    .process-link {
      margin-top: 32px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: white;
      text-decoration: none;
    }

    /* ───────── SUPORTE ───────── */
    #suporte {
      padding: 120px 80px;
      background: #f7f7f7;
    }

    .suporte-inner {
      max-width: 1400px;
      margin: 0 auto;

      display: flex !important;
      flex-direction: row !important;

      align-items: center;
      justify-content: space-between;
      gap: 100px;
    }

    /* IMAGEM */
    .suporte-image {
      flex: 0 0 520px;
      max-width: 520px;
      height: 520px;

      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
    }

    .suporte-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* TEXTO */
    .suporte-right {
      flex: 1;
      max-width: 650px;
    }

    .section-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -2px;
      margin-bottom: 56px;
      color: #111;
    }

    /* CARDS */
    .suporte-cards {
      display: flex;
      flex-direction: column;
      gap: 42px;
    }

    .suporte-card {
      display: flex;
      gap: 22px;
      align-items: flex-start;
    }

    .suporte-card-icon {
      width: 64px;
      height: 64px;
      border-radius: 10px;
      background: #42dfd1;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .suporte-card-icon svg {
      width: 28px;
      height: 28px;
      stroke: #066c66;
    }

    .suporte-card h4 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #111;
    }

    .suporte-card p {
      font-size: 14px;
      line-height: 1.45;
      color: #666;
    }

    /* RESPONSIVO */
    @media (max-width: 1100px) {
      .suporte-inner {
        grid-template-columns: 1fr;
        gap: 70px;
      }

      .suporte-image {
        max-width: 600px;
        margin: 0 auto;
      }

      .suporte-right {
        max-width: 100%;
      }
    }

    /* ─── DESTAQUE ─── */
#destaque {
  background: var(--verde);
  padding: 120px 80px; /* era 96px 48px */
  position: relative;
  overflow: hidden;
}

    .destaque-noise {
      position: absolute;
      inset: 0;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      pointer-events: none;
    }

   .destaque-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; /* era 64px */
  align-items: center;
}

    .destaque-tag {
      display: inline-block;
      background: rgba(71, 234, 212, .18);
      color: var(--turquesa);
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 3px;
      margin-bottom: 20px;
      border: 1px solid rgba(71, 234, 212, .3);
    }

   .destaque-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 4vw, 56px); /* era clamp(32px, 3.5vw, 48px) */
  letter-spacing: -1.5px;
  color: var(--branco);
  line-height: 1.1;
  margin-bottom: 20px;
}

    .destaque-title .accent {
      color: var(--turquesa);
    }

.destaque-desc {
  font-size: 18px; /* era 16px */
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin-bottom: 40px; /* era 32px */
}

.btn-turquesa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px; /* era 12px */
  letter-spacing: 1.3px;
  text-transform: uppercase;
  background: transparent;
  color: var(--turquesa);
  padding: 18px 32px; /* era 14px 26px */
  border-radius: 5px;
  text-decoration: none;
  border: 1.5px solid var(--turquesa);
  cursor: pointer;
  transition: background .2s, color .2s;
}

    .btn-turquesa:hover {
      background: var(--turquesa);
      color: var(--texto);
    }

    .destaque-visual {
      display: flex;
      align-items: center;
      justify-content: center;
    }

.destaque-machine {
  width: 100%;
  max-width: 600px; /* era 480px */
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.destaque-machine img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

    .machine-icon {
      opacity: 0.2;
      color: var(--turquesa);
    }

    /* ── FOOTER ── */
    .footer {
      background: #f5f6f7;
      padding-top: 70px;
      border-top: 1px solid rgba(0,0,0,0.04);
    }

    .footer-container {
      width: 100%; max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px 70px;
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
      gap: 70px;
    }

    .footer-logo { width: 56px; height: auto; margin-bottom: 32px; }

    .footer-brand p {
      max-width: 240px;
      color: rgb(82,97,96);
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 34px;
    }

    .footer-socials { display: flex; gap: 16px; }
    .footer-socials a {
      width: 40px; height: 40px;
      border: 1px solid #dfe3e6;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      background: white;
      transition: 0.2s ease;
    }
    .footer-socials a:hover { border-color: var(--verde) }

    .footer-column h4 {
      text-transform: uppercase;
      margin-bottom: 28px;
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.22em;
      color: var(--verde);
    }

    .footer-column a, .footer-column p {
      display: block;
      margin-bottom: 18px;
      color: rgb(82,97,96);
      font-family: var(--font-body);
      font-size: 15px;
      text-decoration: none;
    }
    .footer-column a:hover { color: var(--verde); }

    .newsletter-form { margin-top: 22px; }
    .newsletter-form input {
      width: 100%; height: 54px;
      box-sizing: border-box;
      border: 1px solid #d9dfe3;
      border-bottom: none;
      border-radius: 10px 10px 0 0;
      padding: 0 16px; outline: none;
      background: white;
      font-family: var(--font-ui); font-size: 15px; color: rgb(82,97,96);
    }
    .newsletter-form input::placeholder { color: rgb(82,97,96); }
    .newsletter-form button {
      width: 100%; height: 50px;
      border: none; border-radius: 0 0 10px 10px;
      background: var(--verde); color: white;
      font-family: var(--font-ui); font-size: 13px; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      cursor: pointer; transition: background .2s;
    }
    .newsletter-form button:hover { background: #00574d; }

    .footer-bottom {
      border-top: 1px solid #dde3e5;
      padding: 26px 32px;
      display: flex; align-items: center; justify-content: space-between;
      max-width: 1280px; margin: 0 auto;
    }
    .footer-bottom p, .footer-bottom a {
      color: #8c979b;
      font-family: var(--font-body); font-size: 14px; text-decoration: none;
    }
    .footer-bottom a:hover { color: var(--teal-dark); }

    .footer-bottom-links {
      display: flex; align-items: center; gap: 24px;
    }

    .livro-reclamacoes-link {
      display: flex; align-items: center; gap: 8px;
      color: #8c979b;
      font-family: var(--font-body); font-size: 14px; text-decoration: none;
      transition: color 0.2s;
    }
    .livro-reclamacoes-link:hover { color: var(--verde) !important; }

    .livro-reclamacoes-link svg { flex-shrink: 0; }

    @media (max-width: 900px) {
      .intro-section { grid-template-columns: 1fr; gap: 40px; }
      .ofertas-grid { grid-template-columns: 1fr; }
      .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
      .section-header p { text-align: left; }
      .cta-inner { flex-direction: column; align-items: flex-start; }
      .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
      nav .nav-links, nav .search-box { display: none; }
    }
	 
    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      nav {
        padding: 0 24px;
      }

      .nav-links {
        display: none;
      }

      #hero {
        grid-template-columns: 1fr;
        padding: 100px 24px 64px;
        gap: 40px;
      }

      .step-row {
        grid-template-columns: 1fr;
      }

      .step-visual {
        border-left: none;
        border-top: 1px solid var(--borda);
        min-height: 260px;
      }

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

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

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }

      #processo,
      #suporte,
      #destaque {
        padding: 72px 24px;
      }

      .step-content {
        padding: 40px 0;
      }
    }

    /* ─── FADE-UP ANIMATION ─── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-left-content>* {
      animation: fadeUp 0.65s ease both;
    }

    .hero-left-content>*:nth-child(1) {
      animation-delay: .1s;
    }

    .hero-left-content>*:nth-child(2) {
      animation-delay: .2s;
    }

    .hero-left-content>*:nth-child(3) {
      animation-delay: .3s;
    }

    .hero-left-content>*:nth-child(4) {
      animation-delay: .4s;
    }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; padding: 6px;
  background: none; border: none; cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #1a1a1a; border-radius: 2px; transition: all .25s;
}
.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: min(320px, 88vw); height: 100dvh;
  background: #fff; z-index: 500;
  display: flex; flex-direction: column;
  transition: right .32s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,.15);
}
.mobile-menu.open { right: 0; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  backdrop-filter: blur(3px); z-index: 490;
  opacity: 0; pointer-events: none; transition: opacity .32s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 22px; height: 72px; border-bottom: 1px solid #f0f0f0; flex-shrink: 0;
}
.mobile-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: #f4f4f4; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: #1a1a1a;
}
.mobile-nav { flex: 1; display: flex; flex-direction: column; padding: 8px 0; overflow-y: auto; }
.mobile-link {
  display: block; padding: 17px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px; font-weight: 700; letter-spacing: -.02em;
  color: #1a1a1a; text-decoration: none;
  border-bottom: 1px solid #f5f5f5; transition: color .2s, padding-left .2s;
}
.mobile-link:hover, .mobile-link.active { color: #1a7a6e; padding-left: 32px; }
.mobile-bottom {
  padding: 20px 22px 28px; border-top: 1px solid #f0f0f0;
  display: flex; flex-direction: column; gap: 10px; flex-shrink: 0;
}
.mobile-cta-btn {
  display: block; text-align: center; padding: 15px;
  background: #1a7a6e; color: #fff;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; border-radius: 6px; transition: background .2s;
}
.mobile-cta-btn:hover { background: #006b5f; }
.mobile-contact { text-align: center; font-size: 13px; color: #6b7a84; }

@media (max-width: 900px) {
  body { padding-top: 72px !important; overflow-x: hidden; }
  nav { height: 72px !important; padding: 0 20px !important; }
  nav .nav-links, nav .search-box { display: none !important; }
  .nav-hamburger { display: flex !important; }

  /* Hero */
  #hero { grid-template-columns: 1fr !important; padding: 48px 20px 48px !important; gap: 32px !important; }
  .hero-title { font-size: clamp(32px, 8vw, 48px) !important; }
  .hero-desc { font-size: 15px !important; }
  .hero-image { display: none !important; }
  .hero-buttons { flex-wrap: wrap; gap: 10px; }
  .btn-solid, .btn-outline { width: 100% !important; text-align: center !important; }
  .scroll-cta { margin: 24px auto 0 !important; }

  /* Process */
  #processo { padding: 56px 20px !important; }
  .process-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .process-card { padding: 28px 20px !important; }
  .process-card h3 { font-size: 20px !important; }
  .process-image { height: 200px !important; }

  /* Suporte */
  #suporte { padding: 56px 20px !important; }
  .suporte-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    max-width: 100% !important;
  }
  .suporte-image {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 220px !important;
  }
  .suporte-right { max-width: 100% !important; }
  .suporte-cards { grid-template-columns: 1fr 1fr !important; gap: 14px !important; }
  .suporte-card { padding: 18px !important; }

  /* Destaque PTI */
  #destaque { padding: 48px 20px !important; }
  .destaque-inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    max-width: 100% !important;
  }
  .destaque-visual { display: none !important; }
  .destaque-title { font-size: clamp(26px, 7vw, 38px) !important; }
  .destaque-desc { font-size: 15px !important; max-width: 100% !important; margin-bottom: 28px !important; }
  .btn-turquesa { width: 100% !important; text-align: center !important; justify-content: center !important; box-sizing: border-box !important; }

  /* Footer */
  .footer { padding-top: 40px !important; }
  .footer-container { grid-template-columns: 1fr 1fr !important; gap: 28px 18px !important; padding: 0 20px 36px !important; }
  .footer-brand { grid-column: 1 / -1 !important; }
  .footer-brand p { font-size: 14px !important; max-width: 100% !important; }
  .footer-bottom { flex-direction: column !important; gap: 8px !important; text-align: center !important; padding: 16px 20px !important; }
  .footer-bottom-links { flex-wrap: wrap !important; justify-content: center !important; }
}

@media (max-width: 480px) {
  .suporte-cards { grid-template-columns: 1fr !important; }
  .footer-container { grid-template-columns: 1fr !important; }
}


/* ── Correção: neutralizar regras herdadas da homepage (#hero) do site.css ── */
#hero { background: none; min-height: 0; }
