* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #000;
  color: white;
  text-align: center;
}

header {
  position: relative;
  height: 100vh;
  background: url('../img/ALMAS-LIBRES.png') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header h1 {
  font-size: 4rem;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
}

.quote {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  font-size: 1.5rem;
  font-style: italic;
}

.social {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social a {
  text-decoration: none;
  color: white;
  font-size: 2rem;
  transition: transform 0.3s;
}

.social a:hover {
  transform: scale(1.2);
  color: #00c3ff;
}

.whatsapp-btn {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 15px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: background 0.3s;
  margin-bottom: 50px;
}

.whatsapp-btn:hover {
  background-color: #1ebe5c;
}

footer {
  background-color: #111;
  padding: 10px;
  font-size: 0.9rem;
  color: #ccc;
}