/* Configurações gerais */
body, html {
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* Navbar padrão (azul fixo nas outras páginas) */
.navbar {
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  background: linear-gradient(90deg, #0a2a43, #0f4c81); /* cor padrão */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.navbar .nav-link {
  font-weight: 500;
  transition: color 0.3s;
  color: #fff !important;
}

.navbar .nav-link:hover {
  color: #ffcc00 !important;
}

/* Navbar transparente apenas na home */
body.home .navbar {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}

body.home .navbar.scrolled {
  background: linear-gradient(90deg, #0a2a43, #0f4c81) !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Banner (Carousel de Início) */
#inicio {
  margin: 0;
  padding: 0;
}

#inicio .carousel-item {
  height: 100vh;
}

#inicio .carousel-item img {
  object-fit: cover;
  height: 100vh;
  width: 100%;
}

#inicio .carousel-caption {
  bottom: 30%;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

#inicio h1 {
  font-size: 3rem;
  font-weight: 700;
}

#inicio p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

/* Botões principais (WhatsApp e Resultados) */
#inicio .btn {
  border-radius: 50px;
  font-weight: 600;
  padding: 12px 28px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  margin-top: 10px;
}

/* Botão Resultados */
#inicio .btn-light {
  background-color: #ffffff;
  color: #0a2a43;
  border: none;
}

#inicio .btn-light:hover {
  background-color: #f1f1f1;
  transform: scale(1.05);
}

/* Botão WhatsApp */
#inicio .btn-success {
  background-color: #25D366; /* Verde oficial do WhatsApp */
  border: none;
}

#inicio .btn-success:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

/* Seções gerais (exceto o carrossel) */
section:not(#inicio) {
  padding: 60px 20px;
}

section h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

/* Cards de serviços */
.service-card {
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 12px;
}

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

/* Botões gerais */
.btn {
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background: linear-gradient(90deg, #0a2a43, #0f4c81);
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

/* Responsividade */
@media (max-width: 768px) {
  #inicio h1 {
    font-size: 2rem;
  }
  #inicio p {
    font-size: 1rem;
  }
}

/* Checkup */
#checkup .nav-link {
  border-radius: 12px;
  margin: 5px;
  font-weight: 600;
  text-align: center;
  padding: 15px;
}

#checkup .nav-link.active {
  background-color: #0f4c81;
  color: #fff;
}

/* Controles do Carrossel - setas brancas sem fundo */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none; /* remove ícone padrão */
}

.carousel-control-prev-icon::after {
  content: '‹';
  font-size: 2.5rem;
  color: #fff;
}

.carousel-control-next-icon::after {
  content: '›';
  font-size: 2.5rem;
  color: #fff;
}

/* Fundo elegante */
.depoimentos-section {
  background: linear-gradient(135deg, #f8f9fa, #eef4ff);
}

/* Card moderno */
.testimonial-card {
  max-width: 750px;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  text-align: center;
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* Texto */
.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

/* Estrelas */
.stars {
  color: #ffc107;
  font-size: 1.2rem;
  letter-spacing: 3px;
}

/* Usuário */
.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0d6efd;
}

/* Indicadores modernos */
.custom-indicators button {
  background-color: #0d6efd;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.4;
}

.custom-indicators .active {
  opacity: 1;
}
