/* Bloom - style.css */
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    color: #303030;
    background-color: #ffffff;
  }
  
  h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    margin: 0;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .navbar {
    background-color: #E4A4C8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  
  .logo {
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 2px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  .nav-links a.active {
    border-bottom: 2px solid #fff;
  }
  
  .hero {
    padding: 8rem 2rem;
    text-align: center;
    color: white;
    background: linear-gradient(120deg, #E4A4C8, #B8E0D2, #E4A4C8);
    background-size: 600% 600%;
    animation: gradientShift 15s ease infinite;
  }
  
  @keyframes gradientShift {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }  
  
  .hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s;
  }
  
  .btn-primary {
    background-color: #fff;
    color: #E4A4C8;
  }
  
  .btn-primary:hover {
    background-color: #f4f4f4;
  }
  
  .btn-secondary {
    background-color: #E4A4C8;
    color: white;
  }
  
  .btn-secondary:hover {
    background-color: #d28fb1;
  }
  
  .intro, .cta {
    padding: 60px 0;
    text-align: center;
  }
  
  .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
  }
  
  .card {
    width: 250px;
    text-align: center;
  }
  
  .card img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  .card h4 {
    margin-top: 15px;
    font-size: 1.1rem;
  }
  
  .card p {
    font-size: 0.95rem;
    color: #555;
  }
  
  .footer {
    background-color: #f4f4f4;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
  }
  .footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 20px;
    background-color: #f4f4f4; /* o el color de fondo que estés usando */
    color: #333;
    font-size: 14px;
    flex-wrap: wrap;
  }

  .footer-info {
    background-color: #f4f4f4;
    color: #333;
  }
  
  .footer-columns div {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-columns h4 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
  }
  
  .footer-columns p {
    line-height: 1.6;
  }
  
  .contador {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
  }
  
  .contador button {
    background-color: #E4A4C8;
    color: white;
    border: none;
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contador button:hover {
    background-color: #d28bb7;
  }
  
  .contador span {
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .iconos-producto {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
  }
  
  .iconos-producto img {
    width: 70px;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%); /* opcional para estilo minimal */
    opacity: 0.8; /* opcional para suavizar */
    transition: opacity 0.3s;
  }
  
  .iconos-producto img:hover {
    opacity: 1;
  }
  
  .compra-look {
    padding: 6rem 2rem;
    background-color: #fff;
  }
  
  .look-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .look-item {
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease;
  }
  
  .look-item img {
    width: 100%;
    height: 450px; /* más alto para efecto tipo móvil */
    aspect-ratio: 9 / 16; /* relación tipo pantalla de celular */
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
  }  
  
  .look-item img:hover {
    transform: scale(1.03);
  }
  
  .look-item p {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
  }
  
  .look-item a {
    color: #8C5C91;
    text-decoration: none;
    font-weight: 500;
  }
  
  .look-item a:hover {
    text-decoration: underline;
  }
  