  /*
===============================================================================
                            COMMON STYLES
===============================================================================
*/

  /* CSS Custom Properties */
  @property --p {
      syntax: '<number>';
      initial-value: 0;
      inherits: false;
  }

  /* Base Styles */
  body,
  html {
      margin: 0;
      padding: 0;
      background-color: #000;
      color: #fff;
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
  }

  /* About Company section */
  .about-company {
      padding: 48px 20px 60px;
      max-width: 1100px;
      margin: 0 auto;
  }

  .about-company .section-title {
      text-align: center;
      margin-bottom: 18px;
  }

  .about-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
  }

  .about-card {
      background: rgba(12, 12, 12, 0.9);
      border: 1px solid #1b2a2a;
      border-radius: 12px;
      padding: 16px;
  }

  .about-card__title {
      margin: 0 0 8px;
      font-size: 1.1rem;
      color: #eaffff;
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .about-card__title i {
      color: #7ffcff;
  }

  .about-card__text {
      margin: 0;
      color: #cfe7e7;
      line-height: 1.6;
  }

  @media (max-width: 720px) {
      .about-grid {
          grid-template-columns: 1fr;
      }
  }

  /* Redesigned layout */
  .about-history {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 16px;
      margin: 18px 0 22px;
  }

  .about-history__text {
      background: rgba(12, 12, 12, 0.9);
      border: 1px solid #1b2a2a;
      border-radius: 12px;
      padding: 16px;
  }

  .about-history__text p {
      margin: 0;
      color: #cfe7e7;
      line-height: 1.7;
  }

  .about-history__timeline {
      list-style: none;
      margin: 0;
      padding: 14px 16px;
      background: rgba(12, 12, 12, 0.9);
      border: 1px solid #1b2a2a;
      border-radius: 12px;
  }

  .about-history__timeline li {
      display: grid;
      grid-template-columns: 80px 1fr;
      align-items: center;
      gap: 10px;
      padding: 8px 0;
      border-left: 3px solid rgba(127, 252, 255, 0.25);
      padding-left: 12px;
  }

  .about-history__timeline .year {
      color: #7ffcff;
      font-weight: 600;
  }

  .about-values-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 12px;
  }

  @media (max-width: 900px) {
      .about-history {
          grid-template-columns: 1fr;
      }

      .about-values-grid {
          grid-template-columns: 1fr 1fr;
      }
  }

  @media (max-width: 560px) {
      .about-values-grid {
          grid-template-columns: 1fr;
      }
  }

  /* ===============================
Mobile Navbar (Hamburger)
=============================== */
  /* Base: hide toggle on desktop */
  .navbar-toggle {
      display: none;
  }

  /* Hide close button on desktop */
  .navbar-close {
      display: none;
  }

  /* Desktop keeps nav-links inline */
  .nav-links {
      display: flex;
      align-items: center;
  }

  @media (max-width: 768px) {

      /* Show hamburger on mobile */
      .navbar-toggle {
          display: inline-flex;
          flex-direction: column;
          gap: 5px;
          background: transparent;
          border: 1px solid #222;
          padding: 8px 10px;
          border-radius: 6px;
          cursor: pointer;
          margin-left: auto;
      }

      .navbar-toggle__bar {
          width: 22px;
          height: 2px;
          background: #fff;
          display: block;
      }

      /* Full-screen sliding panel for nav links */
      .nav-links {
          position: fixed;
          inset: 0;
          /* top:0; right:0; bottom:0; left:0 */
          width: 100vw;
          height: 100vh;
          display: flex;
          flex-direction: column;
          gap: 14px;
          padding: 80px 24px 24px;
          /* space for fixed navbar */
          background: rgba(0, 0, 0, 0.98);
          z-index: 1100;
          /* above navbar */
          transform: translateX(-100%);
          transition: transform 0.35s ease;
      }

      /* Close button inside panel */
      .navbar-close {
          position: absolute;
          top: 14px;
          right: 20vw;
          width: 40px;
          height: 40px;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          border-radius: 8px;
          background: rgba(255, 255, 255, 0.06);
          color: #fff;
          border: 1px solid #222;
          font-size: 24px;
          cursor: pointer;
      }

      .navbar-close:hover {
          background: rgba(255, 255, 255, 0.12);
      }

      .nav-links a {
          margin-left: 0;
          display: block;
          width: 100%;
          padding: 12px 4px;
          font-size: 1.05rem;
          border-bottom: 1px solid #111;
      }

      /* Slide in when open */
      .navbar.is-open .nav-links {
          transform: translateX(0);
      }
  }

  .navbar {
      position: fixed;
      /* Fixa a navbar no topo */
      top: 0;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.85);
      /* Fundo semi-transparente */
      backdrop-filter: blur(10px);
      /* Efeito de vidro fosco */
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid #222;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 5%;
      box-sizing: border-box;
      z-index: 1000;
      /* Garante que a navbar fique sobre outros elementos */
      transition: background-color 0.3s ease;
  }

  .logo img {
      max-height: 50px;
      /* Define uma altura máxima para a logo */
      width: auto;
      /* Mantém a proporção */
      display: block;
  }

  .logo {
      color: #fff;
      text-decoration: none;
      font-size: 1.5rem;
      font-weight: bold;
  }

  .nav-links a {
      color: #fff;
      text-decoration: none;
      margin-left: 25px;
      font-size: 1rem;
      transition: color 0.3s;
  }

  .nav-links a:hover {
      color: #00ffff;
      /* Neon blue hover effect */
      text-shadow: 0 0 5px rgba(0, 255, 255, 0.7);
  }

  .nav-links a.active,
  .nav-links a[aria-current="page"] {
      color: #00ffff;
      text-shadow: 0 0 6px rgba(0, 255, 255, 0.8), 0 0 12px rgba(0, 255, 255, 0.35);
      position: relative;
  }

  /* ===============================
Page Header (Internal Pages)
=============================== */
  .page-hero {
      position: relative;
      width: 100%;
      height: 300px;
      margin-top: 70px;
      /* Page hero styles moved to o-que-fazemos.css for page-specific use */
  }

  /* Fundo quadriculado com cantos neon sutis (como no contato) */
  .page-hero--grid {
      background-color: #0a0a0a;
      background-image:
          linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
          radial-gradient(800px 800px at 0% 0%, rgba(0, 255, 255, 0.10), rgba(0, 0, 0, 0.0) 55%),
          radial-gradient(800px 800px at 100% 0%, rgba(37, 211, 102, 0.10), rgba(0, 0, 0, 0.0) 55%),
          radial-gradient(800px 800px at 0% 100%, rgba(0, 255, 255, 0.08), rgba(0, 0, 0, 0.0) 55%),
          radial-gradient(800px 800px at 100% 100%, rgba(37, 211, 102, 0.08), rgba(0, 0, 0, 0.0) 55%);
      background-size:
          24px 24px,
          24px 24px,
          auto,
          auto,
          auto,
          auto;
      background-position:
          top left,
          top left,
          center,
          center,
          center,
          center;
  }

  .page-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.65));
      z-index: 1;
      /* acima do fundo, abaixo do canvas */
      pointer-events: none;
      /* não bloqueia interações/hover */
  }

  .page-hero__content {
      position: relative;
      z-index: 3;
      /* acima do canvas */
      text-align: center;
      padding: 0 20px;
  }

  .page-hero__title {
      font-size: clamp(2.4rem, 5vw, 3.4rem);
      margin: 0;
      letter-spacing: 0.5px;
      line-height: 1.08;
      color: #ffffff;
      /* texto branco sólido */
      position: relative;
  }

  .page-hero__title::after {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -10px;
      width: clamp(120px, 28vw, 260px);
      height: 2px;
      background: linear-gradient(90deg, rgba(0, 255, 255, 0) 0%, rgba(0, 255, 255, 0.85) 20%, rgba(37, 211, 102, 0.85) 80%, rgba(37, 211, 102, 0) 100%);
      box-shadow: 0 0 6px rgba(0, 255, 255, 0.45), 0 0 10px rgba(37, 211, 102, 0.35);
      border-radius: 2px;
  }

  .page-hero__title::before {
      display: none;
  }

  .page-hero__subtitle {
      margin: 12px 0 0;
      font-size: clamp(1.05rem, 2.2vw, 1.45rem);
      line-height: 1.35;
      color: rgba(255, 255, 255, 0.96);
      /* texto branco sólido */
  }

  @keyframes headingSheen {

      0%,
      100% {
          background-position: 0% 50%;
      }

      50% {
          background-position: 100% 50%;
      }
  }

  @keyframes subSheen {

      0%,
      100% {
          background-position: 10% 50%;
      }

      50% {
          background-position: 90% 50%;
      }
  }

  @keyframes underlineSweep {
      0% {
          background-position: 0% 50%;
      }

      100% {
          background-position: 200% 50%;
      }
  }

  @keyframes underlineDot {
      0% {
          left: 0%;
          opacity: 0.0;
      }

      10% {
          opacity: 0.9;
      }

      50% {
          left: 50%;
          opacity: 0.75;
      }

      90% {
          opacity: 0.9;
      }

      100% {
          left: 100%;
          opacity: 0.0;
      }
  }

  /* Page hero responsive styles moved to o-que-fazemos.css */

  /* Espaçamento padrão da seção de introdução (desktop) */
  .intro-section {
      padding: 48px 0;
  }

  /* Canvas do header (circuitos/peixes) */
  #hero-circuits,
  #hero-fish,
  #hero-waves {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      /* acima do overlay ::after */
      /* atrás do conteúdo */
      display: block;
      background: transparent;
      /* deixa o overlay visível por baixo das vinhas */
      filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.45));
  }

  /* Variação específica para a página de Contato */
  .intro--contact {
      background: linear-gradient(180deg, #121416 0%, #0e1113 100%);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .intro__inner {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: flex-start;
      /* concentrar topo */
      justify-content: space-between;
      gap: 40px;
  }

  .intro__text {
      max-width: 520px;
      /* mais estreito: cresce para baixo */
      text-align: center;
      flex: 0 1 560px;
      /* não expandir demais lateralmente */
  }

  .intro__text--left {
      text-align: left;
  }

  .intro__title {
      font-size: 1.8rem;
      line-height: 1.25;
      margin: 0 0 8px 0;
      position: relative;
      display: inline-block;
      /* largura exata do texto */
      padding-bottom: 14px;
      /* espaço para a linha */
      /* Gradiente do texto acompanha a ponta da linha (pico em --p) */
      background: linear-gradient(90deg,
              #eaffff 0%,
              #eaffff calc((var(--p) * 100%) - 8%),
              #7ffcff calc((var(--p) * 100%) - 8%),
              #7ffcff calc((var(--p) * 100%) + 8%),
              #eaffff calc((var(--p) * 100%) + 8%),
              #eaffff 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      will-change: background-image;
      animation: syncProgress 2.6s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
  }

  .intro__title::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      /* encosta no texto */
      width: 100%;
      /* usamos scaleX com --p para varrer */
      height: 3px;
      border-radius: 2px;
      /* brilho mais forte na ponta direita (acompanha a escala) */
      background: linear-gradient(90deg,
              rgba(127, 252, 255, 0.00) 0%,
              rgba(127, 252, 255, 0.20) 85%,
              rgba(127, 252, 255, 0.95) 100%);
      box-shadow: 0 0 12px rgba(127, 252, 255, 0.25);
      transform-origin: left center;
      transform: scaleX(var(--p));
      will-change: transform, opacity;
      animation: syncProgress 2.6s cubic-bezier(0.4, 0.0, 0.2, 1) infinite, underlineFade 2.6s linear infinite;
  }

  /* Uma única animação dirige --p para sincronizar ambos (sem alterar opacidade do título) */
  @keyframes syncProgress {
      0% {
          --p: 0;
      }

      100% {
          --p: 1;
      }
  }

  /* Opacidade apenas da underline */
  @keyframes underlineFade {
      0% {
          opacity: 0;
      }

      10% {
          opacity: 1;
      }

      92% {
          opacity: 1;
      }

      100% {
          opacity: 0;
      }
  }

  @media (prefers-reduced-motion: reduce) {
      .intro__title {
          text-shadow: none;
          animation: none;
          background-position: 100% 50%;
      }

      .intro__title::after {
          animation: none;
          opacity: 1;
          width: 100%;
          transform: none;
      }
  }

  .intro__lead {
      font-size: 1.06rem;
      color: #cfe7e7;
      line-height: 1.7;
      margin: 0;
  }

  .intro__body {
      margin: 10px 0 0 0;
      font-size: 1rem;
      color: #c7d9d9;
      line-height: 1.75;
  }

  .intro__actions {
      margin-top: 16px;
  }

  .intro__media {
      flex: 0 0 340px;
      /* mais espaço para a animação da logo */
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .intro__logo {
      width: 280px;
      height: 280px;
      object-fit: contain;
      filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
      opacity: 0.95;
  }

  /* Botão base */
  .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 18px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease, filter 0.25s ease;
      will-change: transform;
  }

  .btn:hover {
      transform: translateY(-2px);
  }

  /* Botão WhatsApp */
  .btn--whatsapp {
      position: relative;
      background: linear-gradient(180deg, #25D366, #1ebe57);
      color: #071b0f;
      box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
      overflow: hidden;
  }

  .btn--whatsapp:hover {
      background: linear-gradient(180deg, #2be173, #22c25f);
      box-shadow: 0 14px 28px rgba(37, 211, 102, 0.38);
      filter: saturate(1.05);
      transform: translateY(-2px) scale(1.02);
  }

  .btn--whatsapp i {
      font-size: 1.1em;
      transition: transform 0.18s ease;
  }

  .btn--whatsapp:hover i {
      transform: scale(1.1) rotate(-2deg);
  }

  /* Flash/sheen varrendo no hover */
  .btn--whatsapp::before {
      content: "";
      position: absolute;
      top: -20%;
      left: -120%;
      width: 50%;
      height: 140%;
      background: linear-gradient(115deg, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 0.25) 35%, rgba(255, 255, 255, 0.0) 70%);
      transform: skewX(-20deg);
      transition: transform 0.5s ease, left 0.5s ease;
      pointer-events: none;
  }

  .btn--whatsapp:hover::before {
      left: 130%;
  }

  /* Estado ativo (clique) */
  .btn--whatsapp:active {
      transform: translateY(0) scale(0.995);
      box-shadow: 0 8px 18px rgba(37, 211, 102, 0.32);
  }

  /* Acessibilidade: foco visível */
  .btn--whatsapp:focus-visible {
      outline: 2px solid rgba(37, 211, 102, 0.85);
      outline-offset: 3px;
  }

  @media (max-width: 768px) {
      .intro-section {
          padding: 22px 0;
      }

      .intro__inner {
          flex-direction: column;
          gap: 18px;
      }

      .intro__text {
          text-align: left;
      }

      .intro__title {
          font-size: 1.4rem;
      }

      .intro__lead {
          font-size: 1.2rem;
      }

      .intro__media {
          margin-top: 6px;
      }

      .intro__logo {
          width: 200px;
          height: 200px;
      }
  }

  /* Page hero mobile styles moved to o-que-fazemos.css */


  /* Modal Styles */
  .modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 1000;
      overflow-y: auto;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding: 40px 20px 60px 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease-in-out;
  }

  /* Prevent body scroll when modal is open */
  body.modal-open {
      overflow: hidden;
  }

  .modal.show {
      opacity: 1;
      pointer-events: auto;
  }

  .modal-content {
      background-color: #1a1a1a;
      border-radius: 12px;
      width: 100%;
      max-width: 700px;
      position: relative;
      transform: translateY(-50px);
      transition: transform 0.3s ease-out;
      margin: 20px 0 40px 0;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
      border: 2px solid #008cff;
      animation: borderPulse 3s ease-in-out infinite;
  }

  /* This wrapper will hold all the content and sit on top of the ::after pseudo-element */
  .modal-content-wrapper {
      position: relative;
      z-index: 2;
      padding: 30px;
      /* Restore original padding */
  }

  @keyframes borderPulse {

      0%,
      100% {
          border-color: #008cff;
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 140, 255, 0.4);
      }

      50% {
          border-color: #00ffd5;
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 255, 213, 0.5);
      }
  }

  @keyframes shake {

      0%,
      100% {
          transform: translateX(0);
      }

      25% {
          transform: translateX(-2px);
      }

      75% {
          transform: translateX(2px);
      }
  }

  .btn-cta:hover {
      animation: shake 0.8s ease-in-out infinite;
  }

  .modal.show .modal-content {
      transform: translateY(0);
  }

  .close-modal {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 28px;
      font-weight: bold;
      color: #aaa;
      cursor: pointer;
      transition: color 0.2s;
  }

  .close-modal:hover {
      color: #fff;
  }

  .modal-header {
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid #333;
  }

  .project-category {
      display: inline-block;
      background-color: #333;
      color: #fff;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      margin-bottom: 10px;
  }

  .modal-body {
      line-height: 1.6;
      color: #ddd;
      position: relative;
      z-index: 1;
  }

  .disclaimer {
      background: rgba(0, 255, 213, 0.1);
      border-left: 3px solid #00ffd5;
      padding: 12px 15px;
      margin: 20px 0;
      border-radius: 4px;
      font-size: 0.9em;
      position: relative;
      overflow: hidden;
  }

  .disclaimer:before {
      content: '⚠️';
      margin-right: 8px;
      font-size: 1.2em;
      vertical-align: middle;
  }

  .modal-body h3 {
      color: #fff;
      margin: 20px 0 10px;
      font-size: 1.2rem;
  }



  .benefits-list {
      padding-left: 0;
      margin: 15px 0 20px;
      list-style: none;
  }

  .benefits-list li {
      margin-bottom: 10px;
      position: relative;
      padding-left: 30px;
      line-height: 1.6;
      color: #e0e0e0;
  }

  .benefits-list li:before {
      content: '→';
      color: #00ffd5;
      position: absolute;
      left: 0;
      font-weight: bold;
      text-shadow: 0 0 8px rgba(0, 255, 213, 0.5);
      transition: all 0.3s ease;
  }

  .benefits-list li:hover:before {
      transform: translateX(5px);
      text-shadow: 0 0 12px rgba(0, 255, 213, 0.8);
  }

  .modal-footer {
      margin-top: 30px;
      text-align: center;
  }

  .btn-cta {
      padding: 12px 30px;
      font-size: 1rem;
      font-family: 'Poppins', sans-serif;
      color: #00ffff;
      background-color: transparent;
      border: 2px solid #00ffff;
      border-radius: 5px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 10px;
      text-decoration: none;
      display: inline-block;
      background-color: transparent;
      border: 2px solid #00ffff;
      border-radius: 5px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 10px;
  }

  .btn-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
      transition: 0.5s;
  }

  .btn-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
      transition: 0.5s;
  }

  .btn-cta:hover {
      color: #000;
      background-color: #00ffff;
      box-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
      transform: translateY(-2px);
  }

  .btn-cta:hover::before {
      left: 100%;
  }

  /* Make modal responsive */
  @media (max-width: 768px) {
      .modal-content {
          width: 90%;
          padding: 20px 15px;
          margin-right: 10vw;
          /* Add right margin to prevent modal from being cut off */
      }

      .modal-header h2 {
          font-size: 1.5rem;
      }

      .btn-cta {
          width: 100%;
          padding: 15px;
          right: 4vw !important;
      }
  }

  /* Decorative Borders for Plans Section */
  .plans-border-decoration {
      position: absolute;
      top: 0;
      height: 100%;
      width: 2px;
      /* Width of the dotted line */
      background-image: radial-gradient(circle at center, #00ffff 2px, transparent 3px);
      /* Creates the dots */
      background-size: 2px 10px;
      /* Dot size and spacing */
      background-repeat: repeat-y;
      z-index: 1;
      animation: scroll-dots 1s linear infinite, pulsate-dots 2s ease-in-out infinite;
  }

  .plans-border-decoration.left {
      left: 0;
  }

  .plans-border-decoration.right {
      right: 0;
  }

  @keyframes scroll-dots {
      from {
          background-position: 0 0;
      }

      to {
          background-position: 0 10px;
          /* Corresponds to the background-size height for a seamless loop */
      }
  }

  @keyframes pulsate-dots {

      0%,
      100% {
          box-shadow: 0 0 2px rgba(0, 255, 255, 0.2), 0 0 3px rgba(0, 255, 255, 0.1);
          /* Low pulse */
      }

      50% {
          box-shadow: 0 0 15px rgba(0, 255, 255, 1), 0 0 25px rgba(0, 255, 255, 0.8);
          /* High pulse */
      }
  }

  @keyframes pulsate {
      0% {
          opacity: 0.7;
          text-shadow: 0 0 5px rgba(0, 255, 255, 0.7), 0 0 10px rgba(0, 255, 255, 0.5);
      }

      50% {
          opacity: 1;
          text-shadow: 0 0 10px rgba(0, 255, 255, 1), 0 0 20px rgba(0, 255, 255, 0.7);
      }

      100% {
          opacity: 0.7;
          text-shadow: 0 0 5px rgba(0, 255, 255, 0.7), 0 0 10px rgba(0, 255, 255, 0.5);
      }
  }

  /* Plans Section */
  .plans-section {
      padding: 4rem 0;
      background-color: #050505;
      /* Um pouco mais claro que o preto puro */
      position: relative;
      overflow: hidden;
      /* Garante que os botões não vazem */
  }

  .plans-carousel,
  .plans-carousel * {
      box-sizing: border-box;
  }

  .plans-carousel {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
  }

  .plans-carousel-track-container {
      overflow: hidden;
      margin: 0 auto;
      position: relative;
      width: 100%;
  }

  .plans-carousel-track {
      display: flex;
      /* Removemos o gap e controlaremos o espaço com padding */
      list-style: none;
      padding: 0;
      margin: 0;
      transition: transform 0.5s ease-in-out;
  }


  .plan-card.featured {
      transform: scale(1.02);
      /* Reduzido para evitar corte */
      border-color: #00ffff;
      box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
      /* Sombra menor */
      overflow: hidden;
      /* Crucial para o efeito de fita no canto */
      padding-top: 3rem;
      /* Adiciona espaço no topo para a faixa não sobrepor o título */
  }

  /* Efeito de hover para os cards não-destacados */
  .plan-card:not(.featured):hover {
      transform: scale(1.01);
      /* Reduzido para evitar corte */
      border-color: #00ffff;
      box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
      /* Sombra menor */
      z-index: 20;
      /* Garante que o card em hover fique na frente de todos */
  }

  /* Animação de hover para o próprio card em destaque */
  .plan-card.featured:hover {
      transform: scale(1.03);
      /* Reduzido para evitar corte */
      box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
      /* Sombra menor */
  }

  /* Quando um card está em hover, rebaixa o card em destaque */
  .plans-carousel-track:has(.plan-card:not(.featured):hover) .plan-card.featured {
      transform: scale(1.0);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      /* Sombra padrão */
  }

  .featured-badge {
      position: absolute;
      width: 160px;
      /* Largura ajustada para um visual melhor */
      padding: 8px 0;
      top: 25px;
      /* Distância do topo para o centro da rotação */
      right: -40px;
      /* Distância da direita para o centro da rotação */
      text-align: center;
      font-size: 0.85rem;
      font-weight: bold;
      background-color: #00ffff;
      color: #111;
      transform: rotate(45deg);
      z-index: 5;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  /* Plans carousel button styles moved to avoid duplication */

  .plans-carousel-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      border: 1px solid #555;
      color: #fff;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
      transition: background-color 0.3s, border-color 0.3s;
  }

  .plans-carousel-button:hover {
      background-color: rgba(255, 255, 255, 0.2);
      border-color: #fff;
  }

  .plans-carousel-button--left {
      left: 0;
  }

  .plans-carousel-button--right {
      right: 0;
  }

  .plans-carousel-button.is-hidden {
      display: none;
  }

  /* Make modal responsive */
  @media (max-width: 992px) {
      .about-content {
          flex-direction: column-reverse;
      }

      .about-image-collage {
          margin-bottom: 40px;
          width: 100%;
          max-width: 500px;
          min-height: 400px;
          margin-right: 10vw;
      }
  }

  @media (max-width: 768px) {
      .carousel-section {
          padding: 2rem 1rem;
      }

      .carousel-row {
          height: 180px;
      }

      .carousel-card {
          min-width: 260px;
          height: 160px;
          padding: 1.2rem;
      }


      /* About section mobile styles moved to nossa-empresa.css for page-specific use */
  }





  button {
      padding: 8px 18px;
      font-size: 0.95rem;
      font-family: 'Poppins', sans-serif;
      /* Garante a consistência da fonte */
      color: #00ffff;
      /* Cor do texto ciano neon */
      background-color: transparent;
      border: 2px solid #00ffff;
      /* Borda ciano neon, um pouco mais grossa */
      border-radius: 5px;
      cursor: pointer;
      position: relative;
      /* Necessário para o pseudo-elemento */
      overflow: hidden;
      /* Esconde o pseudo-elemento fora do botão */
      transition: color 0.4s ease-in-out;
      /* Transição para a cor do texto */
      z-index: 1;
  }

  button:hover {
      color: #000;
      /* Cor do texto ao passar o mouse */
  }

  /* Anula TODOS os efeitos de fundo/borda para os botões do carrossel no hover */
  .plans-carousel-button:hover {
      color: #00ffff !important;
      /* Mantém a mudança de cor da seta */
      background: none !important;
      border: none !important;
      outline: none !important;
      box-shadow: none !important;
  }

  .plans-carousel-button::before,
  .plans-carousel-button:hover::before {
      display: none !important;
      /* Remove completamente o pseudo-elemento */
  }

  /* Animation styles moved to index.css for index-specific use */


  /* Animation keyframes moved to index.css for index-specific use */

  /* Keyframes for fade-up animation */
  @keyframes fadeUp {
      from {
          transform: translateY(20px);
          opacity: 0;
      }

      to {
          transform: translateY(0);
      }
  }

  /* Circuit divider styles moved to index.css for index-specific use */


  /* pulse-dramatic animation moved to nossa-empresa.css for page-specific use */


  .section-title {
      font-size: 2.5rem;
      color: #fff;
      margin-bottom: 20px;
      font-weight: 700;
      position: relative;
      display: inline-block;
  }

  .section-title::after {
      content: '';
      position: absolute;
      width: 60%;
      height: 3px;
      background-color: #00ffff;
      bottom: -10px;
      left: 20%;
      box-shadow: 0 0 10px #00ffff;
  }

  /* About Section Carousel Modal Styles */
  .about-carousel-modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.85);
      justify-content: center;
      align-items: center;
      z-index: 1001;
  }

  .about-carousel-modal-content {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 90%;
      max-width: 1200px;
  }

  .about-carousel-close-button {
      position: absolute;
      top: 15px;
      right: 35px;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      z-index: 1002;
  }

  .about-carousel-track-container {
      overflow: hidden;
      width: 100%;
      max-width: 1200px;
  }

  .about-carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
      cursor: grab;
  }

  .about-carousel-image {
      min-width: 100%;
      height: auto;
      object-fit: contain;
      max-height: 80vh;
  }

  .about-carousel-prev,
  .about-carousel-next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: #fff;
      font-weight: bold;
      font-size: 18px;
      transition: 0.6s ease;
      border-radius: 0 3px 3px 0;
      user-select: none;
      background-color: rgba(0, 0, 0, 0.5);
      padding: 16px;
      z-index: 1002;
  }

  .about-carousel-next {
      right: 0;
      border-radius: 3px 0 0 3px;
  }

  .about-carousel-prev:hover,
  .about-carousel-next:hover {
      background-color: rgba(0, 0, 0, 0.8);
  }

  /* About Section Carousel Modal Styles */
  .about-carousel-modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.85);
      justify-content: center;
      align-items: center;
      z-index: 1001;
  }

  .about-carousel-modal-content {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 90%;
      max-width: 1200px;
  }

  .about-carousel-close-button {
      position: absolute;
      top: 15px;
      right: 35px;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      z-index: 1002;
  }

  .about-carousel-track-container {
      overflow: hidden;
      width: 100%;
      max-width: 1200px;
  }

  .about-carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
      cursor: grab;
  }

  .about-carousel-image {
      min-width: 100%;
      height: auto;
      object-fit: contain;
      max-height: 80vh;
  }

  .about-carousel-prev,
  .about-carousel-next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: #fff;
      font-weight: bold;
      font-size: 28px;
      padding: 12px;
      background-color: rgba(0, 0, 0, 0.4);
      border: 1px solid rgba(0, 255, 255, 0.5);
      border-radius: 8px;
      user-select: none;
      z-index: 1002;
      transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
      /* Smoother transition */
      line-height: 1;
  }

  .about-carousel-prev {
      left: -60px;
      /* Positioned outside the main image area */
  }

  .about-carousel-next {
      right: -60px;
      /* Positioned outside the main image area */
  }

  .about-carousel-prev:hover,
  .about-carousel-next:hover {
      background: linear-gradient(145deg, #00ffff, #00b8b8);
      border-color: #00ffff;
      color: #121212;
  }

  /* --- Footer Styles --- */
  .site-footer {
      background-color: #080808;
      color: #999;
      padding: 50px 5% 20px;
      position: relative;
      overflow: hidden;
  }

  .site-footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, transparent, #00ffff, #008cff, #00ffff, transparent);
      animation: animate-border 4s linear infinite;
  }

  @keyframes animate-border {
      0% {
          left: -100%;
      }

      100% {
          left: 100%;
      }
  }

  .footer-content {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto 40px;
  }

  .footer-logo-container,
  .footer-links,
  .footer-articles,
  .footer-contacts {
      flex: 1;
      min-width: 200px;
  }

  .footer-logo {
      width: 300px;
      height: auto;
      margin-top: 20px;
      margin-left: -40px;
      margin-bottom: 20px;
  }

  .site-footer h4 {
      color: #00ffff;
      transform: translateX(5px);
  }

  .footer-links ul,
  .footer-articles ul {
      list-style: none;
      padding: 0;
  }

  .footer-links a,
  .footer-articles a {
      color: #999;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      margin-bottom: 10px;
      font-size: 1rem;
      position: relative;
      overflow: hidden;
  }

  .footer-links a::before,
  .footer-articles a::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
      transition: left 0.6s ease;
  }

  .footer-links a:hover::before,
  .footer-articles a:hover::before {
      left: 100%;
  }

  .footer-links a i,
  .footer-articles a i {
      margin-right: 8px;
      width: 16px;
      text-align: center;
      color: #00ffff;
      transition: all 0.3s ease;
  }

  .footer-links a:hover,
  .footer-articles a:hover {
      color: #00ffff;
      transform: translateX(5px);
  }

  /* Estilos para a nova seção de contatos */
  .footer-contacts .contact-info p {
      color: #ccc;
      margin-bottom: 12px;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .footer-contacts .contact-info i {
      color: #00ffff;
      font-size: 1.1rem;
      width: 20px;
      text-align: center;
      transition: all 0.3s ease;
  }

  .footer-contacts .contact-info i:hover {
      transform: scale(1.1);
      color: #00d9ff;
  }

  .footer-contacts .contact-info p:hover {
      color: #fff;
      transform: translateX(3px);
      transition: all 0.3s ease;
  }

  .footer-contacts .contact-info a {
      color: inherit;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      display: inline-block;
  }

  .footer-contacts .contact-info a::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
      transition: left 0.6s ease;
  }

  .footer-contacts .contact-info a:hover::before {
      left: 100%;
  }

  .footer-contacts .contact-info a:hover {
      color: #00ffff;
      transform: translateX(5px);
  }

  /* Estilos para links da seção de contato */
  .contact-link {
      color: inherit;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      display: inline-block;
  }

  .contact-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
      transition: left 0.6s ease;
  }

  .contact-link:hover::before {
      left: 100%;
  }

  .contact-link:hover {
      color: #00ffff;
      transform: translateX(5px) scale(1.05);
  }

  /* Botão de orçamento elegante na coluna de contatos */
  .footer-quote-cta {
      margin-top: 25px;
  }

  .elegant-quote-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 20px;
      background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 140, 255, 0.1));
      border: 1px solid rgba(0, 255, 255, 0.3);
      border-radius: 8px;
      color: #00ffff;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      font-family: 'Poppins', sans-serif;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
  }

  .elegant-quote-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
      transition: left 0.6s ease;
  }

  .elegant-quote-btn:hover::before {
      left: 100%;
  }

  .elegant-quote-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 255, 255, 0.25);
      border-color: rgba(0, 255, 255, 0.6);
      background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(0, 140, 255, 0.15));
  }

  .elegant-quote-btn i {
      font-size: 1rem;
      color: #00ffff;
      transition: all 0.3s ease;
  }

  .elegant-quote-btn:hover i {
      transform: rotate(15deg) scale(1.1);
  }

  .elegant-quote-btn span {
      font-weight: 500;
      letter-spacing: 0.5px;
  }

  .social-icons a {
      color: #fff;
      background-color: #222;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      margin-right: 10px;
      transition: all 0.3s ease;
  }

  .social-icons a:hover {
      background-color: #00ffff;
      color: #000;
      transform: scale(1.1) rotate(10deg);
  }

  .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid #222;
      font-size: 0.85rem;
  }

  @media (max-width: 768px) {
      .footer-content {
          flex-direction: column;
          text-align: center;
      }

      .social-icons {
          justify-content: center;
      }
  }


  /* Peeking robot animation styles moved to nossa-empresa.css for page-specific use */

  /* CTA section styles moved to index.css for index-specific use */

  /* Plans section styles moved to index.css for index-specific use */

  /* CTA button styles moved to index.css for index-specific use */

  /* Nokia Phone Container */
  .nokia-phone-container {
      position: fixed;
      top: 50%;
      right: -320px;
      /* Completely hidden, only tab visible */
      width: 320px;
      height: auto;
      transform: translateY(-50%);
      transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      z-index: 1000;
  }

  .nokia-phone-container.open {
      right: 20px;
      /* Slide out position */
  }

  .nokia-phone-container.open .nokia-tab {
      animation: none;
      border-color: #1A252F;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.4);
  }

  /* Pull Tab/Needle */
  .nokia-tab {
      position: absolute;
      left: -45px;
      top: 50%;
      transform: translateY(-50%);
      width: 45px;
      height: 100px;
      background: linear-gradient(135deg, #2C3E50, #34495E);
      border-radius: 20px 0 0 20px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.4);
      transition: all 0.3s ease;
      border: 2px solid transparent;
      border-right: none;
      animation: nokia-pulse 2s ease-in-out infinite;
  }

  @keyframes nokia-pulse {
      0% {
          transform: translateY(-50%) scale(1);
          opacity: 0.7;
          box-shadow: -5px 0 15px rgba(0, 0, 0, 0.4);
      }

      50% {
          transform: translateY(-50%) scale(1.1);
          opacity: 1;
          box-shadow: -8px 0 25px rgba(0, 0, 0, 0.6),
              0 0 15px rgba(74, 144, 226, 0.4);
      }

      100% {
          transform: translateY(-50%) scale(1);
          opacity: 0.7;
          box-shadow: -5px 0 15px rgba(0, 0, 0, 0.4);
      }
  }

  .nokia-tab:hover {
      background: linear-gradient(135deg, #34495E, #2C3E50);
      transform: translateY(-50%) translateX(-3px);
      box-shadow: -8px 0 20px rgba(0, 0, 0, 0.5);
  }

  .tab-icon {
      font-size: 20px;
      margin-bottom: 5px;
  }

  .tab-text {
      font-size: 10px;
      color: #ECF0F1;
      font-weight: bold;
      writing-mode: vertical-rl;
      text-orientation: mixed;
  }

  /* Nokia Phone Body */
  .nokia-phone {
      background: linear-gradient(145deg, #2C3E50, #34495E);
      border-radius: 25px;
      padding: 20px;
      box-shadow:
          0 15px 35px rgba(0, 0, 0, 0.4),
          inset 0 2px 5px rgba(255, 255, 255, 0.1);
      border: 2px solid #1A252F;
  }

  /* Nokia Header */
  .nokia-header {
      text-align: center;
      margin-bottom: 15px;
  }

  .nokia-brand {
      font-family: 'Arial Black', sans-serif;
      font-size: 18px;
      font-weight: bold;
      color: #ECF0F1;
      letter-spacing: 2px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }

  .nokia-model {
      font-size: 12px;
      color: #BDC3C7;
      margin-top: 2px;
  }

  /* Nokia Screen */
  .nokia-screen {
      background: #9BBB58;
      border: 4px solid #1A252F;
      border-radius: 8px;
      padding: 10px;
      margin-bottom: 15px;
      box-shadow:
          inset 0 0 0 2px #7A9A47,
          inset 0 4px 8px rgba(0, 0, 0, 0.3);
      position: relative;
  }

  #snakeCanvas {
      display: block;
      width: 100%;
      height: auto;
      background: #9BBB58;
      border-radius: 4px;
  }

  #tetrisCanvas {
      display: block;
      margin: 0 auto;
      background: #9BBB58;
      border-radius: 4px;
  }

  #pacmanCanvas {
      display: block;
      width: 100%;
      height: auto;
      background: #9BBB58;
      border-radius: 4px;
  }

  .game-info {
      margin-top: 8px;
      text-align: center;
  }

  .score-display {
      font-family: 'Courier New', monospace;
      font-size: 12px;
      color: #1A252F;
      font-weight: bold;
  }

  /* Nokia Keypad */
  .nokia-keypad {
      display: grid;
      gap: 3px;
      margin-bottom: 10px;
  }

  .keypad-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 3px;
  }

  .key {
      background: linear-gradient(145deg, #34495E, #2C3E50);
      border: 1px solid #1A252F;
      border-radius: 8px;
      padding: 8px;
      text-align: center;
      font-family: 'Arial', sans-serif;
      font-size: 14px;
      font-weight: bold;
      color: #ECF0F1;
      cursor: pointer;
      transition: all 0.1s ease;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .key:active {
      transform: translateY(1px);
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  .key span {
      display: block;
      font-size: 8px;
      color: #BDC3C7;
      margin-top: 2px;
  }

  /* Navigation Keys */
  .keypad-controls {
      margin-top: 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
  }

  .nav-key-row {
      display: flex;
      gap: 3px;
  }

  .nav-key {
      background: linear-gradient(145deg, #4a5568, #2d3748);
      border: 1px solid #1a202c;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: bold;
      color: #fff;
      text-shadow: 0 0 8px #00d4ff;
      cursor: pointer;
      transition: all 0.1s ease;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .nav-key.center {
      background: linear-gradient(145deg, #10b981, #059669);
      border-color: #047857;
  }

  .nav-key:active {
      transform: translateY(1px);
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  .game-instructions {
      font-size: 10px;
      color: #BDC3C7;
      text-align: center;
      margin-top: 10px;
  }

  /* Game Menu Styles */
  .game-menu {
      padding: 20px;
      text-align: center;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .menu-title {
      font-size: 16px;
      font-weight: bold;
      color: #2C3E50;
      margin-bottom: 20px;
      font-family: 'Courier New', monospace;
  }

  .menu-options {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 20px;
  }

  .menu-option {
      display: flex;
      align-items: center;
      padding: 8px 12px;
      border: 1px solid transparent;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.2s ease;
      font-family: 'Courier New', monospace;
  }

  .menu-option:hover {
      background: rgba(44, 62, 80, 0.1);
      border-color: #2C3E50;
  }

  .menu-option.active {
      background: #2C3E50;
      color: #FFFFFF;
      border-color: #2C3E50;
  }

  .menu-option.active .menu-text {
      color: #FFFFFF;
  }

  .menu-icon {
      font-size: 14px;
      margin-right: 8px;
      width: 20px;
  }

  .menu-text {
      font-size: 12px;
      font-weight: bold;
      color: #1A252F;
  }

  .menu-instructions {
      font-size: 9px;
      color: #1A252F;
      font-family: 'Courier New', monospace;
      font-weight: bold;
  }

  /* Game Container Styles */
  .game-container {
      position: relative;
      width: 100%;
      height: 100%;
  }

  .game-info {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 10px;
      font-size: 10px;
      color: #2C3E50;
      font-family: 'Courier New', monospace;
      background: rgba(155, 187, 88, 0.3);
      border-radius: 0 0 4px 4px;
  }

  .level-display,
  .lives-display {
      font-size: 10px;
      color: #2C3E50;
  }

  /* Menu Button in Game Over */
  .menu-btn {
      background: linear-gradient(135deg, #95A5A6, #7F8C8D);
      border: 1px solid #6C7B7D;
      color: #FFFFFF;
      padding: 8px 16px;
      border-radius: 4px;
      cursor: pointer;
      font-size: 10px;
      font-weight: bold;
      margin-top: 10px;
      transition: all 0.2s ease;
      font-family: 'Courier New', monospace;
  }

  .menu-btn:hover {
      background: linear-gradient(135deg, #7F8C8D, #6C7B7D);
      transform: translateY(-1px);
  }

  /* Game Over Overlay */
  .game-over-overlay {
      position: absolute;
      top: 10px;
      left: 10px;
      right: 10px;
      bottom: 30px;
      background: rgba(0, 0, 0, 0.9);
      display: none;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      z-index: 10;
  }

  .game-over-overlay.show {
      display: flex;
  }

  .overlay-content {
      text-align: center;
      color: #FFFFFF;
      font-family: 'Courier New', monospace;
      padding: 20px;
  }

  .overlay-content h3 {
      font-size: 16px;
      margin: 0 0 15px 0;
      color: #FF6B6B;
  }

  .overlay-content p {
      font-size: 12px;
      margin: 8px 0;
      color: #FFFFFF;
  }

  .overlay-content .high-score {
      color: #FFD700;
  }

  .overlay-content .new-record {
      color: #00FF00;
      font-weight: bold;
      display: none;
      animation: pulse 1s infinite;
  }

  .overlay-content .new-record.show {
      display: block;
  }

  .restart-btn {
      background: linear-gradient(135deg, #27AE60, #229954);
      border: 2px solid #1E8449;
      border-radius: 8px;
      color: #FFFFFF;
      font-family: 'Courier New', monospace;
      font-size: 12px;
      font-weight: bold;
      padding: 10px 15px;
      margin-top: 15px;
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  }

  .restart-btn:hover {
      background: linear-gradient(135deg, #229954, #27AE60);
      transform: translateY(-1px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  }

  .restart-btn:active {
      transform: translateY(0);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .restart-btn span {
      margin-right: 5px;
  }

  /* Screen Flash Animation for New Record */
  @keyframes screenFlash {

      0%,
      100% {
          background: #9BBB58;
      }

      50% {
          background: #FFD700;
      }
  }

  .nokia-screen.flash {
      animation: screenFlash 0.3s ease-in-out 3;
  }

  @keyframes pulse {

      0%,
      100% {
          opacity: 1;
      }

      50% {
          opacity: 0.5;
      }
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
      .nokia-phone-container {
          position: fixed;
          top: 50%;
          right: -320px;
          transform: translateY(-50%);
          transition: right 0.4s ease;
          z-index: 1000;
      }

      .nokia-phone-container.open {
          right: 10px;
      }
  }

  .particle-container {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      overflow: hidden;
  }

  .particle {
      position: absolute;
      bottom: -30px;
      animation: abstract-float 20s linear infinite;
      background-color: #2f81f7;
      border-radius: 0;
  }

  @keyframes abstract-float {
      0% {
          bottom: -30px;
          transform: translateX(0) scale(0.5);
          opacity: 0;
      }

      25% {
          transform: translateX(3vw) scale(1);
          opacity: 0.7;
      }

      50% {
          transform: translateX(-3vw) scale(0.8);
          opacity: 0.5;
      }

      75% {
          transform: translateX(2vw) scale(1.2);
          opacity: 0.7;
      }

      100% {
          bottom: 100%;
          transform: translateX(0) scale(0.5);
          opacity: 0;
      }
  }

  .particle:nth-child(1) {
      left: 5%;
      width: 6px;
      height: 6px;
      animation-delay: 0s;
      animation-duration: 12s;
  }

  .particle:nth-child(2) {
      left: 10%;
      width: 8px;
      height: 8px;
      animation-delay: 1.2s;
      animation-duration: 15s;
  }

  .particle:nth-child(3) {
      left: 15%;
      width: 5px;
      height: 5px;
      animation-delay: 2.5s;
      animation-duration: 10s;
  }

  .particle:nth-child(4) {
      left: 20%;
      width: 7px;
      height: 7px;
      animation-delay: 3.1s;
      animation-duration: 18s;
  }

  .particle:nth-child(5) {
      left: 25%;
      width: 9px;
      height: 9px;
      animation-delay: 4.8s;
      animation-duration: 13s;
  }

  .particle:nth-child(6) {
      left: 30%;
      width: 6px;
      height: 6px;
      animation-delay: 5.2s;
      animation-duration: 16s;
  }

  .particle:nth-child(7) {
      left: 35%;
      width: 8px;
      height: 8px;
      animation-delay: 6.7s;
      animation-duration: 11s;
  }

  .particle:nth-child(8) {
      left: 40%;
      width: 5px;
      height: 5px;
      animation-delay: 7.3s;
      animation-duration: 14s;
  }

  .particle:nth-child(9) {
      left: 45%;
      width: 7px;
      height: 7px;
      animation-delay: 8.9s;
      animation-duration: 17s;
  }

  .particle:nth-child(10) {
      left: 50%;
      width: 9px;
      height: 9px;
      animation-delay: 9.4s;
      animation-duration: 12s;
  }

  .particle:nth-child(11) {
      left: 55%;
      width: 6px;
      height: 6px;
      animation-delay: 10.1s;
      animation-duration: 15s;
  }

  .particle:nth-child(12) {
      left: 60%;
      width: 8px;
      height: 8px;
      animation-delay: 11.5s;
      animation-duration: 11s;
  }

  .particle:nth-child(13) {
      left: 65%;
      width: 5px;
      height: 5px;
      animation-delay: 12.8s;
      animation-duration: 16s;
  }

  .particle:nth-child(14) {
      left: 70%;
      width: 7px;
      height: 7px;
      animation-delay: 13.3s;
      animation-duration: 19s;
  }

  .particle:nth-child(15) {
      left: 75%;
      width: 9px;
      height: 9px;
      animation-delay: 14.2s;
      animation-duration: 14s;
  }

  .particle:nth-child(16) {
      left: 80%;
      width: 6px;
      height: 6px;
      animation-delay: 15.7s;
      animation-duration: 17s;
  }

  .particle:nth-child(17) {
      left: 85%;
      width: 8px;
      height: 8px;
      animation-delay: 16.1s;
      animation-duration: 13s;
  }

  .particle:nth-child(18) {
      left: 90%;
      width: 5px;
      height: 5px;
      animation-delay: 17.4s;
      animation-duration: 18s;
  }

  .particle:nth-child(19) {
      left: 95%;
      width: 7px;
      height: 7px;
      animation-delay: 18.8s;
      animation-duration: 12s;
  }

  .particle:nth-child(20) {
      left: 98%;
      width: 9px;
      height: 9px;
      animation-delay: 19.5s;
      animation-duration: 15s;
  }

  .cta-content {
      position: relative;
      z-index: 2;
      text-align: center;
  }

  .cta-content h2 {
      font-size: 2.5rem;
      color: #fff;
      margin-bottom: 15px;
  }

  .cta-content p {
      font-size: 1.1rem;
      color: #ccc;
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
  }



  .cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 15px 30px;
      background-color: transparent;
      color: #00ffff;
      border: 2px solid #00ffff;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  }

  .cta-button:hover {
      color: #000;
      background-color: #00ffff;
      box-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 0 4px 15px rgba(0, 255, 255, 0.3);
      transform: translateY(-2px);
      border-color: #00ffff;
  }

  .whatsapp-icon {
      width: 24px;
      height: 24px;
      fill: currentColor;
      margin-right: 12px;
      transition: fill 0.3s ease;
      /* Added for smooth color change */
  }

  /* Gradient Transition Section */
  .gradient-transition {
      height: 200px;
      background: linear-gradient(to bottom, #111, #000);
      position: relative;
  }

  .plans-carousel {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
  }

  .plans-carousel-track-container {
      position: relative;
      overflow: hidden;
      /* This is crucial to hide the cards that are off-screen */
      /* New width: (280px card * 3) + (30px gap * 3) + 40px peek */
      width: 970px;
      margin: 0 auto;
      /* Center the container */
  }

  .plans-carousel-track {
      padding: 0;
      margin: 0;
      list-style: none;
      position: relative;
      height: 100%;
      transition: transform 0.5s ease-in-out;
      display: flex;
      align-items: center;
      gap: 30px;
      /* Handles spacing between cards */
  }

  .plans-carousel-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: none;
      outline: none;
      /* Remove o contorno do foco */
      color: #ccc;
      /* Cor da seta por padrão */
      cursor: pointer;
      z-index: 10;
      padding: 10px;
      /* Área de clique confortável */
      transition: color 0.3s ease;
  }

  .plans-carousel-button:focus {
      outline: none;
      /* Garante que não haja contorno no foco */
  }

  .plans-carousel-button.is-hidden {
      opacity: 0;
      pointer-events: none;
  }

  .plans-carousel-button--left {
      left: 2vw !important;
      /* Movido para fora do container */
      display: block !important;
      opacity: 1 !important;
      visibility: visible !important;
  }

  .plans-carousel-button--right {
      right: 2vw !important;
      /* Movido para fora do container */
      display: block !important;
      opacity: 1 !important;
      visibility: visible !important;
  }

  .plans-carousel-button svg {
      width: 32px;
      /* Seta maior */
      height: 32px;
      fill: currentColor;
      /* Seta herda a cor do botão */
      display: block;
      /* Garante alinhamento correto */
  }

  .plan-card {
      width: 280px;
      flex-shrink: 0;
      /* Prevents cards from shrinking */
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 40px;
      background-color: #1f1f1f;
      border: 1px solid #333;
      border-radius: 12px;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      height: 580px;
      /* Altura aumentada para acomodar conteúdo */
      min-height: 580px;
      /* Garante altura mínima */
      max-height: 580px;
      /* Limita altura máxima */
      overflow: hidden;
      /* Evita conteúdo vazando */
      position: relative;
      /* Para posicionamento da badge */
  }

  /* Mobile: show exactly one plan card per view */
  @media (max-width: 768px) {

      /* Remove side paddings in plans section so the viewport equals the track width */
      .plans-section {
          padding-left: 0;
          padding-right: 0;
      }

      .plans-carousel {
          padding-left: 0 !important;
          padding-right: 0 !important;
          max-width: none !important;
          width: 100vw !important;
          margin-left: calc(-50vw + 50%) !important;
      }

      .plans-carousel-track-container {
          width: 100vw !important;
          overflow: visible !important;
          margin-left: 0 !important;
          max-width: none !important;
      }

      .plans-carousel-track {
          gap: 5vw !important;
          /* Adjust for larger cards */
          padding-left: 15vw;
          padding-right: 15vw;
          margin-left: 0 !important;
          margin-right: 0 !important;
      }

      .plans-carousel-track .plan-card:first-child {
          margin-left: 0 !important;
      }

      .plans-carousel-track .plan-card {
          width: 70vw !important;
          min-width: 70vw !important;
          flex: 0 0 70vw !important;
          box-sizing: border-box;
          margin-right: 0 !important;
          padding: 25px !important;
      }

      .plans-carousel-button {
          display: none !important;
      }
  }



  .features .fa-check {
      color: #00ffff;
  }

  .features .fa-times {
      color: #555;
  }


  .cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 15px 30px;
      background: transparent;
      border: 2px solid #00ffff;
      color: #00ffff;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1.1rem;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, #00ffff, transparent);
      transition: 0.5s;
      z-index: 0;
  }

  .cta-button:hover {
      color: #000;
      background-color: #00ffff;
      box-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 0 4px 15px rgba(0, 255, 255, 0.3);
      transform: translateY(-2px);
      border-color: #00ffff;
  }

  .cta-button:hover::before {
      left: 100%;
  }

  .cta-button .whatsapp-icon {
      position: relative;
      z-index: 1;
      width: 20px;
      height: 20px;
      fill: currentColor;
  }

  /* "Saiba mais" Link */
  .saiba-mais-link {
      font-size: 1rem;
      /* Alinhado com o resto dos itens */
      color: #00ffff;
      text-decoration: none;
      /* Remove sublinhado padrão */
      cursor: pointer;
      transition: color 0.3s ease;
      display: flex;
      align-items: center;
      background: none;
      border: none;
      padding: 0;
      font-family: inherit;
  }

  .saiba-mais-link i {
      margin-right: 10px;
      /* Espaçamento do ícone */
      font-size: 1.1rem;
  }

  .saiba-mais-link:hover {
      color: #fff;
  }

  /* Terms Modal Styles */
  .modal-overlay-terms {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.85);
      z-index: 2000;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease-in-out;
  }

  .modal-overlay-terms.show {
      opacity: 1;
      pointer-events: auto;
  }

  .modal-container-terms {
      background-color: #1a1a1a;
      border: 1px solid #333;
      border-radius: 12px;
      width: 90%;
      max-width: 800px;
      max-height: 80vh;
      position: relative;
      padding: 30px 40px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
      transform: translateY(-50px);
      transition: transform 0.3s ease-out;
      display: flex;
      flex-direction: column;
  }

  .modal-overlay-terms.show .modal-container-terms {
      transform: translateY(0);
  }

  .close-modal-terms {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 28px;
      font-weight: bold;
      color: #aaa;
      cursor: pointer;
      transition: color 0.2s;
      z-index: 10;
  }

  .close-modal-terms:hover {
      color: #fff;
  }

  .modal-container-terms h2 {
      margin-top: 0;
      padding-bottom: 15px;
      border-bottom: 1px solid #333;
      color: #00ffff;
  }

  .modal-body-terms {
      overflow-y: auto;
      line-height: 1.7;
      color: #ddd;
      padding-right: 15px;
      /* Para não colar a scrollbar no texto */
  }

  .modal-body-terms p {
      margin-bottom: 15px;
  }

  .modal-body-terms strong {
      color: #fff;
  }


  /* Contact section styles moved to contato.css for page-specific use */

  /* Contact container and card styles moved to contato.css for page-specific use */

  /* Contact card content styles moved to contato.css for page-specific use */

  /* Estilos específicos para o chatbot da página index - Design melhorado */
  #n8n-chat-container {
      height: 650px;
      width: 100%;
      max-width: 700px;
      border-radius: 25px;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(10, 15, 25, 0.9) 0%, rgba(20, 25, 35, 0.8) 100%);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 2px solid rgba(0, 255, 255, 0.25);
      box-shadow:
          0 20px 50px rgba(0, 0, 0, 0.4),
          0 0 30px rgba(0, 255, 255, 0.2),
          0 0 60px rgba(0, 255, 255, 0.1),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
      position: relative;
  }

  /* Estilos para o chatbot dentro do container da index */
  #n8n-chat-container .n8n-chat {
      height: 100%;
      border-radius: 20px;
  }

  #n8n-chat-container .chat-layout {
      height: 100%;
      background: transparent;
  }

  #n8n-chat-container .chat-layout .chat-header {
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(12, 12, 12, 0.95));
      border-bottom: 1px solid rgba(0, 255, 255, 0.3);
      border-radius: 20px 20px 0 0;
  }

  #n8n-chat-container .chat-layout .chat-header h1 {
      background: linear-gradient(135deg, #00ffff, #7ffcff);
      -webkit-background-clip: text;
      background-clip: text;
      text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
      color: #7ffcff !important;
  }

  #n8n-chat-container .chat-layout .chat-body {
      background: var(--chat--body--background, #000);
  }

  #n8n-chat-container .chat-layout .chat-footer {
      background: var(--chat--footer--background, #000);
      border-radius: 0 0 20px 20px;
      border-top: 1px solid rgba(0, 255, 255, 0.3);
  }

  #n8n-chat-container .chat-message.chat-message-from-bot {
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  #n8n-chat-container .chat-message.chat-message-from-user {
      box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
      font-weight: 500;
  }

  #n8n-chat-container .chat-inputs textarea {
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji' !important;
      overflow-y: hidden;
  }

  #n8n-chat-container .chat-inputs textarea:focus {
      box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
      text-shadow: none;
  }

  #n8n-chat-container .chat-inputs textarea::placeholder {
      color: rgba(207, 231, 231, 0.6);
  }

  #n8n-chat-container .chat-input-send-button:hover,
  #n8n-chat-container .chat-input-file-button:hover {
      transform: scale(1.1);
      transition: transform 0.2s ease;
  }

  /* Scrollbar styling específico para o chatbot da index */
  #n8n-chat-container .chat-layout .chat-body::-webkit-scrollbar {
      width: 8px;
  }

  #n8n-chat-container .chat-layout .chat-body::-webkit-scrollbar-track {
      background: rgba(12, 12, 12, 0.5);
      border-radius: 4px;
  }

  #n8n-chat-container .chat-layout .chat-body::-webkit-scrollbar-thumb {
      background: linear-gradient(135deg, #00ffff, #7ffcff);
      border-radius: 4px;
  }

  #n8n-chat-container .chat-layout .chat-body::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(135deg, #00e6e6, #66f9ff);
  }

  /* Loading animation enhancement para o chatbot da index */
  #n8n-chat-container .chat-message-typing .chat-message-typing-circle {
      background: linear-gradient(135deg, #00ffff, #7ffcff);
      box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  }

  /* Garantir que emojis funcionem corretamente no chatbot da index */
  #n8n-chat-container .chat-message-markdown,
  #n8n-chat-container .chat-message-markdown *,
  #n8n-chat-container .n8n-chat .chat-message-markdown,
  #n8n-chat-container .n8n-chat .chat-message-markdown * {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji' !important;
  }

  #n8n-chat-container .emoji,
  #n8n-chat-container .chat-message-markdown .emoji,
  #n8n-chat-container .n8n-chat .emoji,
  #n8n-chat-container .n8n-chat .chat-message-markdown .emoji {
      font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji' !important;
      color: initial !important;
      text-shadow: none !important;
      filter: none !important;
  }

  /* Estilos da coluna de informações (fora do painel) */
  .contact-info-standalone {
      color: #fff;
  }

  .contact-info-standalone .section-title {
      text-align: left;
  }

  .contact-info-standalone .section-title::after {
      margin-left: 0;
      margin-right: auto;
  }

  .contact-info-standalone h3 {
      font-size: 2rem;
      color: #00d9ff;
      margin-top: 1rem;
      margin-bottom: 1rem;
  }

  .contact-info-standalone p {
      color: #ccc;
      line-height: 1.6;
      margin-bottom: 2rem;
  }

  .info-item-modern {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 1rem;
  }

  .info-item-modern i {
      font-size: 1.5rem;
      color: #00d9ff;
  }

  /* Painel do formulário */
  /* Painel do formulário */
  .contact-form-panel {
      background: rgba(14, 23, 44, 0.55);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 1px solid rgba(0, 255, 213, 0.2);
      border-radius: 20px;
      padding: 40px 40px 40px 25px;
      /* Ajusta o padding esquerdo para simular o deslocamento */
      box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  }

  /* Contact form and neon button styles moved to contato.css for page-specific use */

  /* Contact form layout and styling moved to contato.css for page-specific use */

  /* Contact section responsive styles moved to contato.css for page-specific use */

  /* Contact info standalone styles moved to contato.css for page-specific use */


  /* Lab visual styles moved to nossa-empresa.css for page-specific use */

  /* Pipeline */
  /* Pipeline styles moved to o-que-fazemos.css for page-specific use */

  /* Plans section styles moved to index.css for index-specific use */

  /* Plans section styles moved to index.css for index-specific use */

  /* fadeInDown animation moved to o-que-fazemos.css */

  /* Pipeline step styles moved to o-que-fazemos.css */

  /* KPIs */
  .kpis {
      max-width: 1100px;
      margin: 10px auto 24px;
      padding: 10px 20px 0;
      padding: 0 20px;
  }

  .tool-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
  }

  .tool {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(12, 12, 12, 0.9);
      border: 1px solid #1b2a2a;
      border-radius: 10px;
      padding: 12px 14px;
      color: #eaffff;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .tool i {
      color: #7ffcff;
  }

  .tool:hover {
      border-color: rgba(0, 255, 255, 0.45);
      box-shadow: 0 0 16px rgba(0, 255, 255, 0.16);
      transform: translateY(-2px);
  }

  /* Interactivity for tools */
  .tools .tool {
      cursor: pointer;
  }

  .tools .tool:focus {
      outline: 2px solid rgba(0, 255, 255, 0.45);
      outline-offset: 2px;
  }

  @media (max-width: 640px) {
      .tool-grid {
          grid-template-columns: 1fr 1fr;
      }
  }

  /* CTA reuse */
  .cta-section {
      padding: 36px 20px;
  }

  /* Tools Modal (scoped) */
  .tools-modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 10000;
  }

  .tools-modal {
      width: min(560px, calc(100% - 40px));
      margin: 10vh auto;
      background: rgba(10, 10, 10, 0.96);
      border: 1px solid rgba(0, 255, 255, 0.25);
      border-radius: 12px;
      box-shadow: 0 0 24px rgba(0, 255, 255, 0.18);
      color: #eaffff;
  }

  .tools-modal__wrapper {
      padding: 20px;
  }

  .tools-modal__header {
      margin-bottom: 8px;
  }

  .tools-modal__title {
      margin: 0;
      font-size: 1.4rem;
      text-shadow: 0 0 8px rgba(0, 255, 255, 0.2);
  }

  .tools-modal__body {
      color: #cfe7e7;
      line-height: 1.6;
  }

  .tools-modal__close {
      position: absolute;
      right: 18px;
      top: 10px;
      cursor: pointer;
      font-size: 26px;
      color: #7ffcff;
  }

  /* WhatsApp Floating Button */
  .whatsapp-float {
      position: fixed;
      bottom: 35px;
      left: 35px;
      width: 60px;
      height: 60px;
      background-color: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
      transition: all 0.3s ease;
      z-index: 1000;
      animation: whatsapp-pulse 2s infinite, whatsapp-bounce 2.5s infinite;
      overflow: visible;
  }

  .whatsapp-float::before,
  .whatsapp-float::after {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      width: 70px;
      height: 70px;
      background: radial-gradient(circle, rgba(37, 211, 102, 0.65) 0%, rgba(37, 211, 102, 0.38) 70%, rgba(37, 211, 102, 0.15) 100%);
      border-radius: 50%;
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.96;
      pointer-events: none;
      z-index: -1;
  }

  .whatsapp-float::before {
      animation: whatsapp-ripple 2.8s infinite cubic-bezier(0.4, 0, 0.2, 1);
  }

  .whatsapp-float::after {
      animation: whatsapp-ripple 2.8s infinite cubic-bezier(0.4, 0, 0.2, 1);
      animation-delay: 1.4s;
  }


  .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 0 24px 8px #25d366, 0 6px 20px rgba(37, 211, 102, 0.7);
      background-color: #128c7e;
      filter: brightness(1.1) drop-shadow(0 0 12px #25d366);
  }

  .whatsapp-float i {
      color: white;
      font-size: 28px;
      transition: transform 0.3s ease;
  }

  .whatsapp-float:hover i {
      transform: scale(1.1);
  }

  /* Animação de pulso para o botão do WhatsApp */
  @keyframes whatsapp-bounce {

      0%,
      100% {
          transform: translateY(0);
      }

      20% {
          transform: translateY(-8px);
      }

      40% {
          transform: translateY(0);
      }

      60% {
          transform: translateY(-4px);
      }

      80% {
          transform: translateY(0);
      }
  }

  @keyframes whatsapp-ripple {
      0% {
          transform: translate(-50%, -50%) scale(1);
          opacity: 0.96;
      }

      60% {
          opacity: 0.55;
      }

      100% {
          transform: translate(-50%, -50%) scale(1.7);
          opacity: 0;
      }
  }

  @keyframes whatsapp-pulse {
      0% {
          box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
      }

      50% {
          box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
      }

      100% {
          box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0);
      }
  }

  /* Responsividade para dispositivos móveis */
  @media (max-width: 768px) {
      .whatsapp-float {
          width: 55px;
          height: 55px;
          bottom: 30px;
          left: 30px;
      }

      .whatsapp-float i {
          font-size: 24px;
      }
  }