body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #fff7f9;
  color: #444;
}

.encabezado {
  background-color: #ffc0cb;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contenedor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.logo {
  height: 90px; 
  width: 90px;  
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.titulo {
  font-size: 1.8em;
  margin: 0;
  color: #d6336c;
  flex-grow: 1;
  text-align: center;
}

.boton-agregar {
  background-color: #ff6f91;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.boton-agregar:hover {
  background-color: #ff4f7a;
}

.video-apartado {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background: #ffe4ec;
}

.video-apartado iframe {
  max-width: 100%;
  border-radius: 12px;
}

.intro {
  padding: 40px 20px;
  text-align: center;
}

.intro h2 {
  font-size: 2em;
  color: #e60073;
}

.intro p {
  font-size: 1.1em;
  max-width: 600px;
  margin: 0 auto 20px;
}

.boton {
  background-color: #e60073;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.boton:hover {
  background-color: #cc005f;
}

.footer {
  background-color: #ffe0eb;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
  color: #555;
  border-top: 1px solid #ffc0cb;
}
