html, body {
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: 'Segoe UI', sans-serif;
  padding-top: 100px;  /* Ajuste esse valor conforme a altura real da sua navbar */
}
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)), url('../assets/img/hero.jpg') center/cover no-repeat;
  height: 80vh;
  position: relative;
}
.hero-content {
  position: relative;
  top: -200px;
  /* Ajuste este valor conforme necessário */
}
@media (max-width: 576px) {  .hero-content {
    top: -100px; /* ou 0, ou até remover completamente */  }
}
h2 {
  font-weight: 600;
  color: #2c3e50;
}
.custom-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent !important;
  z-index: 1000;
}
.custom-header .navbar-brand {
  font-size: 1.25rem;
  color: white;
  text-decoration: none;
}
.custom-header .navbar-brand:hover {
  color: #f0f0f0;
}
.custom-header .navbar-brand,
.custom-header .navbar-toggler-icon {
  color: #ffffff;
}
.navbar-dark .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' "
      + "xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,0.7%29' "
      + "stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.destaque-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: none;
}
.destaque-titulo {
  color: #5BBBCD;
  font-weight: bold;
  margin-top: 0.5rem;
}
.destaque-texto {
  color: #231F20;
  font-size: 0.95rem;
}
.destaque-lista {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #231F20;
  font-size: 0.95rem;
}
.destaque-lista li {
  margin-bottom: 0.3rem;
}
.destaque-inline img {
  flex-shrink: 0;
}
.destaque-inline p {
  color: #231F20;
  font-size: 0.95rem;
  margin: 0;
}
.social-links a {
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  margin: 0 1rem;
}
.social-links a img {
  margin-right: 0.5rem;
}
.social-links a:hover {
  opacity: 0.8;
}
footer {
  font-size: 0.9rem;
}
.custom-footer {
  background-color: #5BBBCD;
}
.footer-site-link {
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
}
.footer-site-link:hover {
  text-decoration: underline;
}
.address-segment {
  white-space: nowrap;
}
.address-line {
  gap: 0.0rem;
}
@media (max-width: 576px) {
  .address-line {
    gap: 0.0rem;
  }
}
.me-3 {
    margin-right: 0rem !important;
}
.cta-section {
  background-color: #5BBBCD;
}
.custom-btn {
  background-color: #EE4350;
  color: #ffffff;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.custom-btn:hover {
  background-color: #B4464B;
  text-decoration: none;
  color: #ffffff;
}
@keyframes pulse-animation {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
.whatsapp-float-com-texto {
    position: fixed;
    bottom: 5px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.2s ease-in-out;
    display: flex;
    align-items: center;
    padding: 7px 14px;
    text-decoration: none;
    font-family: Arial, sans-serif;
}
.whatsapp-float-com-texto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 30px;
    z-index: -1;
    animation: pulse-animation 2s infinite;
}
.whatsapp-float-com-texto:hover {
    transform: scale(1);
}
.whatsapp-float-com-texto i {
    font-size: 24px;
    margin-right: 10px;
}
.whatsapp-float-com-texto span {
    font-size: 14px;
    color: #FFF;
}