html {
  scroll-behavior: smooth;
  /* Garante que o conteúdo pare abaixo da barra preta */
  scroll-padding-top: 90px; 
}

.carousel-caption h1 {
    color: #ecf0f1;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}
.carousel-caption h2 {
    color: #ecf0f1;
    font-weight: 400;
    font-size: 1.4rem;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    margin-top: 10px;
}

/* Alterar a cor da seta do botão "Próximo" */
.carousel-control-next-icon {
    background-color: blue; /* Define a cor da seta */
    border-radius: 50%;     /* Deixa o fundo arredondado */
  }
  /* Alterar a cor da seta do botão "Anterior" */
  .carousel-control-prev-icon {
    background-color: red; /* Define a cor da seta */
    border-radius: 50%;   /* Deixa o fundo arredondado */
  }

  .carousel-item img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  
.carousel-inner img {
  display: flex;
  object-fit: cover;
  border-radius: 10px;
  padding: auto;
  margin: 5px;
  justify-content: center;
  box-shadow: 2px 6px 12px black;
}
.btn-success {
  font-size: 20px;
  font-weight: bold;
  font-style: oblique;
  border-radius: 5px;
  padding: 10px 30px;
  margin: 10px;
  text-decoration: none;
}
.btn-success:hover {
  background-color: green;
}

.btn {
  display: block;
  background-color: rgb(83, 202, 102);
  justify-content: center;
  color: black;
  font-weight: 800;
  font-size: 24px;
  font-family: italic;
  
}
  
  /*Tabela de Serviço*/
  .table {
    margin-top: 20px;
    border-collapse: collapse; /*borda mais limpa*/
    background: linear-gradient(to bottom, #ffffff, #f8f8f8);
    border-radius: 10px;
    overflow: hidden; /*arredondamento funcionar bem*/
    box-shadow: 2px 6px 10px rgba(0, 0, 0, 1.0); /*efeito elevação*/
  }

  .table th, .table td {
    padding: 10px;
    text-align: center;
  }

  .footer {
    text-align: center;
    padding: 20px;
  }

footer {
    background-color: #0c0c0c !important; /* Um fundo quase preto muito sofisticado */
    border-top: 4px solid #198754; /* Linha verde oficial do Bootstrap para dar acabamento */
    text-align: center;
    padding: 40px 0 20px 0; 
}

footer h5 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #198754; /* Títulos em verde para combinar com a marca */
}

footer p {
    font-size: 0.9rem;
    color: #adb5bd; /* Cor suave para não cansar a vista */
}

/* Efeito ao passar o mouse no seu nome (branding) */
footer a.text-success:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}
  /* Arredondamento dos Botões do Footer */
footer .btn {
    border-radius: 50px !important; /* Deixa o botão 'Ver no Google Maps' arredondado */
    font-weight: bold;
    padding: 10px 20px;
    transition: 0.3s;
}

footer .btn:hover {
    transform: scale(1.05); /* Efeito de zoom sutil ao passar o mouse */
}


@media (max-width: 568px) {
  .carousel-item img {
    height: 280px ;
    
  }

  
}
@media (max-width: 1024px) {
  .carousel-item img {
    height: 350px ;
    width: 150px ;
  }

  
}
