/* ===================== Charter Page Styles ===================== */
/*estilos generales charter*/
/* HERO SECTION */
.charter-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('/images/charter-hero.webp') no-repeat center center/cover;
  color: white;
  padding: 6rem 2rem;
  text-align: center;
}

.charter-hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.charter-hero .hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* OVERVIEW FEATURES */
.charter-overview {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
}

.charter-overview h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--dark-blue);
}

.charter-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.charter-feature-box {
  flex: 1 1 250px;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.charter-feature-box:hover {
  transform: translateY(-5px);
}

.charter-feature-box i {
  font-size: 2.3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.charter-feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--dark-blue);
}

.charter-feature-box p {
  font-size: 1rem;
  color: #444;
}

/* NETWORK SECTION */
.charter-network {
  padding: 4rem 2rem;
  text-align: center;
}

.charter-network h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--dark-blue);
}

.charter-network p {
  font-size: 1.05rem;
  max-width: 800px;
  margin: 0 auto;
  color: #555;
}

/* CTA SECTION */
.charter-cta {
  background-color: var(--accent-color);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.charter-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.charter-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.charter-cta .btn-primary {
  background-color: white;
  color: var(--accent-color);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.charter-cta .btn-primary:hover {
  background-color: #e0e0e0;
}

/* Pulsing animation */
.pulse {
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
