* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #e0bee9;
  text-align: center;
  line-height: 1.6;
}

header {
  padding: 30px 0;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo {
  max-width: 200px;
  height: auto;
}

main {
  padding: 50px 20px;
}

h1 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
}

.subtexto {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.boton-compra {
  display: inline-block;
  background-color: #a52f87;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 8px;
  transition: background 0.3s;
}

.boton-compra:hover {
  background-color: #e843c4;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #571453e0;
  color: #eee;
  padding: 40px 20px;
}

footer h2 {
  margin-bottom: 10px;
}

.contacto, .redes {
  margin-bottom: 20px;
}

.iconos-redes img {
  width: 32px;
  height: 32px;
  margin: 0 10px;
  transition: transform 0.2s;
}

.iconos-redes img:hover {
  transform: scale(1.1);
}
