/*estilização da nav, log e link*/
body {
  font-family: Arial, sans-serif;
}
.logo{
  width: 120px;
  height: auto;
}
.navbar {
  height: auto;
}

.nav-link{
  margin: 20px;
}

.navbar-brand {
  font-weight: bold;
}
.nav-link:hover {
  color: #0cac19a4;
  
}
/*Aqui termina a nav,log e link*/


/* BOTÃO TOGGLER (MOBILE) */
.navbar-toggler {
  border: none;
  font-size: 1.25rem;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* CORREÇÃO DO MENU RESPONSIVO */
#navbarContent {
  margin-left: auto;
}

@media (min-width: 992px) {
  #navbarContent {
    margin-left: 15%;
  }
}
/* aqui termina a navbar */
/* watsapp float */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20bf5d;
}
/* Aqui termina o watsapp float*/

/* Ícones Sociais em Bolhas */
.icon-social {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.icon-social:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Cores personalizadas */
.bg-whatsapp {
  background-color: #25D366;
}

.bg-facebook {
  background-color: #3b5998;
}

.bg-instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}

.bg-tiktok {
  background-color: #010101;
}

/* convenios.css */
.convenio-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
}
.convenio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.convenio-icon {
  font-size: 3rem;
  color: #4b89e7;
}

.accordion-button:not(.collapsed) {
  background-color: #0d6efd;
  color: white;
}



@media (max-width: 576px) {
  .convenio-icon {
    font-size: 2.5rem;
  }
}

.carousel-item  img{
position: relative;
    height: 70vh;
}

.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55); /* ajuste a opacidade aqui */
  z-index: 1;
}
/*carousel*/
.carousel-caption {
  z-index: 2; /* garante que o texto apareça por cima da camada escura */
}

.gallery-item-small {
  height: 280px; /* Metade do tamanho padrão */
}

.gallery-item-small img {
  transition: transform 0.4s ease, filter 0.4s ease;
  height: 100%;
  object-fit: cover;
}

.gallery-item-small:hover img {
  transform: scale(1.03);
  filter: brightness(90%);
}

/* formulário de contacto*/

.object-fit-cover {
  object-fit: cover;
  width: 100%;
  max-height: 100%;
}

form input, form textarea {
  border-radius: 0.5rem;
}
