 /* === SECTION SOCIAL MEDIA === */
    .social-media-section {
      padding: 120px 0;
      background: #fff;
    }

    .social-media-section .section-header h2 {
      font-size: 2.75rem;
      color: #222;
      margin-bottom: 8px;
    }

    .social-media-section .subtitle {
      font-size: 1.15rem;
      color: #555;
      margin-bottom: 40px;
    }

    /* === GRID === */
    .cards-grid {
      display: grid;
      gap: 30px;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      margin-bottom: 50px;
    }

    /* === CARD === */
    .service-card {
      background: #fff;
      border-radius: 18px;
      padding: 28px 22px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      position: relative;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      border-top: 4px solid #fd910d;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .service-card .icon {
      font-size: 2.5rem;
      color: #ff7a18;
      margin-bottom: 16px;
      transition: transform 0.35s ease;
    }

    .service-card:hover .icon {
      transform: scale(1.15) rotate(-8deg);
    }

    .service-card h3 {
      font-size: 1.4rem;
      color: #222;
      margin-bottom: 12px;
      font-weight: 600;
    }

    .service-card p {
      font-size: 1rem;
      color: #444;
      line-height: 1.52;
    }

    /* === CTA BUTTON === */
    .cta .btn.primary-btn {
      background: #ff7a18;
      color: #fff;
      padding: 14px 32px;
      border-radius: 50px;
      font-size: 1.05rem;
      font-weight: 600;
      transition: background 0.4s ease, transform 0.3s ease;
    }

    .cta .btn.primary-btn:hover {
      background: #fd910d;
      transform: translateY(-4px);
    }

    /* === RESPONSIVE TEXT CENTER === */
    .text-center {
      text-align: center;
    }


    .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;
      }
    }