@font-face{
    font-family:'Titulo';
    src: url(Fuentes/CHICKEN\ Pie\ Height.ttf);
    font-size: x-large;
}

@font-face{
    font-family: 'Subtitulo';
    src: url(Fuentes/KGPerfectPenmanship.ttf);
    font-size: x-large;
}

@font-face{
    font-family: 'Texto';
    src: url(Fuentes/Random\ Wednesday.ttf);
    font-size: x-large;
}

@font-face{
    font-family: 'Principal';
    src: url(Fuentes/Hey\ Comic.ttf);
    font-size: x-large;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000000;
  color: #3d004d;
}
h1 {
 font-family: 'Titulo';
 font-weight: bold;
  color: #8200aa;
  font-size: 2.9em;
  margin-bottom: 0.2em;
}


h2{
    font-family: 'Texto';
    font-size: 1.2em;
    font-weight: bold;
  color: #660088;
  margin-bottom: 10px;
}

.parrafo{
    font-family: 'Texto';
    font-size: 1.1em;
    font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}
.sub{
    font-family: 'Texto';
    font-weight: bold;
  color: #4e0155;
  font-size: 2em;
  margin-bottom: 10px;
}



.infografia {
  max-width: 800px;
  margin: auto;
  background: linear-gradient(45deg, #ce45b0, #c017aa);
  padding: 40px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  border-radius: 12px;
}

.encabezado {
  text-align: center;
  margin-bottom: 30px;
}

.encabezado h1 {
  font-size: 2.9em;
  color: #180d11;
  margin-bottom: 0;
}

.subtitulo {
  color: #2c2a2c;
  font-size: 1.3em;
}

.bloque {
  margin-bottom: 40px;
}

.fila-horizontal {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.invertido {
  flex-direction: row-reverse;
}

.imagen-lateral {
  width: 250px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 15px rgba(0,0,0,1);
}

.texto-lateral {
  flex: 1;
  min-width: 250px;
}

.texto-lateral h2 {
  color: #bf017f;
  margin-bottom: 10px;
}

.imagen-sola {
  text-align: center;
}

.imagen-banner {
  width: 40%;
  max-width: 40%;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.pie {
  text-align: center;
  font-size: 0.95em;
  color: #0f0f0f;
  border-top: 3px solid #9e0c94;
  padding-top: 20px;
}
.boton-imprimir {
  display: inline-block;
  background-color: var(--morado-oscuro);
  color: rgb(66, 0, 92);
  font-family: Principal;
  text-align: center;
  font-size: 1.1rem;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.boton-imprimir:hover {
  background-color: var(--lavanda);
  transform: scale(1.03);
}

