@import url('https://fonts.googleapis.com/css2?family=Blinker:wght@100;200;300;400;600;700;800;900&display=swap');

    :root {
      --dark: #0b0d0f;
      --dark-secondary: #171a1c;
      --background: #e5e5e5;
      --white: #fff;
      --text: #222322;
      --text-secondary: #515554;
      --muted: #939490;
      --border: #C7C6C4;
      --primary: #16375f;
      --primary-hover: #214c7f;
      --radius: 20px;
      --container: 1210px;
      --ease: cubic-bezier(.2, .8, .2, 1);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    #topo {
      position: absolute;
      top: 0;
      left: 0;
    }

    body {
      margin: 0;
      font-family: "Blinker", sans-serif;
      background: var(--background);
      color: var(--text);
      letter-spacing: 0;
    }

    body.menu-open {
      overflow: hidden;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font: inherit;
    }

    :focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 4px;
    }

    .container {
      width: min(100%, var(--container));
      margin: 0 auto;
      padding: 0 56px;
    }

    .section {
      padding: clamp(56px, 7vw, 56px) 0;
    }

    .section-label {
      margin: 0 0 24px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 320;
      letter-spacing: .2em;
      text-transform: uppercase;
    }

    #contato .section-label {
      margin: 60px 0 0;
    }

    .headline {
      margin: 0;
      max-width: 620px;
      font-size: clamp(34px, 4vw, 40px);
      font-weight: 600;
      line-height: 1.02;
      letter-spacing: 0;
    }

    .lead {
      margin: 22px 0 0;
      max-width: 520px;
      color: var(--text-secondary);
      font-size: clamp(15px, 1.2vw, 17px);
      line-height: 1.62;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-height: 42px;
      min-width: 164px;
      justify-content: center;
      padding: 0 19px;
      border: 1px solid transparent;
      border-radius: 7px;
      background: var(--primary);
      color: var(--white);
      font-size: 15px;
      font-weight: 650;
      letter-spacing: .08em;
      text-transform: uppercase;
      transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
    }

    .btn:hover {
      background: var(--primary-hover);
    }

    .btn:hover .arrow {
      transform: translateX(4px);
    }

    .btn.secondary {
      background: transparent;
      border-color: rgba(255, 255, 255, .38);
    }

    .btn.secondary:hover {
      border-color: rgba(255, 255, 255, .76);
      background: rgba(255, 255, 255, .08);
    }

    .arrow {
      display: inline-block;
      transition: transform .25s var(--ease);
    }

    #produtos .arrow {
      color: #777977;
    }

    #produtos h2 {
      margin-bottom: 15px;
    }

    .circle-btn {
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, .5);
      border-radius: 50%;
      background: #fff;
      color: var(--white);
      cursor: pointer;
      transition: border-color .3s var(--ease), background .3s var(--ease);
    }

    .hero .circle-btn {
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, .5);
      border-radius: 50%;
      background: #fff;
      color: color;
    }

    .circle-btn:hover {
      border-color: var(--white);
      background: rgba(255, 255, 255, .16);
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 50;
      width: 100%;
      color: var(--white);
      transition: background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
    }

    .site-header.scrolled {
      background: rgb(243 242 239 / 34%);
      border-bottom: 1px solid rgba(22, 55, 95, .12);
      backdrop-filter: blur(13px);
      color: var(--primary);
    }

    .nav {
      display: grid;
      grid-template-columns: 178px 1fr auto;
      align-items: center;
      gap: 28px;
      min-height: 74px;
    }

    .brand img {
      width: 173px;
      height: auto;
    }

    .brand-logo {
      transition: opacity .35s var(--ease);
      will-change: opacity;
    }

    .brand-logo.changing {
      opacity: 0;
    }

    .menu {
      display: flex;
      justify-content: center;
      gap: clamp(22px, 3vw, 44px);
      font-size: 18px;
      letter-spacing: 0;
      text-transform: none;
    }

    .menu a,
    .header-cta {
      opacity: 1;
      transition: opacity .25s var(--ease);
    }

    .menu a:hover,
    .header-cta:hover {
      opacity: 0.7;
    }

    .site-header.scrolled .header-cta {
      background: var(--primary);
      color: var(--white);
    }

    .header-cta {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      min-height: 40px;
      padding: 0 28px;
      border-radius: 5px;
      background: var(--primary);
      font-size: 15px;
      font-weight: 520;
      letter-spacing: .07em;
      text-transform: none;
    }

    .menu-toggle {
      display: none;
    }

    .mobile-panel {
      display: none;
    }

    .hero {
      position: relative;
      min-height: 670px;
      height: 100vh;
      max-height: 100vh;
      overflow: hidden;
      background: var(--dark);
      color: var(--white);
      touch-action: pan-y;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s var(--ease);
      pointer-events: none;
    }

    .hero-slide.active {
      opacity: 1;
      pointer-events: auto;
    }

    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: saturate(.86) contrast(1.06);
      transform: scale(1);
      transition: transform 6.5s linear;
    }

    .hero-slide.active img {
      transform: scale(1.035);
    }

    .hero-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgb(0 0 0 / 72%) 0%, rgba(0, 0, 0, .76) 36%, rgba(0, 0, 0, .34) 72%), linear-gradient(0deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .18)), rgba(0, 0, 0, .18)
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      min-height: 670px;
      height: 100vh;
      max-height: 780px;
      align-items: center;
      padding-top: 72px;
    }

    .hero-copy {
      max-width: 690px;
    }

    .hero-kicker {
      margin: 0 0 22px;
      color: rgba(255, 255, 255, .68);
      font-size: 9px;
      font-weight: 400;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    h1 {
      margin: 0;
      font-size: clamp(46px, 6vw, 65px);
      font-weight: 500;
      line-height: .96;
      letter-spacing: 0;
    }

    .hero-copy p {
      margin: 26px 0 0;
      max-width: 475px;
      color: rgba(255, 255, 255, .76);
      font-size: clamp(14px, 1.18vw, 18px);
      line-height: 1.65;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 28px;
      margin-top: 34px;
    }

    .hero-actions .btn.secondary {
      min-width: 156px;
      border-color: transparent;
      background: transparent;
      color: rgba(255, 255, 255, .78);
    }

    .hero-controls {
      position: absolute;
      right: 130px;
      bottom: 32px;
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 18px;
      color: var(--white);
    }

    .hero-count {
      min-width: 56px;
      font-size: 11px;
      letter-spacing: .12em;
      opacity: .7;
    }

    .hero-controls .circle-btn {
      color: #777977;
    }

    .hero-controls .circle-btn .arrow {
      left: -3px;
      line-height: 1;
      position: relative;
      transform: translateY(-1px);
    }

    .progress {
      width: min(28vw, 280px);
      height: 1px;
      background: rgba(255, 255, 255, .28);
      overflow: hidden;
    }

    .progress span {
      display: block;
      height: 100%;
      width: 0;
      background: var(--white);
    }

    .progress.running span {
      animation: progress 6s linear forwards;
    }

    @keyframes progress {
      to {
        width: 100%;
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity 1.05s var(--ease), transform 1.05s var(--ease);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .about-grid {
      --about-image-height: 470px;
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
      gap: clamp(42px, 7vw, 96px);
      align-items: stretch;
    }

    .about-copy {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: var(--about-image-height);
    }

    .about-image {
      overflow: hidden;
      border-radius: var(--radius);
      height: var(--about-image-height);
      min-height: 320px;
      background: var(--border);
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(.86) contrast(1.04);
    }

    .features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      max-width: 650px;
      margin-top: 0px;
      border: 0;
      top: -37px;
      position: relative;
    }

    .feature {
      display: grid;
      grid-template-columns: 46px 1fr;
      align-items: center;
      gap: 14px;
      padding: 0;
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .85s var(--ease), transform .85s var(--ease);
    }

    .features.visible .feature {
      opacity: 1;
      transform: translateY(0);
    }

    .features.visible .feature:nth-child(2) {
      transition-delay: .12s;
    }

    .features.visible .feature:nth-child(3) {
      transition-delay: .24s;
    }

    .feature+.feature {
      border-left: 0;
    }

    .icon {
      display: grid;
      place-items: center;
      width: 46px;
      height: 46px;
      margin-bottom: 0;
      padding: 11px;
      border: 1px solid rgba(22, 55, 95, .18);
      border-radius: 50%;
      color: var(--primary);
    }

    .feature h3,
    .product-card h3,
    .step h3 {
      margin: 0;
      font-weight: 600;
      color: #777977;
    }

    #produtos .product-card h3 {
      color: #fff;
    }

    .feature h3 {
      font-size: 15px;
      color: var(--text);
    }

    .step p {
      margin: 8px 0 0;
      color: var(--text-secondary);
      line-height: 1.55;
      font-size: 18px;
      font-weight: 290;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: end;
      margin-bottom: 28px;
    }

    .dark-controls {
      display: flex;
      gap: 10px;
    }

    .dark-controls .circle-btn {
      color: var(--text);
      border-color: var(--border);
      background: transparent;
    }

    .dark-controls .circle-btn:hover {
      border-color: var(--primary);
      color: var(--primary);
    }

    .product-carousel {
      display: flex;
      gap: 16px;
      overflow: visible;
      scrollbar-width: none;
      cursor: grab;
      user-select: none;
      touch-action: pan-y;
      will-change: transform;
      width: max-content;
    }

    .product-carousel.reveal {
      opacity: 1;
    }

    .product-marquee {
      overflow: hidden;
      width: 100%;
      cursor: grab;
      touch-action: pan-y;
    }

    .product-marquee.dragging {
      cursor: grabbing;
    }

    .product-carousel::-webkit-scrollbar {
      display: none;
    }

    .product-card {
      position: relative;
      min-height: 410px;
      flex: 0 0 clamp(280px, 30vw, 390px);
      aspect-ratio: .82;
      overflow: hidden;
      border-radius: var(--radius);
      color: var(--white);
      background: var(--dark-secondary);
    }

    .product-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(.84) saturate(.82) contrast(1.08);
      transition: transform .5s var(--ease), filter .45s var(--ease);
    }

    .product-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, .04), rgba(0, 0, 0, .78));
      transition: background .35s var(--ease);
    }

    .product-card:hover img {
      transform: scale(1.035);
      filter: brightness(.96) saturate(.9) contrast(1.04);
    }

    .product-card:hover::after {
      background: linear-gradient(to bottom, rgba(0, 0, 0, .01), rgba(0, 0, 0, .72));
    }

    .product-info {
      position: absolute;
      inset: auto 0 0;
      z-index: 1;
      padding: 24px;
    }

    .product-card h3 {
      font-size: clamp(24px, 2vw, 31px);
      line-height: 1.03;
    }

    .product-number {
      display: block;
      margin-bottom: 96px;
      color: rgba(255, 255, 255, .66);
      font-size: 12px;
    }

    .product-info p {
      margin: 12px 0 22px;
      max-width: 270px;
      color: rgba(255, 255, 255, .72);
      line-height: 1.5;
      font-size: 15px;
    }

    .product-card:hover .circle-btn .arrow {
      transform: translateX(3px);
    }

    .products-actions {
      display: flex;
      justify-content: center;
      margin-top: 55px;
    }

    .process-box {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid var(--border);
      border-radius: 19px;
      overflow: hidden;
    }

    .step {
      position: relative;
      min-height: 204px;
      padding: 24px 30px 28px;
    }

    .step+.step {
      border-left: 1px solid var(--border);
    }

    .step::after {
      content: "→";
      position: absolute;
      top: 28px;
      right: 26px;
      display: grid;
      place-items: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #777977;
      color: var(--white);
      font-size: 13px;
    }

    .step-number {
      display: block;
      margin-bottom: 38px;
      color: #777977;
      font-size: clamp(34px, 3.2vw, 44px);
      font-weight: 500;
      line-height: 1;
    }

    .contact-band {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      align-items: stretch;
    }

    .contact-panel {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 34px;
    }

    .contact-panel,
    .contact-form,
    .map-card {
      background: rgba(255, 255, 255, .46);
    }

    .map-card {
      position: relative;
      display: grid;
      align-content: end;
      min-height: 520px;
      overflow: hidden;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background: #e7e6e1;
    }

    .map-card iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      filter: grayscale(1) contrast(.92) brightness(1.04);
    }

    .map-card::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(243, 242, 239, .08), rgba(22, 55, 95, .14));
      mix-blend-mode: multiply;
    }

    .map-card .map-link {
      position: relative;
      z-index: 1;
      justify-self: start;
      margin: 24px;
      background: rgba(255, 255, 255, .9);
      color: var(--primary);
      border-color: rgba(22, 55, 95, .18);
    }

    .map-card .map-link:hover {
      background: var(--white);
      border-color: rgba(22, 55, 95, .32);
    }

    .contact-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px 22px;
      margin: 30px 0 0;
      padding: 0;
      list-style: none;
      color: var(--text-secondary);
      line-height: 1.9;
    }

    .contact-list li,
    .footer-contact>span {
      display: grid;
      grid-template-columns: 34px 1fr;
      align-items: center;
      gap: 12px;
    }

    .contact-icon,
    .footer-icon {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border: 1px solid rgba(22, 55, 95, .18);
      border-radius: 50%;
      color: var(--primary);
    }

    .contact-icon svg,
    .footer-icon svg {
      width: 17px;
      height: 17px;
    }

    .contact-list strong {
      color: var(--text);
      font-weight: 600;
    }

    .contact-form {
      display: grid;
      gap: 14px;
      margin-top: 28px;
      padding: 20px;
      border: 1px solid var(--border);
      border-radius: 14px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      width: 100%;
      min-height: 44px;
      border: 1px solid var(--border);
      border-radius: 7px;
      padding: 0 14px;
      background: rgba(255, 255, 255, .78);
      color: var(--text);
      font: inherit;
    }

    .contact-form textarea {
      min-height: 104px;
      padding-top: 12px;
      resize: vertical;
    }

    .cta-box {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 22px;
      align-items: center;
      padding: clamp(30px, 5vw, 46px) clamp(32px, 6vw, 56px);
      border-radius: 20px;
      background: linear-gradient(135deg, #173960, #0f2d52);
      color: var(--white);
    }

    .cta-box .headline {
      max-width: 680px;
      font-size: clamp(27px, 3vw, 35px);
    }

    .cta-box p {
      max-width: 620px;
      color: rgba(255, 255, 255, .72);
      font-size: 13px;
    }

    .cta-box .btn {
      background: var(--white);
      color: var(--primary);
      min-width: 205px;
    }

    .cta-action {
      display: flex;
      justify-content: end;
      align-items: center;
    }

    .footer {
      padding: 54px 0 0px;
      background: #e4e1e1;
      color: var(--text);
      border-top: 1px solid var(--border);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: .9fr 1fr 1fr;
      gap: 36px;
      padding-bottom: 42px;
    }

    .footer img {
      width: 160px;
    }

    .footer-links,
    .footer-contact {
      display: grid;
      gap: 12px;
      color: var(--text-secondary);
      font-size: 15px;
    }

    .footer-bottom {
      --footer-bottom-bg: #e4e1e1;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      margin-top: 10px;
      padding: 18px 0;
      background: var(--footer-bottom-bg);
      box-shadow: 0 0 0 100vmax var(--footer-bottom-bg);
      clip-path: inset(0 -100vmax);
      color: rgb(0 0 0 / 72%);
      font-size: 13px;
      letter-spacing: .22em;
      text-transform: uppercase;
      border-top: 1px solid #ccc;
    }

    .footer-brand-name {
      color: #358dc3;
      font-weight: 700;
      letter-spacing: .08em;
    }

    .footer-agency {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 18px;
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: 11px;
    }

    .footer-agency img {
      width: 83px;
      opacity: 1;
      transition: all .3s;
    }

    .footer-agency img:hover {
      opacity: 0.6;
    }

    .floating-whatsapp {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 40;
      display: grid;
      place-items: center;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: #25d366;
      color: var(--white);
      box-shadow: 0 14px 36px rgba(0, 0, 0, .18);
      font-weight: 700;
    }

    @media (max-width: 980px) {
      .nav {
        grid-template-columns: 1fr auto;
        min-height: 78px;
      }

      .menu,
      .header-cta {
        display: none;
      }

      .menu-toggle {
        display: inline-grid;
        place-items: center;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: 50%;
        background: transparent;
        color: var(--white);
        line-height: 1;
        text-align: center;
      }

      .site-header.scrolled .menu-toggle {
        border-color: rgba(23, 55, 94, .28);
        color: #17375e;
      }

      .mobile-panel {
        position: fixed;
        inset: 0;
        z-index: 45;
        display: grid;
        align-content: center;
        gap: 24px;
        padding: 34px;
        background: rgba(11, 13, 15, .96);
        color: var(--white);
        transform: translateY(-100%);
        transition: transform .45s var(--ease);
      }

      body.menu-open .mobile-panel {
        transform: translateY(0);
      }

      .mobile-panel a {
        font-size: clamp(30px, 9vw, 58px);
        font-weight: 500;
        line-height: 1;
      }

      .about-grid,
      .contact-band,
      .cta-box,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .features,
      .process-box {
        grid-template-columns: 1fr;
      }

      .feature+.feature,
      .step+.step {
        border-left: 0;
        border-top: 1px solid var(--border);
        padding-left: 0;
      }

      .product-carousel {
        overflow: visible;
      }

      .product-card {
        flex-basis: clamp(270px, 44vw, 360px);
      }
    }

    @media (max-width: 640px) {
      .container {
        padding: 0 20px;
      }

      .hero,
      .hero-content {
        min-height: 100svh;
        height: 100svh;
        max-height: none;
      }

      .hero-controls {
        left: 20px;
        right: 20px;
        bottom: 24px;
        justify-content: space-between;
      }

      .progress {
        width: 38vw;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        justify-content: center;
      }

      .about-grid {
        --about-image-height: 390px;
      }

      .about-image {
        min-height: 330px;
      }

      .section-head {
        align-items: start;
        flex-direction: column;
      }

      .product-carousel {
        gap: 16px;
      }

      .product-card {
        flex-basis: 82vw;
        min-height: 460px;
      }

      .contact-list {
        grid-template-columns: 1fr;
      }

      .step {
        min-height: 250px;
      }

      .step-number {
        margin-bottom: 52px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-agency {
        justify-content: flex-start;
      }

      .cta-action {
        justify-content: flex-start;
      }

      .floating-whatsapp {
        width: 50px;
        height: 50px;
      }
    }

    /* BOTÃO FLUTUANTE WHATSAPP */

    .btn-whats {
      position: fixed;
      bottom: 30px;
      right: 20px !important;
      float: right !important;
      z-index: 999999999;
      display: block;
      visibility: visible !important;
      border-radius: 30px;
    }

    .btn-whats a {
      color: #54cc61;
      text-decoration: none;
      transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
    }

    .btn-whats button {
      border-radius: 30px !important;
    }

    button.pulse-button i {
      color: #ffffff;
      font-size: 25px;
    }

    button {
      overflow: visible;
    }

    button,
    html input[type="button"],
    input[type="reset"],
    input[type="submit"] {
      -webkit-appearance: button;
      cursor: pointer;
    }

    .navigation .nav-links a,
    .bttn,
    button,
    input[type="button"],
    input[type="reset"],
    input[type="submit"] {
      background: #353f47;
      color: #FFF;
      cursor: pointer;
      font-size: 13px;
      font-size: 1.2rem;
      line-height: 1;
      text-transform: uppercase;
      border: none;
      padding: 8px 15px;
      font-weight: normal;
      border-bottom: 3px solid #111;
      display: inline-block;
      position: relative;
    }

    .btn-whats button,
    input,
    select,
    textarea {
      font-size: 100%;
      margin: 0;
      vertical-align: middle;
    }

    button.pulse-button i {
      color: #ffffff;
      font-size: 25px;
    }

    button.pulse-button:focus {
      outline: none;
    }

    .pulse-button {
      position: relative;
      width: 51px;
      height: 51px;
      border: none;
      box-shadow: 0 0 0 0 rgba(83, 203, 99, 0.49);
      border-radius: 50%;
      background: #54cc61;
      background-image: -webkit-linear-gradient(top, #54cc61, #54cc61);
      background-image: -moz-linear-gradient(top, #54cc61, #54cc61);
      background-image: -ms-linear-gradient(top, #54cc61, #54cc61);
      background-image: -o-linear-gradient(top, #54cc61, #54cc61);
      background-image: linear-gradient(to bottom, #54cc61, #54cc61);
      background-size: cover;
      background-repeat: no-repeat;
      cursor: pointer;
      -webkit-animation: pulse 1.25s infinite cubic-bezier(0.16, 0, 0, 1);
      -moz-animation: pulse 1.25s infinite cubic-bezier(0.16, 0, 0, 1);
      -ms-animation: pulse 1.25s infinite cubic-bezier(0.16, 0, 0, 1);
      animation: pulse 1.25s infinite cubic-bezier(0.16, 0, 0, 1);
    }

    .pulse-button:hover {
      -webkit-animation: none;
      -moz-animation: none;
      -ms-animation: none;
      animation: none;
    }

    @-webkit-keyframes pulse {
      to {
        box-shadow: 0 0 0 45px rgba(83, 203, 99, 0);
      }
    }

    @-moz-keyframes pulse {
      to {
        box-shadow: 0 0 0 45px rgba(83, 203, 99, 0);
      }
    }

    @-ms-keyframes pulse {
      to {
        box-shadow: 0 0 0 45px rgba(83, 203, 99, 0);
      }
    }

    @keyframes pulse {
      to {
        box-shadow: 0 0 0 45px rgba(83, 203, 99, 0);
      }
    }

/* produtos.php */
.products-page .page-hero {
  position: relative;
  min-height: 320px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #0b0d0f;
}

.products-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .74), rgba(0, 0, 0, .42) 52%, rgba(0, 0, 0, .18)),
    linear-gradient(0deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .12)),
    url("../images/banner-int-02.webp") center/cover;
  filter: saturate(.82) contrast(1.05);
  transform: scale(1.02);
}

.products-page .page-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 54px;
}

.products-page .page-hero .section-label {
  color: rgba(255, 255, 255, .66);
}

.products-page .page-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(46px, 6vw, 65px);
  font-weight: 500;
  line-height: .96;
}

.products-page .products-section {
  padding: clamp(58px, 8vw, 96px) 0 clamp(76px, 9vw, 120px);
}

.products-page .products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 18px;
}

