/* paisqueeducam.css */
body {
  font-family: 'Montserrat', sans-serif;
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #1e3556;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

p.lead {
  font-size: 1.25rem;
  font-weight: 400;
}

.h1cta {
  font-size: 2.5rem;
  color: #ffb02e;
  font-weight: 700;
}

.btn-cta {
  background-color: #d4af37;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-transform: uppercase;
  border: none;
  transition: background-color 0.3s;
}

.btn-cta:hover {
  background-color: #b8972e;
}

.section {
  padding: 4rem 0;
}

.hero-section {
  background: linear-gradient(135deg, #1e3556 0%, #284061 100%);
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
  border-radius: 12px;
}

.benefits-section {
  background-color: #fff;
  padding: 4rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefits-section .benefit {
  text-align: center;
  margin-bottom: 2rem;
}

.benefits-section .benefit .bi {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.faq-section {
  background: #f1f3f5;
  padding: 4rem 2rem;
}

.faq-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.price {
  color: #d4af37;
  font-size: 2.5rem;
  font-weight: 700;
}

.promo-tagline {
  color: #e63946;
  font-weight: 600;
}

img.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

footer {
  background-color: #1e3556;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

footer a {
  color: #d4af37;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  p.lead {
    font-size: 1.1rem;
  }

  .btn-cta {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .section {
    padding: 2rem 0;
  }
}