 /* Estilos personalizados para o carrossel da seção de serviços */
 .servico-carrossel {
     animation: scroll 50s linear infinite;
     width: max-content;
 }

 .servico-item {
     transition: filter 0.3s ease, transform 0.3s ease;
     filter: grayscale(0);
 }

 .servico-carrossel:hover {
     animation-play-state: paused;
 }

 .servico-carrossel:hover .servico-item {
     filter: grayscale(100%) brightness(0.7);
 }

 .servico-carrossel:hover .servico-item:hover {
     filter: grayscale(0);
     transform: scale(1.05);
     z-index: 10;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
 }

 @keyframes scroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 /* Estilos base para os botões */
 .btn-primary,
 .btn-whatsapp {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 0.8rem 1.8rem;
     border-radius: 0.375rem;
     /* 6px */
     font-weight: 600;
     font-size: 1rem;
     line-height: 1.5;
     text-align: center;
     text-decoration: none;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
     transform: translateY(0);
     border: 2px solid transparent;
 }

 /* Botão Primário */
 .btn-primary {
     background-color: #3B82F6;
     /* Azul Tailwind */
     color: white;
 }

 .btn-primary:hover {
     background-color: #2563EB;
     /* Azul mais escuro */
     transform: translateY(-2px);
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
 }

 .btn-primary:active {
     transform: translateY(0);
 }

 .btn-primary:focus {
     outline: none;
     border-color: #93C5FD;
     box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
 }

 /* Botão WhatsApp */
 .btn-whatsapp {
     background-color: #25D366;
     /* Verde WhatsApp */
     color: white;
 }

 .btn-whatsapp:hover {
     background-color: #067b23;
     /* Verde mais escuro */
     transform: translateY(-2px);
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
 }

 .btn-whatsapp:active {
     transform: translateY(0);
 }

 .btn-whatsapp:focus {
     outline: none;
     border-color: #DCF8C6;
     box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.5);
 }

 /* Efeito de pulso no ícone do WhatsApp */
 .btn-whatsapp:hover i {
     animation: pulse 1.5s infinite;
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.1);
     }

     100% {
         transform: scale(1);
     }
 }

 /* Responsividade */
 @media (max-width: 640px) {

     .btn-primary,
     .btn-whatsapp {
         width: 100%;
         padding: 0.75rem 1.5rem;
     }
 }

 /* Header estilo LD Andaimes */
 .header-ld {
     background: rgba(255, 255, 255, 0.95) !important;
     backdrop-filter: blur(10px);
     border-bottom: 1px solid rgba(0, 0, 0, 0.1);
     padding: 0.8rem 0;
 }

 .nav-ld {
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .nav-menu-ld {
     display: flex;
     gap: 2rem;
     align-items: center;
 }

 .nav-link-ld {
     color: #1e3852;
     font-weight: 500;
     transition: all 0.3s ease;
     position: relative;
     padding: 0.5rem 0;
 }

 .nav-link-ld:hover {
     color: #3B82F6;
 }

 .nav-link-ld::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: #3B82F6;
     transition: width 0.3s ease;
 }

 .nav-link-ld:hover::after {
     width: 100%;
 }

 .btn-orcamento-ld {
     background: #3B82F6;
     color: white;
     padding: 0.6rem 1.5rem;
     border-radius: 4px;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .btn-orcamento-ld:hover {
     background: #2563EB;
     transform: translateY(-2px);
 }


 /* Estilos para o carrossel da seção de serviços */
 .servico-carrossel {
     animation: scroll 50s linear infinite;
     width: max-content;
 }

 .servico-item {
     transition: filter 0.3s ease, transform 0.3s ease;
     filter: grayscale(0);
 }

 .servico-carrossel:hover {
     animation-play-state: paused;
 }

 .servico-carrossel:hover .servico-item {
     filter: grayscale(100%) brightness(0.7);
 }

 .servico-carrossel:hover .servico-item:hover {
     filter: grayscale(0);
     transform: scale(1.05);
     z-index: 10;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
 }

 @keyframes scroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }


 /* Ajustes de responsividade */
 @media (max-width: 768px) {
     .nav-menu-ld {
         display: none;
     }

     .mobile-menu-btn {
         display: block;
     }

     .cloud-container {
         height: 60px;
     }

     .stat-number {
         font-size: 2rem;
     }

     .btn-primary,
     .btn-whatsapp {
         width: 100%;
         padding: 0.75rem 1.5rem;
     }
 }

 /* SEÇÃO DE ESTATÍSTICAS */

 .stat-card {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     border-radius: 12px;
     padding: 2.5rem 1.5rem;
     text-align: center;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     display: flex;
     flex-direction: column;
     align-items: center;
     height: 100%;
 }

 .stat-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
 }

 .stat-icon {
     font-size: 2.5rem;
     color: #3B82F6;
     margin-bottom: 1.5rem;
     background: rgba(255, 255, 255, 0.1);
     width: 80px;
     height: 80px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 .stat-card:hover .stat-icon {
     transform: scale(1.1);
     color: #60a5fa;
     background: rgba(255, 255, 255, 0.15);
 }

 .stat-number {
     font-size: 3rem;
     font-weight: 700;
     color: #3B82F6;
     margin-bottom: 0.5rem;
     transition: color 0.3s ease;
 }

 .stat-card:hover .stat-number {
     color: #60a5fa;
 }

 .stat-label {
     font-size: 1.1rem;
     color: #e2e8f0;
     font-weight: 500;
 }

 .grid-statics {
     display: grid;
     grid-template-columns: repeat(1, 1fr);
     gap: 2rem;
 }

 @media (min-width: 768px) {
     .grid-statics {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (min-width: 1024px) {
     .grid-statics {
         grid-template-columns: repeat(4, 1fr);
     }
 }
