html, body {
            height: 100%;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
        .hero {
            background-image: url('img/fundo2.png');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            height: 100vh;
        }
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: -1;
        }
        .hero img {
            max-width: 350px;
            animation: fadeIn 2s ease-out;
        }
        .hero h1, .hero p {
            animation: fadeIn 3s ease-out;
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .services {
            background-color: white;
            padding: 50px 0;
        }
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }
        .card-img-top {
            height: 200px;
            object-fit: cover;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }
        .card-title {
            font-size: 1.25rem;
            font-weight: bold;
        }
        .services h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 40px;
        }
        .service-card {
            margin-bottom: 30px;
        }
        @media (max-width: 768px) {
            .service-card {
                margin-bottom: 20px;
            }
        }
        .amarelo {
            color: #ffcc00;
        }
        .branco{
            color: #fff;
            font-size: 20px;
            font-family: ;
        }
       .btn-custom {
      background-color: #ffcc00;
      color: black;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 18px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }

    .btn-custom:hover {
      background-color: #fff;
      color: #ffcc00;
      transform: scale(1.05);
    }

    /* Estilo inicial invisível */
    .fade-in-btn {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    }

    /* Quando aparecer */
    .fade-in-btn.show {
      opacity: 1;
      transform: translateY(0);
    }




        .about {
            background-color: #f8f9fa;
            padding: 60px 20px;
        }
        .about h2 {
            font-size: 2rem;
            margin-bottom: 30px;
        }
        .about p {
            font-size: 1.1rem;
        }




            .slider {
    position: relative;
    width: 100%;
    height: 370px;
    overflow: hidden;
}

.item {
    position: absolute;
    width: 230px;
    height: 340px;
    text-align: center; /* Alinhando o texto centralizado */
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    transition: 0.5s;
    left: calc(50% - 110px);
    top: 0;
}

.slide-img {
    width: 80px;
    height: 70px;
    border-radius: 50%; /* Tornando a imagem redonda */
    margin-bottom: 10px; /* Espaçamento entre a imagem e o título */
    border: 2px solid #ffcc00; /* Borda roxa de 4px */
}

.slide-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px; /* Espaçamento entre o título e o texto */
}

.slide-text {
    font-size: 14px;
    color: #555;
}

#next, #prev {
    position: absolute;
    top: 40%;
    color: white;
    background-color: transparent;
    border: none;
    font-size: xxx-large;
    font-family: monospace;
    font-weight: bold;
    opacity: 1%;
}

#next {
    left: unset;
    right: 20px;
}

#prev {
    left: 20px;
}


.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px 0;
  }

  .map-container iframe {
    width: 100%;
    max-width: 1000px; /* Defina a largura máxima desejada */
    height: 480px;
    border: none;
  }

  /* Responsividade para telas pequenas (celular) */
  @media (max-width: 768px) {
    .map-container iframe {
      height: 100%;
      width: 100%;
    }
  }

  .section-title {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin: 40px 0 20px;
    font-weight: bold;
    position: relative;
  }

  .section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ffcc00;
    margin: 10px auto 0;
    border-radius: 2px;
  }





  .form-container {
    background-color: #f8f9fa;
    border: 2px solid #ffcc00;
    border-radius: 10px;
  }

  .form-label {
    font-weight: 500;
  }

  .btn-warning:hover {
    background-color: black;
    color: #f8f9ff;
    transition: all 0.3s ease;
  }

  .social-icons img {
    transition: transform 0.3s ease;
  }

  .social-icons img:hover {
    transform: scale(1.1);
  }

  /* Alinhamento responsivo */
  @media (max-width: 768px) {
    .contact-info {
      text-align: center;
      margin-bottom: 2rem;
    }
    .social-icons {
      justify-content: center !important;
    }
  }

  /* Ajuste do espaçamento no desktop */
  @media (min-width: 769px) {
    .contact-info {
      margin-right: 20px;
    }
  }


.why-us-section h2 {
    font-weight: bold;
    color: #333;
  }

  .card-title {
    font-weight: 600;
    color: #222;
  }

  .card-text {
    color: #555;
  }

  .card img {
    transition: transform 0.3s ease;
  }

  .card:hover img {
    transform: scale(1.1);
  }

  @media (max-width: 768px) {
    .card {
      margin-bottom: 20px;
    }
  }

 
  .footer h5 {
    font-weight: 600;
  }
  .footer a {
    text-decoration: none;
  }

 .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
  }

  .whatsapp-float img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    animation: bounce 2s infinite;
  }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }



  /* Modal base */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

/* Conteúdo centralizado com borda estilosa */
.modal-content {
    position: relative;
    margin: auto;
    margin-top: 5vh;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    background: #1e1e1e;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    border: 2px solid #ffcc00;
    text-align: center;
    animation: fadeInModal 0.3s ease-in-out;
}

/* Imagem com efeito leve de zoom */
.gallery-img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.02);
}

/* Botão fechar moderno */
.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close:hover {
    color: #ff5252;
}

/* Botões de navegação */
.gallery-nav {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 26px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffffff33;
    border-radius: 50%;
    user-select: none;
    transform: translateY(-50%);
    transition: background 0.3s, transform 0.2s;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

/* Animação de entrada */
@keyframes fadeInModal {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
