* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333;
}

/* --- Header --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #c62828;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  color: white;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.logo span {
  color: #ffeb3b;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffeb3b;
}

/* --- Hero --- */
.hero {
  margin-top: 70px;
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slider img.active {
  opacity: 1;
}

.hero-text {
  position: absolute;
  bottom: 100px;
  left: 50px;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 20px;
  border-radius: 10px;
}

/* --- Sections --- */
.section {
  text-align: center;
  padding: 80px 20px;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.section p, .section ul {
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
}

.section.red {
  background: #f44336;
  color: white;
}

.section.yellow {
  background: #fff8e1;
  color: #333;
}

/* --- Niveles --- */
.niveles-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.nivel-card {
  background: white;
  color: #333;
  border-radius: 15px;
  width: 300px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.nivel-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.nivel-card h3 {
  background: #ffc107;
  padding: 10px;
  color: #b71c1c;
}

.nivel-card p {
  padding: 15px;
  font-size: 1rem;
}

.nivel-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* --- Galería --- */
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.galeria img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.galeria img:hover {
  transform: scale(1.05);
}

/* --- Footer --- */
footer {
  background: #c62828;
  color: white;
  text-align: center;
  padding: 20px;
}
.btn {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 20px;
  background-color: #f44336;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
}

.btn:hover {
  background-color: #b71c1c;
  transform: scale(1.05);
}

/* --- Logo con imagen --- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 700;       /* Negrita moderada */
  color: #ffeb3b;         /* Amarillo institucional */
  text-transform: none;
}


.logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    background: transparent;
    border-radius: 10px; /* opcional */
    filter: drop-shadow(0 0 1px rgba(0,0,0,0.3)); /* da contraste */
}
  
.logo span {
  color: #ffeb3b;
}

/* --- Menú desplegable --- */

nav ul li {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #b71c1c;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  min-width: 180px;
  flex-direction: column;
  text-align: left;
  z-index: 1000;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li a {
  color: white;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
}

.dropdown-menu li a:hover {
  background: #f44336;
  color: #fff8e1;
}

/* Mostrar menú al pasar el mouse */
.dropdown:hover .dropdown-menu {
  display: flex;
}

.section.blue {
  background-color: #e3f2fd;
  padding: 50px 20px;
  text-align: center;
}

.imagen-matricula {
  max-width: 400px;
  margin: 20px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.botones-matricula {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.btn {
  background-color: #1976d2;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background-color: #0d47a1;
}

.active {
  color: #1976d2;
  font-weight: bold;
}

#nosotros {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}

#nosotros p {
  text-align: justify;
  margin-bottom: 30px;
  color: #333;
}

.mision-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.mision-vision-grid .bloque {
  background-color: #fff8e1;
  border-left: 6px solid #fbc02d;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: justify;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mision-vision-grid .bloque:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.mision-vision-grid h3 {
  color: #b71c1c;
  text-align: center;
  margin-bottom: 15px;
}

.mision-vision-grid p {
  color: #333;
  line-height: 1.7;
}

/* Para pantallas pequeñas */
@media (max-width: 768px) {
  .mision-vision-grid {
    grid-template-columns: 1fr;
  }
}



.lema-nosotros {
  text-align: center;
  margin: 25px 0;
  padding: 20px;
  background-color: #fff8e1;
  border-left: 5px solid #f4b400;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.lema-nosotros h3 {
  color: #d32f2f;
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}

.lema-nosotros p {
  font-style: italic;
  font-size: 18px;
  color: #444;
}


.galeria-carrusel {
  width: 90%;
  margin: auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  position: relative;
}

.galeria-slide {
  display: flex;
  width: max-content;
  animation: mover 40s linear infinite;
}

.galeria-slide img {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin: 5px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.galeria-slide img:hover {
  transform: scale(1.05);
}

/* Pausa el movimiento al pasar el mouse */
.galeria-carrusel:hover .galeria-slide {
  animation-play-state: paused;
}

/* Animación de desplazamiento continuo */
@keyframes mover {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ===== Contacto - Mapas y Videos ===== */
.contacto-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.contacto-section h2 {
  font-size: 1.8rem;
  color: #b71c1c;
  margin-bottom: 20px;
  border-bottom: 3px solid #fbc02d;
  display: inline-block;
  padding-bottom: 5px;
}

.contacto-mapa, .contacto-video {
  background-color: #fff8e1;
  padding: 25px;
  margin-bottom: 40px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contacto-mapa:hover, .contacto-video:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.contacto-mapa iframe, .contacto-video iframe {
  width: 100%;
  max-width: 700px;
  height: 400px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contacto-video h2 {
  margin-bottom: 15px;
  color: #d32f2f;
  font-size: 1.2rem;
}

/* Botón volver */
.btn-volver {
  display: inline-block;
  background: #c62828;
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
}

.btn-volver:hover {
  background: #b71c1c;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .contacto-mapa iframe,
  .contacto-video iframe {
    height: 300px;
  }

  .contacto-section h2 {
    font-size: 1.5rem;
  }
}

/* Ajuste para que el contenido no quede debajo del header fijo */
main.contacto-section {
  padding-top: 120px; 
}

/* ===== Información del Colegio ===== */
.contact-info {
  background: #fff8e1;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  margin-bottom: 25px; /* ajusta el espacio debajo del bloque */
}




/* === SECCIÓN INFORMACIÓN PARA PADRES === */
#info-padres {
    background: #fff8e1; /* amarillo suave bonito */
    padding: 60px 20px;
    margin-top: 85px;
}

#info-padres .info-grid {
    max-width: 900px;
    margin: auto;
    text-align: left;
}

/* Título principal */
#info-padres h1 {
    color: #b71c1c;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-left: 5px;
}

#info-padres h1::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: #fbc02d;
    border-radius: 2px;
}

/* Bloques elegantes */
#info-padres .info-block {
    background: #ffffff;
    padding: 25px 30px;
    margin-bottom: 35px;
    border-left: 5px solid #fbc02d;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Títulos de bloque */
#info-padres .info-block h3 {
    color: #c62828;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

/* Texto */
#info-padres p,
#info-padres ul li {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.6;
}

#info-padres ul {
    padding-left: 20px;
}



/* =============================
   ESTILOS PARA NIVEL INICIAL
   (coinciden con el diseño general)
============================= */

/* Imagen grande de presentación */
#nivel-inicial .content img {
  width: 100%;
  max-width: 600px; /* 🔥 Tamaño más pequeño y controlado */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  margin-bottom: 25px;
  object-fit: cover;
}

