body {
  background: #ccc;
  font-family: "Times New Roman", serif;
}

.btn-volver-circular {
  position: fixed;
  top: 30px;
  left: 30px;
  width: 55px;
  height: 55px;
  background-color: #F5EFEB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s, background-color 0.3s;
  z-index: 1000;
}

.btn-volver-circular img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  
}

.btn-volver-circular:hover {
  background-color: #D9D1CC;
  transform: scale(1.1);
}


.pagina {
  width: 800px;
  background: white;
  margin: 30px auto;
  padding: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.encabezado {
  text-align: left;
  border-bottom: 2px solid black;
  margin-bottom: 20px;
}

.encabezado h1 {
  margin: 0;
  font-size: 36px;
  font-family: "Times New Roman", serif;
}

.encabezado h2 {
  margin: 5px 0;
  font-style: italic;
}

.subtitulo {
  font-size: 14px;
}

/* Sección en dos columnas */
.top {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.texto {
  flex: 2;
}

.texto ul {
  padding-left: 20px;
}

.imagen {
  flex: 1;
}

.imagen img {
  width: 70%;
  border: 0px solid #000;
}

/* Secciones largas */
.bloque {
  margin-top: 25px;
}

.img-manual {
  max-width: 50%;
  display: block;
  margin: 20px auto;
}

.bloque h3 {
  border-bottom: 1px solid black;
  padding-bottom: 5px;
  font-size: 18px;
}

.bloque p {
	
  font-size: 15px;
  line-height: 1;
 
}

.bloque-advertencia {
  background-color: #D9DEDE;
  color: #686969;  
  border-left: 5px solid #A2A5A6;
  padding: 12px 16px;
  margin: 15px 0;
  border-radius: 4px;
  
}

.paso {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 25px;
}

.paso img {
  width: 160px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.paso p {
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .paso {
    flex-direction: column;
    text-align: center;
  }
}


.alerta {
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
}

.peligro {
  background: #ffe5e5;
  color: #900;
}

