/* Reset global */
* {
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Tipografia e base */
body {
  font-family: 'Encode Sans Condensed', sans-serif;
  background-color: #ffffff;
  color: #2e2e2e;
}

h1, h2, h3, h4, h5 {
  color: #2e2e2e;
}

/* Navbar */
.navbar {
  background-color: #fff;
}

.nav-link {
  color: #2e2e2e;
  transition: color 0.3s ease;
  width: 95px;
  text-align: center;
}
.nav-link:hover {
  font-weight: 600;
  color: #000;
}

.navbar-brand img {
  height: auto;
  max-height: 48px;
  width: auto;
  max-width: 80%;
  margin-right: 10px;
}

/* Megatron */
.megatron {
  background: linear-gradient(to bottom, #530000, #880900),
              url("imagens/logo_red.svg") no-repeat center bottom;
  background-size: 60%;
  padding: 60px 0;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.megatron::before {
  content: none;
}

.megatron h1 {
  font-family: 'Aboreto', system-ui;
  font-size: 3rem;
  font-weight: bold;
  color: #f0f0f0;
  z-index: 1;
  position: relative;
}

.megatron p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #f0f0f0;
  z-index: 1;
  position: relative;
}

/* Logotipo dentro do megatron */
.logo-megatron {
  max-width: 450px;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

/* Carrossel de texto */
#carrossel-texto {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 2rem 1rem;
}

#carrossel-texto h1,
#carrossel-texto p {
  position: relative;
  z-index: 2;
}

/* Botões de navegação */
.carousel-control-prev,
.carousel-control-next {
  width: 2.5rem;
  height: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  z-index: 3;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 70% 70%;
  filter: invert(30%);
}

/* Indicadores */
.carousel-indicators {
  bottom: -1.5rem;
  z-index: 2;
}

.carousel-indicators [data-bs-target] {
  background-color: #800020;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  opacity: 0.7;
}

.carousel-indicators .active {
  opacity: 1;
}

/* Sessões e rodapé */
.section {
  padding: 60px 0;
}





.footer-custom {
  background-color: #530000;
  color: #f9f9f9;
  font-size: 0.95rem;
}

.footer-custom h5,
.footer-custom p,
.footer-custom li,
.footer-custom a,
.footer-custom .text-muted {
  color: #f9f9f9 !important;
}

.footer-custom a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-custom .social-icon {
  font-size: 1.5rem;
  color: #f9f9f9;
  transition: color 0.3s ease;
}

.footer-custom .social-icon:hover {
  color: #25D366; /* WhatsApp verde */
}

.footer-custom .text-muted {
  opacity: 1 !important;
}


.bannerswiper {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.banner-slide {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  width: 100% !important;
  padding: 30px;
  box-sizing: border-box;
}
.banner-slide h4 {
  font-weight: bold;
  margin-bottom: 1rem;
}
.sbanner-pagination {
  text-align: center;
}

/* Botão WhatsApp */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: white;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-whatsapp i {
  font-size: 1.25rem;
}

.btn-whatsapp:hover {
  background-color: #1eb75c;
  color: white;
}

/* Responsividade */
@media (max-width: 768px) {
  .navbar-brand img {
    height: 36px;
  }

  .megatron {
    background-size: 90%;
    padding: 40px 0;
  }

  .megatron h1 {
    font-size: 1.75rem;
    padding: 0 10px;
  }

  .megatron p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .logo-megatron {
    max-width: 280px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 2rem;
    height: 2rem;
  }
}








  .social-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  .social-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  }

  .social-icon.instagram {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
  }

  .social-icon.whatsapp {
    background-color: #25d366;
  }

  .social-icon.linkedin {
    background-color: #0077b5;
  }

  .social-icon.telegram {
    background-color: #0088cc;
  }
  .social-icon.maps {
    background-color: #db4437; /* Cor padrão Google Maps */
  }


  
  .review-card {
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    height: 100%;
  }

