  /* =========================
   WHATSAPP
   ========================= */
    .whatsapp-btn,
    .whatsapp-btn i {
      color: #fff !important;
    }

    /* =========================
   CONTAINER PRINCIPAL
   ========================= */
    .informatica-tabs {
      max-width: 1100px;
      margin: 100px auto 80px auto;
      padding: 60px 45px;
      background: #ffffff;
      border-radius: 26px;
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
      position: relative;
      z-index: 1;
    }

    /* =========================
   TÍTULO
   ========================= */
    .informatica-tabs h2 {
      text-align: center;
      margin-bottom: 50px;
      font-size: 36px;
      font-weight: 500;
      color: #111;
      position: relative;
    }

    .informatica-tabs h2::before {
      content: "\f085";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      display: block;
      font-size: 42px;
      color: #ff7a18;
      margin-bottom: 12px;
    }

    /* =========================
   TABS
   ========================= */
    .informatica-tabs .tabs {
      display: flex;
      justify-content: center;
      gap: 22px;
      flex-wrap: wrap;
      margin-bottom: 50px;
    }

    .informatica-tabs .tab-btn {
      padding: 15px 28px;
      border: none;
      background: #ffffff;
      cursor: pointer;
      font-weight: 600;
      font-size: 15px;
      color: #444;
      border-radius: 40px;
      transition: all 0.35s ease;
      display: flex;
      align-items: center;
      gap: 10px;
      position: relative;
    }

    .btn-primary {
      color: #fff;
      background-color: #ff7a18;
      border-color: #ff5e00;
    }

    .informatica-tabs .tab-btn::before {
      content: "\f7d9";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      font-size: 16px;
    }

    .informatica-tabs .tab-btn:hover {
      background: #fff2e8;
      color: #ff7a18;
      transform: translateY(-2px);
    }

    .informatica-tabs .tab-btn.active {
      background: linear-gradient(135deg, #ff7a18, #ff9f45);
      color: #ffffff;
      box-shadow: 0 12px 30px rgba(255, 122, 24, 0.35);
    }

    /* =========================
   CONTEÚDO DAS ABAS
   ========================= */
    .informatica-tabs .tab-content {
      display: none;
      text-align: center;
      animation: fadeScale 0.45s ease forwards;
    }

    .informatica-tabs .tab-content.active {
      display: block;
    }

    .informatica-tabs .tab-content h3 {
      font-size: 28px;
      margin-bottom: 18px;
      font-weight: 700;
      color: #222;
    }

    .informatica-tabs .tab-content p {
      max-width: 720px;
      margin: 0 auto;
      font-size: 16px;
      line-height: 1.7;
      color: #555;
    }

    .informatica-tabs .tab-content .btn {
      margin-top: 35px;
      padding: 14px 36px;
      border-radius: 40px;
    }

    /* =========================
   INFO CARDS
   ========================= */
    .informatica-tabs .info-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      margin-top: 45px;
    }

    .informatica-tabs .info-card {
      background: #ffffff;
      border-radius: 26px;
      padding: 34px;
      box-shadow: 0 22px 45px rgba(0, 0, 0, 0.08);
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
    }

    .informatica-tabs .info-card::after {
      content: "\f2db";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      position: absolute;
      bottom: -20px;
      right: -10px;
      font-size: 95px;
      color: rgba(255, 122, 24, 0.08);
      pointer-events: none;
      transition: 0.4s ease;
    }

    .informatica-tabs .info-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
    }

    .informatica-tabs .info-card:hover::after {
      transform: scale(1.1);
    }

    .informatica-tabs .info-card h4 {
      font-size: 21px;
      font-weight: 700;
      margin-bottom: 14px;
      color: #ff7a18;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .informatica-tabs .info-card h4::before {
      content: "\f0c0";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      font-size: 18px;
    }

    .informatica-tabs .info-card p {
      font-size: 15px;
      line-height: 1.7;
      color: #555;
    }

    /* =========================
   ANIMAÇÃO
   ========================= */
    @keyframes fadeScale {
      from {
        opacity: 0;
        transform: scale(0.96);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* =========================
   RESPONSIVO
   ========================= */
    @media (max-width: 768px) {
      .informatica-tabs {
        padding: 45px 25px;
      }

      .informatica-tabs h2 {
        font-size: 30px;
      }

      .informatica-tabs .info-cards {
        grid-template-columns: 1fr;
      }
    }

    /* TAB 1 */
    .informatica-tabs .tab-btn:nth-child(1)::before {
      content: "\f233";
      /* servidor */
    }

    /* TAB 2 */
    .informatica-tabs .tab-btn:nth-child(2)::before {
      content: "\f0c2";
      /* cloud */
    }

    /* TAB 3 */
    .informatica-tabs .tab-btn:nth-child(3)::before {
      content: "\f121";
      /* código */
    }

    /* TAB 4 */
    .informatica-tabs .tab-btn:nth-child(4)::before {
      content: "\f3ed";
      /* segurança */
    }

    /* CARD 1 */
    .informatica-tabs .info-card:nth-child(1)::after {
      content: "\f233";
      /* servidor */
    }

    /* CARD 2 */
    .informatica-tabs .info-card:nth-child(2)::after {
      content: "\f0ac";
      /* rede */
    }

    /* CARD 3 */
    .informatica-tabs .info-card:nth-child(3)::after {
      content: "\f013";
      /* engrenagem */
    }

    /* CARD 4 */
    .informatica-tabs .info-card:nth-child(4)::after {
      content: "\f3ed";
      /* escudo */
    }

    .informatica-tabs .info-card:nth-child(1) h4::before {
      content: "\f233";
    }

    .informatica-tabs .info-card:nth-child(2) h4::before {
      content: "\f0ac";
    }

    .informatica-tabs .info-card:nth-child(3) h4::before {
      content: "\f013";
    }

    .informatica-tabs .info-card:nth-child(4) h4::before {
      content: "\f3ed";
    }

  /* BOTÃO LARANJA - FORÇANDO HOVER */
.btn-primary {
  color: #fff;
  background-color: #ff7a18;
  border-color: #ff7a18;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #ff5e00 !important;
  border-color: #ff5e00 !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(255, 122, 24, 0.35);
}

    .footer {
      background: #000000;
      color: #cbd5e1;
      padding: 60px 20px;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
    }

    .footer-col h4 {
      color: #ffffff;
      margin-bottom: 15px;
      font-size: 18px;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
    }

    .footer-col ul li {
      margin-bottom: 10px;
      font-size: 14px;
    }

    .footer-col ul li a {
      color: #cbd5e1;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-col ul li a:hover {
      color: #f88538;
    }

    .footer-logo {
      max-width: 160px;
      margin-bottom: 20px;
    }

    .footer-social a {
      font-size: 20px;
      margin-right: 12px;
      color: #cbd5e1;
      transition: color 0.3s, transform 0.3s;
    }

    .footer-social a:hover {
      color: #f88538;
      transform: translateY(-3px);
    }

    .footer-contact li {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-bottom {
      background: #020617;
      color: #94a3b8;
      text-align: center;
      padding: 15px;
      font-size: 14px;
    }

    /* =========================
           ANIMAÇÃO
           ========================= */

    @keyframes fadeScale {
      from {
        opacity: 0;
        transform: scale(0.96);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* =========================
           RESPONSIVO
           ========================= */

    @media (max-width: 768px) {
      .informatica-tabs {
        padding: 40px 25px;
      }

      .informatica-tabs h2 {
        font-size: 26px;
      }

      .informatica-tabs .tab-content h3 {
        font-size: 22px;
      }

      .informatica-tabs .info-cards {
        grid-template-columns: 1fr;
      }
    }