.home-page {
  width: 100%;
}

.features-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.features-main {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.blockquote-section {
  padding: 40px 0;
  background-color: transparent;
}

.blockquote {
  border-left: 4px solid #22a5e5;
  padding-left: 2rem;
  margin: 0;
}

.blockquote-title {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.blockquote-text {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.cta-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background-image: url('/assets/images/lmfoyn.webp');
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(1, 17, 26, 0.5);
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h3 {
  color: #ffffff;
  font-family: var(--font-heading);
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-section .mbr-section-btn {
  justify-content: center;
}


/* ===================== RESPONSIVO ===================== */

/* Mobile ≤768px */
@media (max-width: 768px) {
  .features-fluid {
    padding: 0 1rem;
  }

  .cta-section {
    padding: 40px 0;
  }

  .blockquote {
    padding-left: 1rem;
  }

  .blockquote-title {
    font-size: 1.1rem;
  }

  .blockquote-text {
    font-size: 1rem;
  }
}

/* Ultra-small ≤360px */
@media (max-width: 360px) {
  .cta-section {
    padding: 30px 0;
  }

  .blockquote-title {
    font-size: 1rem;
  }

  .blockquote-text {
    font-size: 0.9rem;
  }
}