 /* Menu Mobile- Animação */
.animate-fadeInDown {
    animation: slideInFade 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slideInFade {
    0% {
        opacity: 0;
        transform: translateY(-15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilo Menu Mobile */
#mobile-menu {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.dark #mobile-menu {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

#mobile-menu a {
    transition: transform 0.2s ease, background-color 0.3s ease;
}

#mobile-menu a:hover {
    transform: translateX(5px);
    background-color: rgba(14, 165, 233, 0.1) !important;
}

.dark #mobile-menu a:hover {
    background-color: rgba(14, 165, 233, 0.2) !important;
}

  
  
  /* Seção Serviços Realizados */
.services-section {
  padding: 100px 20px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.services-left {
  flex: 1;
  min-width: 300px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

.services-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.services-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.6rem;
  color: #0077cc;
  margin-bottom: 2rem;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.services-img {
  width: 100%;
  max-width: 480px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 119, 204, 0.15);
  border: 1px solid #e0e8f5;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.services-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 119, 204, 0.25);
}

/* Lado Direito: Lista de Serviços */
.services-right {
  flex: 1;
  min-width: 300px;
}

.services-list {
  list-style: none;
}

.service-item {
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.7s ease;
}

.service-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.service-item:last-child {
  margin-bottom: 0;
}

.service-number {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #0077cc;
  color: white;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  margin-right: 12px;
  box-shadow: 0 0 15px rgba(0, 119, 204, 0.3);
}

.service-item h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  color: #0077cc;
  display: inline;
  margin: 0;
}

.service-item p {
  font-family: 'Roboto', sans-serif;
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 0.5rem;
  padding-left: 48px;
}


        /* WhatsApp - Botão fixo à esquerda */
        #div-fixa {
            position: fixed;
            bottom: 30px;
            left: 30px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 998;
            transition: transform 0.3s ease;
        }

        #div-fixa img {
            width: 50px;
            height: 50px;
            border-radius: 20%;
        }

        .flutuar {
            animation-name: flutuar;
            animation-duration: 0.7s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            animation-timing-function: ease-in-out;
        }

        @keyframes flutuar {
            from {
                transform: translate3d(0, 0, 0);
                filter: brightness(80%);
            }
            to {
                transform: translate3d(0, -15px, 0);
                filter: brightness(150%);
            }
        }

        /* Botão Voltar ao Topo (direita) */
        .btn-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #0077cc, #005ea6);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(0, 119, 204, 0.4);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            text-decoration: none;
        }

        .btn-top:hover {
            background: linear-gradient(135deg, #0066b2, #004a80);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 119, 204, 0.5);
        }

        .btn-top i {
            transition: transform 0.3s ease;
        }

        .btn-top:hover i {
            transform: translateY(-1px);
        }

        .btn-top.show {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Section */
        .hero-bg {
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./img/deposito.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .dark .hero-bg {
            background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('./img/deposito.png');
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .dark .service-card:hover {
            box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1);
        }
        
        .testimonial-card {
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: scale(1.02);
        }
        
        .toggle-checkbox:checked {
            right: 0;
            border-color: #68D391;
        }
        
        .toggle-checkbox:checked + .toggle-label {
            background-color: #68D391;
        }

        /* Responsividade */
@media (max-width: 900px) {
     .services-container {
    flex-direction: column;
    text-align: center;
  }

  .services-title {
    font-size: 2.2rem;
  }

  .services-left, .services-right {
    text-align: center;
  }

  .service-item p {
    padding-left: 0;
  }
}
/* Responsividade */
@media (max-width: 485px) {
   
}
