body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: orange;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  text-align: center;
}

img {
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
  border: none;
}

img:hover {
  transform: scale(1.30);
  
}

h1 {
  color: #333;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  margin-bottom: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: default;
}

h1:hover {
  transform: scale(1.05);
  color: #090909;
}

p {
  color: #666;
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: default;
}

p:hover {
  transform: scale(1.02);
  color: #000000;
}

.Contenedor {
  background: #ffffff;
  padding: clamp(20px, 5vw, 40px);
  border-radius: 15px;
  box-shadow: 30px 30px 30px 30px rgba(0.1, 0.1, 0.1, 0.1);
  max-width: 600px;
  width: 90%;
  box-sizing: border-box;
}

.footer {
  font-size: clamp(14px, 2.5vw, 20px);
  margin-top: 10px;
}

.cargando {
  position: relative;
  height: 8px;
  width: 100%;
  max-width: 300px;
  margin: 10px auto;
  background-color: #b9b6b6;
  overflow: hidden;
  border-radius: 4px;
}

.cargando::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, #0b0b0b, #040504);
  animation: loadingAnim 1.2s infinite;
  border-radius: 4px;
}

@keyframes loadingAnim {
  0% {
    left: -50%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
