:root {
  --primary: #0d6efd;
  --dark: #0b0f19;
  --light: #f8f9fa;
}

/* RESET BÁSICO */
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  background: rgba(11, 15, 25, 0.9);
  backdrop-filter: blur(6px);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-link {
  margin-left: 10px;
  transition: color .3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

/* HERO */
.hero {
  height: 48vh;
  background:
    linear-gradient(135deg, rgba(11,15,25,.8), rgba(13,110,253,.6)),
    url("../img/hero.jpg") center/cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
  
}

#foot{

}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  max-width: 650px;
  margin: 0 auto 30px;
}

.hero .btn {
  padding: 14px 40px;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(13,110,253,.4);
}

/* SECTIONS */
.section {
  padding: 100px 0;
}

.section h2 {
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: var(--primary);
  display: block;
  margin: 15px auto 0;
  border-radius: 5px;
}

/* SERVICE CARDS */
.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), #6610f2);
  opacity: 0;
  transition: .4s;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h4,
.service-card p {
  position: relative;
  z-index: 1;
  transition: color .4s;
}

.service-card:hover h4,
.service-card:hover p {
  color: white;
}

.service-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: #aaa;
  padding: 25px 0;
  text-align: center;
  font-size: 0.95rem;
}

/* SERVICE IMAGES */
.service-carousel {
  max-width: 520px;
  margin: auto;
}

.service-image {
  position: relative;
  height: 300px; /* CONTROLA O TAMANHO */
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

/* HOVER EFFECT */
.service-image::after {
  content: "🔍";
  position: absolute;
  inset: 0;
  background: rgba(11,15,25,.55);
  color: white;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .4s ease;
}

.service-image:hover img {
  transform: scale(1.08);
}

.service-image:hover::after {
  opacity: 1;
}

/* CAROUSEL BUTTONS */
.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(200%);
}

/* MOBILE */
@media (max-width: 768px) {
  .service-image {
    height: 220px;
  }
}

/* ============================= */
/* FOOTER AVANÇADO */
/* ============================= */

.footer-advanced {
  background: var(--dark);
  color: #aaa;
  padding: 70px 0 30px;
  font-size: 0.95rem;
}

.footer-advanced h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-advanced p {
  color: #aaa;
  line-height: 1.7;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all .3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

.footer-divider {
  border-color: rgba(255,255,255,.1);
  margin: 40px 0 20px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .footer-advanced {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
 .container{ justify-content: center;
 
 }
  
}


/* LOgotipo*/


#logo{
  border-radius:50%;
  width:10%

}