@import url('config.css');

.sobre {
  background-color: var(--background-light);
}

.sobre .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.sobre-content {
  flex: 1;
}

.sobre-content h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  position: relative;
}

.sobre-content h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  bottom: -10px;
  left: 0;
}

.sobre-content p {
  margin-bottom: 20px;
  color: var(--gray-dark);
  font-size: 1.1rem;
  line-height: 1.7;
}

.sobre-content ul {
  list-style: none;
  margin: 30px 0;
}

.sobre-content li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.sobre-content li i {
  color: var(--secondary-color);
  margin-right: 10px;
  margin-top: 3px;
}

.cta-container {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.cta-container .btn {
  padding: 12px 25px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sobre-img {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sobre-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.sobre-img:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .sobre .container {
    flex-direction: column;
  }
  
  .sobre-img {
    order: -1;
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
  }
  
  .cta-container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
  }
  
  .sobre-content h2 {
    font-size: 2rem;
  }
  
  .sobre-content p {
    font-size: 1rem;
  }
}