/* ==========================================================================
   RESPONSIVE STYLES - MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 650px;
  }

  .hero-content {
    padding: 30px 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .counter-value {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .current-price {
    font-size: 2.8rem;
  }

  .timer {
    flex-wrap: wrap;
  }

  .transformation-images {
    height: 200px;
  }

  .transformation-before,
  .transformation-after {
    height: 200px;
  }

  .features-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 30px 0;
  }

  .hero-content {
    height: auto;
    min-height: unset;
    padding: 30px 15px;
    margin: 20px 0;
    overflow: visible;
  }

  .hero-container {
    align-items: flex-start;
    /*
    padding: 60px 0;
    */
  }

  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 3px;
  }

  .btn-hero {
    padding: 15px 25px;
    font-size: 1rem;
  }

  .badge-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .counter-value {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .counter-separator {
    margin: 0 5px;
  }

  /* Ajustar espaçamento dos elementos internos */
  .hero-trust-badges {
    margin-top: 20px;
    flex-direction: row;
    gap: 15px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
  }

  .header-content {
    flex-direction: column;
    gap: 10px;
  }

  .header-left {
    width: 100%;
    justify-content: space-between;
  }

  .transformation-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 20px 15px;
  }

  .price-box {
    padding: 25px 15px;
  }

  .current-price {
    font-size: 2.2rem;
  }
}