/* Fondo blanco y texto negro para todo */
body {
  background-color: #fff;
  color: #000;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 40px 20px;
  margin: 0;
}

/* Título principal */
h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Texto de subtítulos (número y título de cada punto) */
.punto strong {
  font-size: 1.2rem;
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}

/* Párrafos de texto dentro de cada punto */
.punto {
  max-width: 600px;
  margin: 20px auto;
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
}

/* Footer centrado */
.footer {
  margin-top: 50px;
  font-size: 12px;
  color: #6c6c6c;
  text-align: center;
  border-top: 1px solid #ddd;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-left {
  flex: 1 1 100%;
  order: 1;
}

.footer-center {
  flex: 1 1 100%;
  text-align: center;
  order: 2;
  display: none; /* vacío, oculto */
}

.footer-right {
  flex: 1 1 100%;
  text-align: center;
  order: 3;
}

.footer-right .icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin: 0 5px;
  border: none;
  border-radius: 4px;
  color: #6c6c6c;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  background: transparent;
  transition: color 0.3s;
}

.footer-right .icon:hover {
  color: #000;
}

/* Media Queries para diseño responsivo */

/* Tablets */
@media (max-width: 768px) {
  body {
    padding: 30px 10px;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    flex: none;
    width: 100%;
    margin-bottom: 10px;
  }
}

/* Móviles */
@media (max-width: 480px) {
  body {
    padding: 20px 10px;
  }

  .punto {
    max-width: 100%;
  }
}
