:root {
  --blue: #0d3b66;
  --blue-dark: #082f52;
  --green: #1aa35b;
  --bg: #f6f8fb;
  --card: #ffffff;
  --text: #0b1b2b;
  --muted: #64748b;
  --border: #e5eaf2;
  --shadow: 0 12px 35px rgba(8, 27, 46, 0.08);
  --radius: 18px;
}

.beneficios-page {
  background: var(--bg);
  color: var(--text);
}

.beneficios-container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.beneficios-section {
  padding: 55px 0 70px;
}

.beneficios-videos-section,
.beneficios-notice-section,
.beneficios-cta-section {
  padding: 60px 0;
}

.beneficios-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
}

.beneficios-title span {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.beneficios-title h2 {
  color: var(--blue-dark);
  font-size: 2.2rem;
  margin: 12px 0;
}

.beneficios-title p {
  color: var(--muted);
  line-height: 1.7;
}

.beneficios-grid,
.beneficios-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.beneficios-card,
.beneficios-video-box,
.beneficios-notice-card,
.beneficios-cta-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);  
}

.beneficios-card {
  padding: 28px;  
}

.beneficios-icon {
  font-size: 2rem;
  margin-bottom: 18px;  
  line-height: 1;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eef5ff;
  display: flex;
  align-items: center;

}

.beneficios-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.beneficios-card p {
  margin: 0;
}

.beneficios-video-box h3 {
  color: var(--blue-dark);
  margin: 0 0 10px;
}

.beneficios-card p,
.beneficios-video-box p,
.beneficios-notice-card p,
.beneficios-cta-card p {
  color: var(--muted);
  line-height: 1.6;
  text-align: justify;
}

.beneficios-video-box {
  padding: 18px;
  min-height: 310px;
}

.beneficios-video-thumb {
  height: 170px;
  border-radius: 14px;
  background: #eaf0f7;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}


.beneficios-notice-card {
  padding: 34px;
  text-align: center;
  background: #fffbea;
}

.beneficios-notice-card h2,
.beneficios-cta-card h2 {
  color: var(--blue-dark);
  margin-top: 0;
}

.beneficios-cta-card {
  padding: 44px;
  text-align: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.beneficios-cta-card h2,
.beneficios-cta-card p {
  color: #fff;
}

.beneficios-btn-primary {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .beneficios-grid,
  .beneficios-videos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .beneficios-section,
  .beneficios-videos-section,
  .beneficios-notice-section,
  .beneficios-cta-section {
    padding: 48px 0;
  }

  .beneficios-grid,
  .beneficios-videos-grid {
    grid-template-columns: 1fr;
  }

  .beneficios-title h2 {
    font-size: 1.7rem;
  }
}



