/* 🌿 Sessão Sobre */
.about {
  background-color: #6b0400;
  padding: 80px 20px;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* 🌟 Texto da seção Sobre */
.about-text {
  flex: 1 1 50%;
  min-width: 300px;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  padding: 20px;
}

.about-text h3.title-body {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #F8F8F8;
}

.about-text p strong {
  color: #FFFFFF;
  font-weight: 600;
}

.about-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    z-index: 1;
}

.about-img-wrapper::after {
    content: "";
    position: absolute;
    left: -40px;
    bottom: -30px;
    width: 100%;
    height: 100%;
    background-color: #a13c3a;
    border-radius: 200px;
    z-index: -1;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 200px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    padding: 10px;
    text-align: left;
  }

  .about-text h3.title-body {
    font-size: 28px;
  }

  .about-text p {
    font-size: 17px;
  }

  .about-img-wrapper {
    max-width: 320px;
    margin-top: 20px;
  }

  .about-img-wrapper::after {
    left: -30px;
    bottom: -20px;
    border-radius: 160px;
  }

  .about-img {
    border-radius: 160px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 60px 15px;
  }

  .about-text h3.title-body {
    font-size: 24px;
  }

  .about-text p {
    font-size: 16px;
  }

  .about-img-wrapper {
    max-width: 280px;
  }

  .about-img-wrapper::after {
    left: -20px;
    bottom: -15px;
    border-radius: 140px;
  }

  .about-img {
    border-radius: 140px;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 40px 10px;
  }

  .about-text {
    padding: 5px;
  }

  .about-text h3.title-body {
    font-size: 20px;
  }

  .about-text p {
    font-size: 15px;
  }

  .about-img-wrapper {
    max-width: 240px;
  }

  .about-img-wrapper::after {
    left: -10px;
    bottom: -10px;
    border-radius: 120px;
  }

  .about-img {
    border-radius: 120px;
  }
}