.products-page .product-card {
  display: block;
  position: relative;
  width: 100%;
  min-height: 365px;
  flex: none;
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: #171a1c;
  color: var(--white);
  transform: translateY(26px);
  opacity: 0;
  transition: transform .9s var(--ease), opacity .9s var(--ease);
}

.products-page .product-info {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 24px;
}

.products-page .product-number {
  display: block;
  margin-bottom: 74px;
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
}

.products-page .product-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.products-page .product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.84) saturate(.82) contrast(1.08);
  transition: transform .5s var(--ease), filter .45s var(--ease);
}

.products-page .product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .03), rgba(0, 0, 0, .76));
  transition: background .35s var(--ease);
}

.products-page .product-card:hover img {
  transform: scale(1.035);
  filter: brightness(.96) saturate(.9) contrast(1.04);
}

.products-page .product-card:hover::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, .01), rgba(0, 0, 0, .7));
}

.products-page .product-card h2 {
  margin: 0;
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 500;
  line-height: 1.03;
}

.products-page .product-card p {
  margin: 12px 0 0;
  max-width: 260px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.5;
  font-size: 18px;
}

.products-page .cta-box {
  margin-top: clamp(50px, 7vw, 82px);
}

@media (max-width: 980px) {
  .products-page .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .products-page .page-hero {
    min-height: 300px;
  }

  .products-page .products-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .products-page .product-card {
    min-height: 420px;
  }
}
