/* SECCION HERO */
.hero-wrapper {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(11, 143, 31, 0.1),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(11, 143, 31, 0.08),
      transparent 30%
    ),
    linear-gradient(180deg, #ffffff 0%, #f5f7f8 100%);
  min-height: 100vh;
  padding: 24px 0 60px;
}

.ads-hero {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    min-height: calc(100vh - 120px);
    align-items: center;
}

.ads-hero h1 {
    font-size: 2.5rem;
    margin: 20px 0;
}

.ads-hero p {
    color: var(--text-soft);
    margin-bottom: 25px;
}

.ads-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.ads-left {
    flex: 1;
}

.ads-right {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.ads-badge {
    background: #e6f4ea;
    color: #16a34a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.ad-banner {
    margin-top: 15px;
    overflow: hidden;
}

.ad-banner img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

@media (max-width: 768px) {
    .ads-container {
        flex-direction: column;
        text-align: center;
    }
}

/* SECCION FEATURES */
.ads-features {
  padding: 100px 0;
  background: #ffffff;
}

.ads-features-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.ads-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: min(1100px, 100%);
    margin: 0 auto;
}

.ads-feature-item {
  background: #f9fbfa;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: 0.25s ease;
}

.ads-feature-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: #ffffff;
}

.ads-feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.ads-feature-item p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.ads-feature-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

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

@media (max-width: 640px) {
  .ads-features-grid {
    grid-template-columns: 1fr;
  }
}

/* SECCION CALL TO ACTION */
.ads-cta {
    padding: 100px 0;
    text-align: center;
}

.ads-cta h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.ads-cta p {
    color: #6b7280;
    margin-bottom: 20px;
}

.ads-cta-box {
    width: min(700px, 100%);
    margin: 0 auto;
    text-align: center;

    background: #ffffff;
    padding: 60px;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ads-cta-box h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.ads-cta-box p {
    color: #6b7280;
    margin-bottom: 25px;
}