html {
  scroll-behavior: smooth !important;
}

section {
  scroll-margin-top: 80px;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  font-size: 1.1rem;
  padding-top: 120px;
}

.custom-navbar {
  padding: 10px 0
}

.navbar-nav .nav-link {
  font-weight: 500;
}

.navbar-nav .nav-link {
  position: relative;
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
  color: #000;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0%;
  height: 2px;
  background-color: #780A0A;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.banner-container {
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.banner-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-fit {
  object-fit: cover;
  height: 300px;
}

.btn-outline-ext {
  color: #A73134;
}

.carousel-arrow {
  font-size: 3.5rem;
  color: #A73134;
  user-select: none;
}

.visible-arrows {
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  position: absolute;
  z-index: 5;
}


/* Posiciona as setas mais afastadas lateralmente */
.carousel-control-prev,
.carousel-control-next {
  width: auto;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  position: absolute;
  z-index: 5;
}

.carousel-control-prev {
  left: -60px;
  /* Aumente se quiser mais afastado */
}

.carousel-control-next {
  right: -60px;
  /* Aumente se quiser mais afastado */
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 24px;
  margin: 1rem 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-color: #A0A0A0;
}

.testimonial-card:hover {
  transform: scale(1.05);
}

/* Setas personalizadas */
.visible-arrows {
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  position: absolute;
  z-index: 5;
}



.accordion-button {
  font-weight: 600;
}

.accordion-body {
  font-size: 0.95rem;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: inherit;
  box-shadow: none;
}

/* Remove bordas azuis ao focar */
.accordion-button:focus {
  box-shadow: none;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-btn {
  background: #fff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1.1;
  text-align: center;
  color: #000;
  font-weight: 500;
  transition: transform 0.3s ease;
  padding: 6px;
}


.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn img {
  width: 33px;
  height: 33px;
  margin-bottom: 4px;
}


.no-pointer {
  cursor: default !important;
}

.section-title {
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  pointer-events: none;
}

#contato .container {
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.icon-circle {
  width: 40px;
  height: 40px;
  background-color: #932c2c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}


.background-primary {
  background-color: #FDF4F3;
}

footer a:hover {
  text-decoration: none;
}