/* Reset para garantir que a página não transborde horizontalmente */
html,
body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  /* Manter o body limpo de posicionamento para não afetar elementos fixos */
}

#floater {
  position: fixed !important;
  bottom: 110px !important;
  right: 15px !important;
  width: 50px !important;
  height: 50px !important;
  background-color: #25d366 !important;
  color: #fff !important;
  border-radius: 50% !important;  
  text-align: center !important;
  font-size: 30px !important;
  box-shadow: 1px 1px 2px #999 !important;
  z-index: 2147483647 !important; /* máximo valor para garantir sobreposição */
  transform: none !important;
}

.my-float {
  margin-top: 12px;
}

html {
  scroll-behavior: smooth;
}

h1 {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* --- ESTILOS DO CARROSSEL COM NOVA ABORDAGEM --- */
#carouselExampleIndicators {
  width: 100%; /* Ocupa 100% da largura do body */
  /* Removidas as propriedades 'left' e 'transform' que causavam o conflito */
}

.carousel-item {
  height: 70vh;
  min-height: 350px;
  background: no-repeat center center scroll;
  background-size: cover;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomEffect 20s infinite;
}

@keyframes zoomEffect {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* --- CORREÇÃO FORÇADA DOS INDICADORES DO CARROSSEL --- */
ol.carousel-indicators {
  list-style: none !important; /* Força a remoção de marcadores/números */
  padding-left: 0 !important; /* Força a remoção de padding */
}

.carousel-indicators li {
  list-style-type: none !important; /* Redundância para garantir */
  font-size: 0 !important; /* Esconde qualquer texto residual */
}

/* --- FIM DOS ESTILOS DO CARROSSEL --- */

.float .fa-whatsapp {
  margin-top: 20px;
  font-size: 28px;
}

/* Estilos personalizados para a seção Nossos Serviços */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Estilos personalizados para a seção Contato */
#contact form {
  background-color: #f1f1f1;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 3%;
}

#contact iframe {
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

button:hover,
button:focus {
  outline: none;
  background: #1c70d3;
}

button:disabled {
  cursor: not-allowed;
  background: #555b69;
}

.card {
  margin-bottom: 20px;
}

/* --- ANIMAÇÕES DO FORMULÁRIO --- */
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding: 0;
  }
}

.form-sent {
  animation: fadeOut 0.5s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.show-message {
  animation: fadeInOut 4s ease;
}