/* Fondo con degradado */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom, #342e34, #665863);
  color: #f7f7f7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
/* Contenedor principal */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
header {
  margin-top: 40px;
  margin-bottom: 40px;
}
header img {
  width: 150px;
  height: auto;
}
h1 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #f7a385; /* color de acento */
}
p.description {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
  color: #cecbcc;
}
/* Sección de aplicaciones */
.apps-section {
  width: 100%;
  max-width: 700px;
}
.apps-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #f7a385;
}
.app-card {
  background: #342e34cc; /* un poco transparente */
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: background-color 0.3s ease;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
}
.app-card:hover {
  background-color: #f7a385dd;
  color: #342e34;
}
.app-logo {
  width: 60px;
  height: 60px;
  margin-right: 20px;
  flex-shrink: 0;
}
.app-info {
  flex-grow: 1;
}
.app-info h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}
.app-info p {
  margin: 0;
  font-size: 1rem;
  color: inherit;
}
.app-button {
  background: #f7a385;
  color: #342e34;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-left: 20px;
  flex-shrink: 0;
}
.app-button:hover {
  background-color: #ed9aa0;
}
/* Pie de página */
footer {
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  background: #342e34;
  color: #cecbcc;
  margin-top: auto;
}
footer a {
  color: #f7a385;
  text-decoration: none;
  margin: 0 8px;
}
footer a:hover {
  text-decoration: underline;
}
/* Responsive */
@media (max-width: 600px) {
  .app-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .app-button {
    margin: 15px 0 0 0;
    width: 100%;
  }
  .app-logo {
    margin-bottom: 10px;
  }
}
