body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f8fbff;
}

.navbar {
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  z-index: 1050;
}

.navbar-brand, .nav-link {
  color: white !important;
}

/* --- CARROSSEL COM EFEITO DE VIDRO --- */
#heroCarousel .carousel-inner {
  height: 550px;
  border-bottom: 5px solid #00b4d8;
}

#heroCarousel .carousel-item {
  height: 550px;
  position: relative;
}

.carousel-bg-wrapper {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden;
  z-index: 1;
}

.carousel-bg-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.5);
  transform: scale(1.1);
}

.carousel-caption {
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px !important;
  bottom: 15% !important;
  max-width: 650px;
  margin-left: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.hero-logo {
  max-width: 160px;
  margin-bottom: 20px;
  filter: saturate(2.5) brightness(1.2) drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

#heroCarousel .carousel-caption h1 {
  color: #ffffff !important;
  font-weight: 800;
  font-size: 2.8rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

#heroCarousel .carousel-caption p {
  color: #ffffff !important;
  font-size: 1.2rem;
}

/* --- ESTILO DOS CARDS --- */
.service-card {
  transition: transform 0.3s;
  border: none;
}

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

.service-icon {
  font-size: 3rem;
  color: #0077b6;
  margin-bottom: 15px;
}

/* Card KIX Especial */
.kix-card {
  background: #fff0f6 !important;
  border: 2px solid #ff007f !important;
}

.kix-icon {
  color: #ff007f !important;
}

.kix-badge {
  background-color: #ff007f;
  color: white;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
  vertical-align: middle;
  margin-left: 5px;
}

footer {
  background: #0077b6;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

html {
  scroll-behavior: smooth;
}

/* --- AJUSTES MOBILE (SEM BLUR) --- */
@media (max-width: 767px) {
  .carousel-bg-wrapper img {
    filter: blur(0px) brightness(0.4) !important;
    transform: scale(1.0);
  }

  .carousel-caption {
    margin: 0 10px;
    padding: 20px !important;
    max-width: 95%;
    bottom: 5% !important;
    backdrop-filter: blur(10px);
  }

  #heroCarousel .carousel-inner, #heroCarousel .carousel-item {
    height: 480px;
  }

  #heroCarousel .carousel-caption h1 {
    font-size: 1.6rem;
  }
}
