body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0c0c0c;
  color: #f0f0f0;
}

.about-hero {
  height: 60vh;
  background: url('../images/abtus.png') center/cover no-repeat;
  position: relative;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.about-hero .container {
  position: relative;
  z-index: 2;
}
.about-hero h1 {
  font-size: 3rem;
  font-weight: bold;
}
.about-hero p {
  font-size: 1.2rem;
}

.who_are_we {
  padding: 4rem 0;
}
.who_are_we h2 {
  color: #FF8200;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.who_are_we p {
  font-size: 1.1rem;
  line-height: 1.7;
}
.who_are_we.image img {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.mvv {
  background-color: #0c0c0c;
  color: #f0f0f0;
  padding: 4rem 10%;
}

.mvv-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.mvv-item {
  background-color: #1a1a1a;
  border-left: 5px solid #006C93;
  padding: 2rem;
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  color: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  border-radius: 8px;
}

.mvv-item.missao {
  border-left-color: #FF8200;
}

.mvv-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.mvv-item:hover.missao {
  border-left-color: #ff9a3d;
}
.mvv-item:hover:not(.missao) {
  border-left-color: #3399cc;
}

.mvv-item h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.mvv-item ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.sectors {
  padding: 4rem 2rem;
  background-color: #f4f4f4;
}

.sectors-container {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.sectors-image {
  flex: 1 1 40%;
  text-align: center;
}

.sectors-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  will-change: transform;
}

.sectors-image img:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.sectors-content {
  flex: 1 1 50%;
}

.sectors-content h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #333;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sector {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.sector img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector:hover img {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.sector p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #000;
  text-align: center;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .sectors-grid {
    grid-template-columns: 1fr;
  }
}