/* Texto */
#nivel-inicial p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
}

/* Títulos generales */
#nivel-inicial h2,
.section.red h2,
.section.yellow h2,
.section.blue h2 {
  font-size: 2rem;
  color: #b71c1c; /* 🔥 rojo institucional */
  margin-bottom: 25px;
  font-weight: 800;
}

/* 🔥 Corrección: SOLO el título de Áreas de Desarrollo debe ser blanco */
.section.red h2 {
  color: white !important;
}

/* Tarjetas de áreas de desarrollo (ya estaban, pero mejor coherencia) */
.nivel-card h3 {
  background: #ffc107;   /* amarillo institucional */
  color: #b71c1c;
  font-weight: bold;
}

/* Metodología: imagen y texto */
.section.yellow img,
.section.red img,
.section.blue img {
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Ajustes responsive */
@media (max-width: 768px) {
  #nivel-inicial .content img {
    max-width: 90%; /* Más pequeño en móvil */
  }
}





/* === PORTADA DEL NIVEL === */

.portada-nivel {
    position: relative;
    width: 100%;
    height: 80vh;          /* Ajusta la altura si quieres */
    background-image: url('tu-imagen.jpg');
    background-size: cover;   /*  Tapa TODO sin bordes */
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

/* Capa oscura encima de la imagen */
.portada-nivel .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);  /* 🔥 Oscurecer la imagen */
}

/* El texto */
.portada-nivel h1 {
    position: relative;  /* Para estar encima del overlay */
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}




