   body {
      font-family: Arial, sans-serif;
    }
    .logo {
      width: 120px;
      height: auto;
    }
    .nav-link {
      margin: 20px;
    }
    .nav-link:hover {
      color: #0cac19a4;
    }
    /* BOTÃO TOGGLER (MOBILE) */
    .navbar-toggler {
      border: none;
      font-size: 1.25rem;
    }
    .navbar-toggler:focus {
      outline: none;
      box-shadow: none;
    }
    #navbarContent {
      margin-left: auto;
    }
    @media (min-width: 992px) {
      #navbarContent {
        margin-left: 15%;
      }
    }
    
   #Card{
    width: 44%;
    font-size: 15px;
   } 
/* watsapp */
.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;
}
/* termina watsapp */

/* emergência */
.CTA{
  background: #25d366;
}

/* termina emergência */

@keyframes slideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}

/* */
/* ====== HERO / TÍTULOS ====== */
section.bg-light.text-center .lead {
  color: #333; /* texto mais legível no hero */
}

/* ====== BOTÃO (WhatsApp / ação) ====== */
.btn-success {
  border-radius: 28px;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.btn-success:hover {
  transform: translateY(-1px);
  filter: brightness(0.95);
}

/* ====== FAQ (Accordion) ====== */
.accordion-item {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
.accordion-button {
  font-weight: 600;
}
.accordion-button:not(.collapsed) {
  color: #0d6efd;             /* azul Bootstrap */
  background-color: #eaf3ff;  /* azul bem suave */
  box-shadow: none;
}
.accordion-body {
  color: #6c757d; /* cinza suave para texto */
}

/* ====== GALERIA ====== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 240px;             /* altura padrão em cards */
}
@media (min-width: 992px) {
  .gallery-item { height: 280px; }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* preenche 100% sem distorcer */
  transition: transform 0.35s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  text-align: center;
  padding: 0 10px;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay p {
  margin: 0;
  color: #fff;
  font-weight: 700;
}


/* Í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);
}
/* Termina redes sociais*/

/* Cores personalizadas dos icon das redes sociais*/
.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: #070707;
}

/* Cores personalizadas dos icon das redes sociais */
