.about-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: linear-gradient(
    45deg,
    rgba(5, 99, 108, 0.1),
    rgba(197, 164, 126, 0.2)
  );
  border-radius: 50%;
  top: -200px;
  right: -200px;
  z-index: 0;
}

.about-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(
    -45deg,
    rgba(5, 99, 108, 0.1),
    rgba(197, 164, 126, 0.2)
  );
  border-radius: 50%;
  bottom: -200px;
  left: -200px;
  z-index: 0;
}

.about-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.about-image {
  flex: 1;
  position: relative;
  height: 600px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid #c5a47e;
  border-radius: 4px;
  z-index: -1;
}

.about-content {
  flex: 1;
  padding: 20px;
}

.about-subtitle {
  color: #c5a47e;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #333;
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-list li {
  padding-left: 30px;
  margin-bottom: 15px;
  position: relative;
  color: #666;
}

.about-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #c5a47e;
}

.about-cta {
  display: inline-block;
  padding: 12px 30px;
  background-color: #c5a47e;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.about-cta:hover {
  background-color: #b08f69;
}

@media (max-width: 968px) {
  .about-container {
    flex-direction: column;
    gap: 0;
    height: 740px;
    position: relative;
  }

  .about-image {
    width: 100%;
    height: 100vh;
    position: relative;
  }

  .about-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.9)
    );
    border-radius: 4px;
  }

  .about-image::before {
    display: none;
  }

  .about-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: calc(100% - 60px); /* Reduzido da largura total para criar margem */
    max-width: 600px;
    text-align: center;
    padding: 40px;
  }

  .about-title {
    color: #fff;
    font-size: 22px;
  }

  .about-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
  }

  .about-list li {
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
  }

  .about-list li::before {
    color: #fff;
  }

  .about-cta {
    background-color: #fff;
    color: #c5a47e;
  }

  .about-cta:hover {
    background-color: #f0f0f0;
  }

  .about-subtitle {
    color: #b08f69;
  }
}

@media (max-width: 480px) {
  .about-content {
    padding: 30px;
    width: calc(100% - 40px); /* Ajuste para telas menores */
  }
}