/* === HERO PARA NIVELES (imagen oscura con título al centro) === */
.hero-nivel {
  position: relative;
  width: 100vw;
  height: 55vh;       /* Tamaño tipo banner como el index */
  background-image: url("imageninicial.jpg");  /* Cambia la imagen si quieres */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Capa oscura encima de la imagen */
.hero-nivel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);  /* oscuridad suave */
}

/* Texto centrado */
.hero-nivel-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
}

.hero-nivel-text h2 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-nivel {
    height: 40vh;
  }
  .hero-nivel-text h2 {
    font-size: 2.2rem;
  }
}






/* === NAVBAR RESPONSIVE SIN ROMPER EL DISEÑO ORIGINAL === */

/* Oculta hamburguesa en PC */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white; /* Mantiene color en tu header rojo */
  border-radius: 5px;
  transition: 0.3s;
}



/* ------------------ MOBILE ------------------ */
@media (max-width: 768px) {

  /* Ocultar menú principal */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    width: 100%;
    background: #c62828;
    padding: 15px 0;
    gap: 20px;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  /* Mostrar menú hamburguesa abierto */
  .nav-links.open {
    display: flex;
    max-height: 600px; /* ← Aumentado para que entren los submenús */
  }

  header {
    padding: 15px 20px;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* ------- SUBMENÚ EN MÓVIL (CORRECTO) ------- */
  .dropdown-menu {
      position: relative !important;
      width: 100%;
      background: #b71c1c;
      padding: 10px 0;
      flex-direction: column;
      gap: 10px;
      box-shadow: none;
      display: none; /* OCULTO por defecto */
  }

  /* Mostrar cuando se hace clic */
  .dropdown.open .dropdown-menu {
      display: flex !important;
  }
}





/* ---------------- PC (DESKTOP) ---------------- */

/* Navbar alineado */
.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .nav-links {
  gap: 25px;
  list-style: none;
  align-items: center;
}

/* Submenú (PC) */
.dropdown-menu {
  position: absolute;
  background: #b71c1c;
  padding: 10px;
  display: none;
  flex-direction: column;
  top: 100%;
  left: 0;
  min-width: 150px;
}

@media (min-width: 769px) {
.dropdown:hover .dropdown-menu {
  display: flex;
  }
}

.nav-links.open {
  max-height: 600px; /* aumenta este valor */
}




/* Botón del submenú (Móvil y PC) */
.dropdown-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.dropdown-btn:hover {
    color: #ffeb3b;
}







/* ===== INFO PADRES – ACORDEÓN MEJORADO ===== */

.padres-section h1 {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 50px;
    color: #b71c1c;
}

.acordeon {
    width: 90%;
    max-width: 800px;
    margin: 30px auto; /* Agregamos espacio arriba/abajo */
}

/* Estilo de la caja principal, similar a tu imagen */
.acordeon-item {
    margin-bottom: 0; /* Eliminamos el espacio entre items para que parezca un bloque */
    border: none;
    border-radius: 0;
    overflow: hidden;
    /* Añadimos una línea divisoria sutil, como en tu imagen */
    border-bottom: 1px solid #ddd; 
}

/* Estilo del Botón (Encabezado) */
.acordeon-btn {
    width: 100%;
    /* Quitamos el color de fondo para darle un look más limpio */
    background: transparent; 
    color: #333; /* Cambiamos el color de la letra a oscuro */
    padding: 14px 20px;
    font-size: 16px; /* Hacemos el texto un poco más pequeño */
    text-align: left;
    border: none;
    cursor: pointer;
    font-weight: bold;
    display: flex; /* Permite alinear el texto y el ícono */
    justify-content: space-between; /* Empuja el ícono al final */
    align-items: center;
    transition: background-color 0.3s;
}

.acordeon-btn:hover {
    background: #f0f0f0; /* Un color muy suave al pasar el ratón */
}

/* 🌟 AÑADIMOS EL ÍCONO + / - */
.acordeon-btn::before {
    content: '+'; 
    margin-right: 15px;
    font-size: 1.2em;
    color: #b71c1c; /* Color de tu marca */
}

/* Cambia el ícono a '-' cuando el contenido está abierto */
.acordeon-item.active .acordeon-btn::before {
    content: '−'; /* Usamos el signo menos unicode para mejor presentación */
}

/* Si quieres que el texto del botón también cambie de color cuando está activo */
.acordeon-item.active .acordeon-btn {
    color: #b71c1c; 
}

/* Contenido del Acordeón */
.acordeon-content {
    /* Mantenemos el display: none; y la clase .open lo activa */
    display: none; 
    background: #f8f8f8;
    padding: 15px 20px;
    border-top: 1px solid #eee; /* Línea de separación entre el header y el contenido */
}

/* 🌟 REGLA CRUCIAL: Abre el contenido */
.acordeon-content.open {
    display: block;
}

/* Estilos de la lista (URLs de PDFs) */
.acordeon-content ul {
    list-style-type: disc;
    margin: 0;
    padding-left: 20px;
}

.acordeon-content ul li {
    margin-bottom: 8px;
}

.acordeon-content a {
    color: #c62828;
    font-weight: normal; /* Menos negrita, más legible */
    text-decoration: none;
}

.acordeon-content a:hover {
    text-decoration: underline;
}

/* Estilos para el texto (Inversión, Servicios) dentro del acordeón */
.acordeon-content p {
    margin-bottom: 10px;
}

.acordeon-content p:last-child {
    margin-bottom: 0;
}




/* Ajuste para despejar el espacio del header fijo */
main {
    flex-grow: 1;  
}
















/* =============================
   ESTILOS PARA NIVEL INICIAL
   (coinciden con el diseño general)
============================= */

/* Imagen grande de presentación */
#nivel-inicial .content img {
  width: 100%;
  max-width: 600px; /* 🔥 Tamaño más pequeño y controlado */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  margin-bottom: 25px;
  object-fit: cover;
}

