/* ========================================================================= */
/* I CICLO - HERO + BASE GLOBAL DE LA PÁGINA */
/* ========================================================================= */

:root {
  --cecns-blue: #004080;
  --cecns-gold: #ffc300;
  --cecns-wine: #800020;
  --text-color: #333;
  --bg-light: #f8f9fa;
  --bg-white: #fff;
  --link-color: var(--cecns-blue);
  --shadow-light: 0 4px 10px rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-white);
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: var(--cecns-gold);
}

/* Utilidades */
.content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  padding: 0 5%;
}

.section-padding {
  padding: 3.5rem 0;
}

.bg-light {
  background-color: var(--bg-light);
}
.bg-white {
  background-color: var(--bg-white);
}
.bg-blue-accent {
  background-color: var(--cecns-blue);
  color: white;
}

.text-gold {
  color: var(--cecns-gold) !important;
}
.text-white {
  color: var(--bg-white) !important;
}

.section-title {
  font-size: 2.2rem;
  color: var(--cecns-blue);
  margin-bottom: 2rem;
  text-align: center;
}
.section-title i {
  color: var(--cecns-gold);
  margin-right: 10px;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--cecns-gold);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* HERO NIVEL */
.level-hero {
  padding: 5rem 5%;
  color: white;
  text-align: center;
  box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.2);
}

.first-cycle-hero {
  background: linear-gradient(rgba(128, 0, 32, 0.75), rgba(128, 0, 32, 0.75)),
    var(--hero-bg) center/cover no-repeat;
}

.level-hero-title {
  color: var(--cecns-gold);
  font-size: 4.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.level-hero-slogan {
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .level-hero-title {
    font-size: 3rem;
  }
}
