/* Banner Autoestima */
.autoestima-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.autoestima-banner {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.autoestima-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: none;
  min-height: 400px;
}

.autoestima-cta {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

/* Seção de Feedback */
.feedback-section {
  padding: 120px 0 100px 0;
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a, #2b2b2b);
  width: 100%;
  overflow: visible;
}

.feedback-section .section-title {
  color: #ffffff;
  margin-bottom: 50px;
}

.feedback-section .container {
  width: 100%;
  max-width: 100%;
  padding: 0 16px;
}

/* Seção de Contato */
.contact-section {
  padding: 120px 0 100px 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #2b2b2b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.contact-section .section-title {
  color: #ffffff;
  margin-bottom: 50px;
}

.contact-section .container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 16px;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 18px;
  color: #e5e7eb;
  margin-bottom: 32px;
}

/* Footer */
.footer {
  padding: 40px 0;
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #e5e7eb;
}

/* Responsivo */
@media (max-width: 1024px) {
  .autoestima-image {
    min-height: 350px;
  }

  .feedback-section {
    padding: 80px 0;
  }

  .contact-section {
    padding: 80px 0;
  }

  .contact-section .container {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .autoestima-image {
    min-height: 300px;
  }

  .autoestima-cta {
    bottom: 20px;
  }

  .autoestima-cta .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
  }

  .feedback-section {
    padding: 60px 0;
    overflow: visible;
  }

  .feedback-section .container {
    padding: 0 12px;
  }

  .feedback-section .section-title {
    margin-bottom: 30px;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-info h3 {
    font-size: 24px;
  }

  .contact-info p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .autoestima-image {
    min-height: 250px;
  }

  .autoestima-cta {
    bottom: 16px;
  }

  .autoestima-cta .btn-primary {
    padding: 9px 18px;
    font-size: 13px;
  }

  .feedback-section {
    padding: 50px 0 40px 0;
    overflow: visible;
  }

  .feedback-section .container {
    padding: 0 10px;
  }

  .feedback-section .section-title {
    margin-bottom: 25px;
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    padding: 0 10px;
  }

  .contact-section {
    padding: 60px 0 50px 0;
  }

  .contact-section .section-title {
    margin-bottom: 35px;
  }

  .contact-info h3 {
    font-size: 20px;
  }

  .contact-info p {
    font-size: 14px;
  }

  .footer {
    padding: 30px 0;
  }
}