* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, #f3e5f5, #ffffff); 
    color: #333;
    line-height: 1.6;
    text-align: center;
    padding-top: 70px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1200px;
    margin: 0 auto; 
  }
  
  p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2em; 
    text-align: center;
    color: #555; 
    line-height: 1.8;
  }

  header {
    background: rgba(170, 140, 175, 0.85);
    backdrop-filter: blur(10px); 
    color: #fff;
    padding: 25px 40px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    height: 100px;
  }
  
  header img {
    width: 90px; 
    height: auto;
    margin-right: 20px; 
    vertical-align: middle;
    border-radius: 10px; 
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  
  header img:hover {
    transform: scale(1.1); 
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3); 
  }
  
  header h1 {
    display: inline-block;
    font-size: 3.5em;
    font-weight: normal;
    margin-left: 15px;
    color: #fff;
    font-family: "Brush Script MT", cursive; 
    text-transform: none; 
    letter-spacing: 1.5px; 
    font-style: italic; 
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  }
  
  
  /* Barra de navegación */
  nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 12px;
  flex-wrap: wrap;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  background-color: #572364;
  color: #fff;
  font-size: 1.3em; 
  text-decoration: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
}

nav ul li a span {
  position: absolute;
  bottom: -28px;
  font-size: 0.75em;
  background: #8e6995;
  color: #fff;
  padding: 3px 8px;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

nav ul li a:hover {
  background-color: #8e6995;
  transform: scale(1.1);
}

nav ul li a:hover span {
  opacity: 1;
  transform: translateY(0);
}

  .product-care {
    background-color: #fdf3e7;
    color: #5a4a42; 
    padding: 50px 20px;
    text-align: center;
}

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&display=swap');

.product-care h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 3.8em;
    font-weight: 700;
    color: #290040; 
    text-align: center;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeIn 1.5s ease-in-out;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* Tarjetas */
.care-card {
    background: linear-gradient(135deg, #f3e5f5, #fff3e6);
    border-radius: 30px 10px 30px 10px;
    padding: 40px 25px;
    max-width: 280px;
    flex: 1;
    box-shadow: 0 10px 30px rgba(117, 72, 100, 0.15);
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    border: 2px dashed rgba(142, 74, 97, 0.2);
}

.care-card:hover {
    transform: translateY(-12px) rotate(-1deg) scale(1.05);
    box-shadow: 0 25px 40px rgba(117, 72, 100, 0.25);
    background: linear-gradient(135deg, #f8e3f2, #fff5e6);
}

.care-card .icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.care-card h2 {
    font-family: 'Playfair Display', serif;
    color: #754864;
    margin-bottom: 12px;
    font-size: 1.5em;
}

.care-card p {
    font-size: 1.1em;
    line-height: 1.5;
    color: #3d2c2e;
}

.video-container {
    margin: 50px auto 0;
    max-width: 700px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.video-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .product-care h1 {
        font-size: 2em;
        margin-bottom: 30px;
    }
    
    .care-card {
        max-width: 90%;
    }
    
    .video-container iframe {
        height: 250px;
    }
}

/* Pie de página */
footer {
    background: #8e44ad; 
    color: white;
    padding: 30px 0;
    font-family: 'Poppins', sans-serif;
    text-align: center;
  }
  
  .footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-section h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 2px solid white;
    display: inline-block;
    padding-bottom: 5px;
  }
  
  /* Íconos de redes sociales */
  .social-links a {
    display: inline-block;
    color: white;
    font-size: 2em; 
    margin: 10px 15px;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .social-links a:hover {
    transform: scale(1.2);
    color: #e1bee7; 
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 15px;
    font-size: 0.9em;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 20px;
  }
  