    
    @keyframes slide-in {
        from {
          transform: translateY(+100%);
          opacity: 0.25;
        }
        to {
          transform: translateY(0%);
          opacity: 1;
        }
      }
  
      .business-item {
        animation: slide-in 1000ms ease-out;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
      }
  
      .business-item:nth-of-type(1) {
        animation-delay: 0s;
      }
  
      .business-item:nth-of-type(2) {
        animation-delay: 0.2s;
      }
  
      .business-item:nth-of-type(3) {
        animation-delay: 0.4s;
      }
  
      .business-item:nth-of-type(4) {
        animation-delay: 0.6s;
      }
  
      @keyframes fade-in {
        from {
          opacity: 0;
          transform: translateY(50px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
  
      @keyframes scale-in {
        from {
          transform: scale(0.8);
          opacity: 0;
        }
        to {
          transform: scale(1);
          opacity: 1;
        }
      }
  
      .animate-on-scroll {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease-out;
      }
  
      .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
      }
  
      .section-empresa {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        position: relative;
        overflow: hidden;
      }
  
      .content-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 15px;
        display: flex;
        align-items: center;
        gap: 30px;
      }
  
      .leftCol, .rightCol {
        flex: 1;
        min-width: 0;
      }
  
      .empresa-content {
        text-align: center;
      }
  
      .section-description {
        max-width: 800px;
        margin: 0 auto 25px;
        text-align: center;
        line-height: 1.6;
        color: #666;
      }
  
      .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        margin-top: 25px;
      }
  
      .feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      }
  
      .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
      }
  
      .feature-content h3 {
        font-size: 1.1em;
        margin-bottom: 5px;
      }
  
      .feature-content p {
        font-size: 0.85em;
        color: #666;
      }
  
      .image-wrapper {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        margin-bottom: 30px;
      }
  
      .empresa-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
      }
  
      .image-wrapper:hover .empresa-image {
        transform: scale(1.05);
      }
  
      .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(0,64,128,0.7), rgba(0,102,204,0.4));
      }
  
      .experience-badge {
        position: absolute;
        top: 30px;
        right: 30px;
        background: white;
        padding: 20px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        transition: transform 0.3s ease;
      }
  
      .experience-badge:hover {
        transform: translateY(-5px);
      }
  
      .experience-badge .years {
        font-size: 36px;
        font-weight: bold;
        color: #004080;
        display: block;
        line-height: 1;
      }
  
      .experience-badge .text {
        font-size: 14px;
        color: #666;
        margin-top: 5px;
        display: block;
      }
  
      .stats-container {
        position: absolute;
        bottom: 30px;
        left: 30px;
        right: 30px;
        display: flex;
        justify-content: space-between;
        gap: 20px;
      }
  
      .stat-item {
        background: rgba(255, 255, 255, 0.95);
        padding: 15px 25px;
        border-radius: 12px;
        text-align: center;
        flex: 1;
        transition: transform 0.3s ease;
      }
  
      .stat-item:hover {
        transform: translateY(-5px);
      }
  
      .stat-number {
        font-size: 28px;
        font-weight: bold;
        color: #004080;
        display: block;
        line-height: 1;
      }
  
      .stat-text {
        font-size: 13px;
        color: #666;
        margin-top: 5px;
        display: block;
      }
  
      .certifications {
        background: white;
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
      }
  
      .certifications h4 {
        font-size: 18px;
        color: #333;
        margin-bottom: 20px;
        text-align: center;
        position: relative;
      }
  
      .certifications h4:after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: #004080;
      }
  
      .cert-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
      }
  
      .cert-item {
        background: #f8f9fa;
        padding: 15px;
        border-radius: 10px;
        text-align: center;
        transition: all 0.3s ease;
      }
  
      .cert-item:hover {
        background: #004080;
        transform: translateY(-5px);
      }
  
      .cert-item:hover i,
      .cert-item:hover span {
        color: white;
      }
  
      .cert-item i {
        font-size: 24px;
        color: #004080;
        margin-bottom: 8px;
        display: block;
        transition: color 0.3s ease;
      }
  
      .cert-item span {
        font-size: 14px;
        color: #666;
        display: block;
        transition: color 0.3s ease;
      }
  
      @media (max-width: 768px) {
        .stats-container {
          flex-direction: column;
          gap: 10px;
        }
  
        .cert-grid {
          grid-template-columns: repeat(2, 1fr);
        }
  
        .experience-badge {
          position: relative;
          top: auto;
          right: auto;
          margin: 0 auto;
          width: 90%;
        }
  
        .experience-badge .years {
          font-size: 28px;
        }
  
        .experience-badge .text {
          font-size: 12px;
        }
  
        .rightCol {
          padding: 20px;
        }
  
        .stat-item {
          width: 100%;
          padding: 15px;
        }
  
        .stat-number {
          font-size: 2.5em;
        }
  
        .plus, .percent {
          font-size: 1.8em;
        }
  
        .stat-text {
          font-size: 1.2em;
        }
      }
  
      .section-clientes {
        padding: 80px 0;
        background: #fff;
      }
  
      .clientes-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
      }
  
      .cliente-card {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        text-align: center;
        transition: transform 0.3s ease;
      }
  
      .cliente-card:hover {
        transform: translateY(-5px);
      }
  
      .section-contato {
        padding: 50px 0;
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
      }
  
      .contato-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
      }
  
      .contato-info {
        padding: 30px;
        background: rgba(255,255,255,0.1);
        border-radius: 10px;
        backdrop-filter: blur(10px);
      }
  
      .contato-form {
        padding: 30px;
        background: white;
        border-radius: 10px;
        color: #333;
      }
  
      .section-title {
        text-align: center;
        margin-bottom: 10px;
        font-size: 2.2em;
        color: #333;
      }
  
      .section-contato .section-title {
        color: white;
      }
  
      @media (max-width: 768px) {
        .content-container {
          flex-direction: column;
        }
  
        .business-container {
          grid-template-columns: 1fr;
        }
  
        .features-grid {
          grid-template-columns: 1fr;
        }
  
        .business-item {
          max-width: 100%;
        }
      }
  
      .home-highlight {
        position: relative;
        height: 70vh;
        background: #004080;
        overflow: hidden;
        padding-top: 80px;
        margin-top: 0;
      }
  
      .banner-slide {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
      }
  
      .banner-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4;
        transition: opacity 0.3s ease;
      }
  
      .banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(0,64,128,0.9), rgba(0,102,204,0.8));
        z-index: 1;
      }
  
      .banner-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: white;
        max-width: 800px;
        padding: 0 20px;
        animation: fadeInUp 1s ease;
        margin: 0 auto;
      }
  
      .banner-content h1 {
        font-size: clamp(2em, 5vw, 3.5em);
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
      }
  
      .banner-content p {
        font-size: clamp(1em, 2vw, 1.2em);
        margin-bottom: 30px;
        line-height: 1.6;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }
  
      .banner-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 10px;
      }
  
      .banner-btn {
        padding: clamp(12px, 2vw, 15px) clamp(20px, 3vw, 30px);
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        white-space: nowrap;
      }
  
      .banner-btn.primary {
        background: #0066cc;
        color: white;
      }
  
      .banner-btn.secondary {
        background: rgba(255,255,255,0.1);
        color: white;
        border: 2px solid white;
      }
  
      .banner-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
      }
  
      .home-business {
        padding: 40px 0;
        background: #f8f9fa;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
      }
  
      .section-header {
        text-align: center;
        margin-bottom: 30px;
      }
  
      .section-badge {
        display: inline-block;
        padding: 8px 16px;
        background: linear-gradient(45deg, #004080, #0066cc);
        color: white;
        border-radius: 20px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
      }
  
      .section-title {
        font-size: 2.2em;
        color: #333;
        margin-bottom: 10px;
      }
  
      .section-divider {
        width: 60px;
        height: 3px;
        background: linear-gradient(45deg, #004080, #0066cc);
        margin: 0 auto;
      }
  
      .business-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 0 15px;
        max-width: 1200px;
        margin: 0 auto;
      }
  
      .business-item {
        flex: 0 1 250px;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
      }
  
      .business-item a {
        text-decoration: none;
        display: block;
        height: 100%;
      }
  
      .business-image {
        position: relative;
        height: 160px;
        overflow: hidden;
      }
  
      .business-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }
  
      .business-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 120px;
      }
  
      .business-content i {
        font-size: 2em;
        color: #0066cc;
        margin-bottom: 10px;
      }
  
      .business-content h3 {
        font-size: 1.2em;
        color: #333;
        margin: 0 0 8px 0;
        text-align: center;
      }
  
      .business-content p {
        color: #666;
        font-size: 0.9em;
        line-height: 1.4;
        margin: 0;
        text-align: center;
      }
  
      .business-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
      }
  
      .section-empresa::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('imagem/pattern.png') repeat;
        opacity: 0.05;
      }
  
      .client-item {
        background: white;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.5s ease;
        transform: translateY(0);
      }
  
      .client-item:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
      }
  
      .section-contato {
        background: linear-gradient(135deg, #004080 0%, #0066cc 100%);
        position: relative;
        overflow: hidden;
      }
  
      .contato-form {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
      }
  
      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 2px solid #e1e1e1;
        border-radius: 10px;
        transition: all 0.3s ease;
        font-size: 16px;
      }
  
      .form-group input:focus,
      .form-group textarea:focus {
        border-color: #004080;
        box-shadow: 0 0 0 3px rgba(0,64,128,0.1);
      }
  
      #enviar-btn {
        background: linear-gradient(45deg, #004080, #0066cc);
        color: white;
        padding: 15px 30px;
        border: none;
        border-radius: 30px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
      }
  
      #enviar-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      }
  
      .section-contato .social-media {
        margin-top: 30px;
        padding: 25px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(10px);
      }
  
      .section-contato .social-media h3 {
        color: #0066cc;
        font-size: 1.3em;
        margin-bottom: 20px;
        text-align: center;
        position: relative;
      }
  
      .section-contato .social-media h3:after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: #0066cc;
      }
  
      .section-contato .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
      }
  
      .section-contato .social-icon {
        width: 50px;
        height: 50px;
        background: #0066cc;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5em;
        text-decoration: none;
        transition: all 0.3s ease;
      }
  
      .section-contato .social-icon:hover {
        background: #0052a3;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
      }
  
      @media (max-width: 768px) {
        .section-contato .social-media {
          margin-top: 25px;
          padding: 20px;
        }
  
        .section-contato .social-icon {
          width: 45px;
          height: 45px;
          font-size: 1.3em;
        }
      }
  
      .section-empresa {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        position: relative;
        overflow: hidden;
      }
  
      .section-header-wrapper {
        text-align: center;
        margin-bottom: 40px;
      }
  
      .section-badge {
        background: linear-gradient(45deg, #004080, #0066cc);
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 0.9em;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: inline-block;
        margin-bottom: 15px;
        box-shadow: 0 4px 15px rgba(0, 64, 128, 0.2);
      }
  
      .section-title {
        font-size: 2.5em;
        color: #1a1a1a;
        margin-bottom: 20px;
        font-weight: 700;
        line-height: 1.2;
      }
  
      .section-divider {
        width: 80px;
        height: 4px;
        background: linear-gradient(45deg, #004080, #0066cc);
        margin: 0 auto;
        border-radius: 2px;
      }
  
      .section-description {
        font-size: 1.1em;
        line-height: 1.8;
        color: #555;
        margin-bottom: 40px;
      }
  
      .glass-effect {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      }
  
      .gradient-overlay {
        background: linear-gradient(45deg, rgba(0, 64, 128, 0.8), rgba(0, 102, 204, 0.6));
      }
  
      .feature-item {
        background: white;
        padding: 25px;
        border-radius: 15px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }
  
      .feature-item.hover-effect:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      }
  
      .feature-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(45deg, #004080, #0066cc);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        position: relative;
      }
  
      .feature-icon i {
        color: white;
        font-size: 24px;
      }
  
      .feature-icon.pulse::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: inherit;
        border-radius: 50%;
        z-index: -1;
        animation: pulse 2s infinite;
      }
  
      @keyframes pulse {
        0% {
          transform: scale(1);
          opacity: 0.8;
        }
        70% {
          transform: scale(1.1);
          opacity: 0;
        }
        100% {
          transform: scale(1);
          opacity: 0;
        }
      }
  
      .experience-badge.floating {
        animation: float 3s ease-in-out infinite;
      }
  
      @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
      }
  
      .badge-content {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
  
      .years, .stat-number {
        font-size: 2.5em;
        font-weight: 700;
        color: #004080;
        line-height: 1;
      }
  
      .plus, .percent {
        color: #0066cc;
        font-weight: 600;
        font-size: 1.2em;
      }
  
      .certifications {
        padding: 30px;
        border-radius: 20px;
        margin-top: 30px;
      }
  
      .cert-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 20px;
      }
  
      .cert-item {
        padding: 20px;
        border-radius: 12px;
        text-align: center;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.7);
      }
  
      .cert-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(45deg, #004080, #0066cc);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
      }
  
      .cert-icon i {
        color: white;
        font-size: 20px;
      }
  
      .cert-item span {
        color: #333;
        font-weight: 500;
      }
  
      @media (max-width: 768px) {
        .section-empresa {
          padding: 60px 0;
        }
  
        .section-title {
          font-size: 2em;
        }
  
        .cert-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
  
      @media (max-width: 480px) {
        .cert-grid {
          grid-template-columns: 1fr;
        }
      }
  
      @media (max-width: 1100px) {
        .business-container {
          justify-content: center;
        }
        
        .business-item {
          flex: 0 1 calc(50% - 20px);
          max-width: 300px;
        }
      }
  
      @media (max-width: 768px) {
        .business-item {
          flex: 0 1 100%;
          max-width: 280px;
        }
      }
  
      @media (min-width: 993px) {
        .home-highlight {
          padding-top: 100px;
        }
      }
  
      @media (max-width: 992px) {
        .home-highlight {
          padding-top: 80px;
        }
      }
  
      @media (max-width: 768px) {
        .home-highlight {
          padding-top: 70px;
        }
      }
  
      .home-highlight {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
      }
  
      .banner-content {
        padding-top: 60px;
      }