
body {
  background-color: #fdfaf6;
  font-family: 'Segoe UI', sans-serif;
}

.navbar {
  padding: 1rem;
}
.navbar img.logo {
  height: 70px;
  width: auto;
}

.carousel-inner img {
  height: 550px;
  object-fit: cover;
  border-radius: 12px;
}

.accordion-body {
  font-size: 1.2rem;
  line-height: 1.5;
}


.card {
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: scale(1.03);
}
.card0 {
  border-radius: 12px 12px 0 0;
}

.img-gerais {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

section.row.mb-2 {
  padding: 3rem 1rem;
}
.bg-black.text-white {
  background: linear-gradient(45deg, #000, #2d2d2d);
  border-radius: 12px;
}

h2 {
  font-weight: 600;
  margin-bottom: 1rem;
}


.footer0 p {
  margin: 0 1rem;
  font-size: 0.9rem;
}


 .carousel-inner {
    height: 520px; 
    
  }

  .carousel-inner img {
    object-fit: cover;
    height: 80%;
    width: 100%; 
  }

  .card0{
    border-radius: 50%;
  }

.img-gerais{
    border-radius: 10%;
    height: 450px;
    width: 450px;
}

.logo {
    height: 66px;
    width: 66px;
}


.parent {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
grid-column-gap: 10px;
grid-row-gap: 10px;
}

.parent img {
width: 150px;
height: 150px;
object-fit: cover;
transition: transform 0.3s ease;
}

.parent img:hover {
  transform: scale(1.05); 
  z-index: 2;
}

.div1 { grid-area: 1 / 1 / 4 / 4; }
.div2 { grid-area: 1 / 2 / 2 / 3; }
.div3 { grid-area: 1 / 3 / 2 / 4; }
.div4 { grid-area: 2 / 1 / 3 / 2; }
.div5 { grid-area: 2 / 2 / 3 / 3; }
.div6 { grid-area: 2 / 3 / 3 / 4; }
.div7 { grid-area: 3 / 1 / 4 / 2; }
.div8 { grid-area: 3 / 2 / 4 / 3; }
.div9 { grid-area: 3 / 3 / 4 / 4; }