@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: #f8f0ff;
  color: #3d005e;
}

.contenedor {
  max-width: 800px;
  margin: auto;
   background: linear-gradient(45deg, #bf73db, #ffa0e4);
  padding: 40px 20px 20px 20px;
  border-radius: 10px;
  border: 2px solid #8e20aa;

}

.fila {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px 0;
}


.contenido {
  max-width: 400px;
  text-align: center;
  font-family: 'Texto';
    font-weight: bold;
  color: #660088;
  margin-bottom: 10px;
  font-size: 1.5em;
}


header {
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  max-width: 110px;
  margin-bottom: 10px;
  border-radius: 15px;
}
.imagenes{
min-width: 140px;
  margin-bottom: 10px;
  border-radius: 10px;
}
h1 {
 font-family: 'Titulo';
 font-weight: bold;
  color: #8200aa;
  font-size: 2.3em;
  margin-bottom: 0.2em;
}

.seccion {
  margin: 20px 30px;
  
}

.seccion h2{
    
    font-family: 'Texto';
    font-weight: bold;
  color: #660088;
  margin-bottom: 10px;
}

ul, .parrafo{
  list-style-type: "⭐ ";
  padding-left: 20px;
  font-family: 'Texto';
    font-weight: bold;
  color: #140c16;
  margin-bottom: 10px;
}

.cuadros {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.cuadro {
background: linear-gradient(45deg, #b57ccc, #cf8cbc);
    border-radius: 10px;
  padding: 15px;
  width: 270px;
  font-family: 'Principal';
    font-weight: bold;
  color: #660088;
  margin-bottom: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);

}

.cuadro img {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}

footer {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #d9b4f4;
  padding-top: 20px;
  font-size: 0.9em;
}

.derechos {
  color: #999;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .alternado {
    flex-direction: column;
  }

  .card-contenedor {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
}

.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);
}
