/* Empresa Page */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.about-us {
  text-align: center;
  margin: 40px 0;
}



.history h3 {
  margin-bottom: 20px;
}

.mission-vision-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 40px 0;
}

.card {
  position: relative;
  width: 28%;
  text-align: center;
  background: #dfdfdf;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 8px 8px 16px 0px rgba(0, 0, 0, 0.2);
  margin: 20px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 10px 10px 4px 0px rgba(0, 0, 0, 0.25);
}

.icon-circle {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 3px solid #125a94;
}

.icon-circle i {
  font-size: 30px;
  color: #333;
}

.card h4 {
  margin-top: 20px;
  font-weight: bolder;
  color: #125a94;
}

.contact-button {
  text-align: center;
  margin: 40px 0;
}

.contact-button .btn {
  padding: 15px 30px;
  font-size: 18px;
}

.about-section {
  background: url("images/bannerAbout.png") no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 150px 0;
  min-height: 450px;
}

.about-section h1,
.about-section h2 {
  margin: 0;
}

.about-section h1 {
  font-size: 50px;
}

.about-section h2 {
  font-weight: lighter;
}

.history {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: justify;
  margin: 40px 20px;
}

.history h2 {
  width: 100%;
  font-weight: bold;
}

.content {
  flex: 1;
  padding-right: 20px;
  font-size: 18px;
}

p{
  font-size: 18px;
}

.image {
  flex: 1;
  text-align: center;
}

.image img {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Responsividade */
@media (max-width: 1200px){
  .history h2 {
    text-align: center;
  }

  .image {
    display: none;
  }
}

@media (max-width: 790px) {
  .mission-vision-values {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 80%;
  }

  .history {
    flex-direction: column;
    text-align: justify;
  }

  .content {
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .card {
    width: 90%;
  }
}

body.dark {
  background-color: #121212;
  color: #e0e0e0;
}

body.dark .card {
  background-color: #1e1e1e;
  box-shadow: 8px 8px 16px 0px rgba(255, 255, 255, 0.1);
}

body.dark .icon-circle {
  background-color: #333;
  border: 3px solid #e0e0e0;
}

body.dark .icon-circle i {
  color: #e0e0e0;
}

body.dark .card h4 {
  color: #e0e0e0;
}

body.dark .about-section {
  background: url("images/bannerAbout.png") no-repeat center center/cover;
  color: #e0e0e0;
}