/* Texto */
#nivel-inicial p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
}

/* Títulos generales */
#nivel-inicial h2,
.section.red h2,
.section.yellow h2,
.section.blue h2 {
  font-size: 2rem;
  color: #b71c1c; /* 🔥 rojo institucional */
  margin-bottom: 25px;
  font-weight: 800;
}

/* 🔥 Corrección: SOLO el título de Áreas de Desarrollo debe ser blanco */
.section.red h2 {
  color: white !important;
}

/* Tarjetas de áreas de desarrollo (ya estaban, pero mejor coherencia) */
.nivel-card h3 {
  background: #ffc107;   /* amarillo institucional */
  color: #b71c1c;
  font-weight: bold;
}

/* Metodología: imagen y texto */
.section.yellow img,
.section.red img,
.section.blue img {
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Ajustes responsive */
@media (max-width: 768px) {
  #nivel-inicial .content img {
    max-width: 90%; /* Más pequeño en móvil */
  }
}





/* === PORTADA DEL NIVEL === */

.portada-nivel {
    position: relative;
    width: 100%;
    height: 80vh;          /* Ajusta la altura si quieres */
    background-image: url('tu-imagen.jpg');
    background-size: cover;   /* 🔥 Tapa TODO sin bordes */
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

/* Capa oscura encima de la imagen */
.portada-nivel .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);  /* 🔥 Oscurecer la imagen */
}

/* El texto */
.portada-nivel h1 {
    position: relative;  /* Para estar encima del overlay */
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}




/* === HERO PARA NIVELES (imagen oscura con título al centro) === */
.hero-nivel {
  position: relative;
  width: 100vw;
  height: 55vh;       /* Tamaño tipo banner como el index */
  background-image: url("imageninicial.webp");  /* Cambia la imagen si quieres */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Capa oscura encima de la imagen */
.hero-nivel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);  /* oscuridad suave */
}

/* Texto centrado */
.hero-nivel-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
}

.hero-nivel-text h2 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-nivel {
    height: 300px;
  }
  .hero-nivel-text h2 {
    font-size: 2.2rem;
  }
}