@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: #000000;
  color: #440055;
}


h1 {
 font-family: Titulo;
 font-weight: bold;
  color: #8200aa;
  font-size: 2.9em;
  margin-bottom: 0.2em;
}
ul, .parrafo{
  list-style-type: "⭐ ";
  font-size: 1.2em;
  padding-left: 20px;
  font-family: 'Texto';
    font-weight: bold;
  color: #140c16;
  margin-bottom: 10px;
}

h2 .parrafo{
    font-family: Texto;
    font-weight: bold;
  color: #660088;
  margin-bottom: 10px;
}

.subtitulo{
  font-size: 1.2em;
  color: #6f2779;
  font-family: 'subtitulo';
}
.sub{
  font-size: 1.4em;
  color: #4d454e;
  font-family: 'subtitulo';
}


.infografia {
  max-width: 800px;
  margin: auto;
  background: linear-gradient(45deg, #c964a7, #db65ff);
  padding: 40px;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
  border-radius: 12px;
}

.encabezado {
  text-align: center;
  margin-bottom: 40px;
}

.encabezado h1 {
  font-size: 2.8em;
  color: #a00075;
  margin: 0;
}

.subtitulo {
  font-size: 1.1em;
  color: #7b3472;
}

.bloque {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.bloque-img {
  width: 260px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.9);
}

.texto {
  flex: 1;
  min-width: 250px;
}

.texto h2 {
  color: #b5008b;
  margin-top: 0;
}

.texto ul {
  list-style-type: "⭐ ";
  padding-left: 20px;
}

.combinado {
  flex-direction: row;
}

.invertido {
  flex-direction: row-reverse;
}

.contacto {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 3px solid #9b788b;
  font-size: 0.95em;
}

.boton-imprimir {
  display: inline-block;
  background-color: var(--morado-oscuro);
  color: white;
  font-family: Principal;
  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);
}