  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Playfair+Display:wght@600&display=swap');
    :root {
      --morado-principal: #926399;
      --rosa-brillante: #ff4081;
      --rosa-oscuro: #f50057;
      --fondo-claro: #fff;
      --texto-principal: #333;
      --blanco: #fff;
    }
    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(145deg, var(--morado-principal), var(--rosa-brillante));
      color: var(--texto-principal);
      line-height: 1.7;
      font-size: 16px;
      letter-spacing: 0.2px;
      position: relative;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    header {
      background-color: var(--morado-principal);
      color: var(--blanco);
      padding: 1rem;
      text-align: center;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    @keyframes zoomBrillo {
      0%, 100% {
        transform: scale(1);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4), 0 0 10px var(--rosa-brillante), 0 0 20px var(--rosa-brillante);
      }
      50% {
        transform: scale(1.05);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 15px var(--rosa-brillante), 0 0 30px var(--rosa-brillante);
      }
    }
    h1, h2 {
      font-family: 'Playfair Display', serif;
      text-align: center;
      margin: 20px 0;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4), 0 0 10px var(--rosa-brillante), 0 0 20px var(--rosa-brillante);
      transition: all 0.3s ease;
      animation: zoomBrillo 3s ease-in-out infinite;
      transition: all 0.3s ease;
    }
    h1 {
      font-size: 2rem;
      color: #fff;
    }
    h2 {
      font-size: 1.6rem;
      color: var(--morado-principal);
    }
    .hamburguesa {
      position: fixed;
      top: 20px;
      left: 5px;
      font-size: 1rem;
      background: var(--morado-principal);
      border: none;
      color: var(--blanco);
      border-radius: 10px;
      padding: 0.5rem 0.7rem;
      cursor: pointer;
      z-index: 1100;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      font-weight: 600;
    }
    .hamburguesa:hover {
      background: var(--rosa-brillante);
    }
    nav {
      position: fixed;
      top: 0;
      left: -220px;
      width: 200px;
      height: 100vh;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(12px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.2rem;
      transition: left 0.3s ease;
      z-index: 1050;
    }
    nav.mostrar {
      left: 0;
    }
    nav a {
      background: var(--rosa-brillante);
      color: var(--blanco);
      padding: 0.6rem 1.2rem;
      border-radius: 20px;
      font-weight: 500;
      transition: all 0.3s ease;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      font-size: 1rem;
    }
    nav a:hover {
      transform: scale(1.05);
      background: var(--rosa-oscuro);
    }
    .seccion {
      max-width: 1100px;
      margin: 2rem auto;
      padding: 1rem 2rem;
      background: linear-gradient(to bottom right, #ffffff, #f5f5f5, #eaeaea);
      border-radius: 20px;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
    }
    .bloque {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 2rem;
      gap: 1.5rem;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeSlideIn 1s ease forwards;
    }
    .bloque:nth-child(1) { animation-delay: 0.3s; }
    .bloque:nth-child(2) { animation-delay: 0.6s; }
    .bloque:nth-child(3) { animation-delay: 0.9s; }
    .bloque:nth-child(4) { animation-delay: 1.2s; }
    .bloque:nth-child(even) {
      flex-direction: row-reverse;
    }
    @keyframes flotarYrotar {
      0% { transform: rotate(0deg) translateY(0); }
      25% { transform: rotate(2deg) translateY(-3px); }
      50% { transform: rotate(0deg) translateY(0); }
      75% { transform: rotate(-2deg) translateY(-3px); }
      100% { transform: rotate(0deg) translateY(0); }
    }
    .bloque img {
      width: 100%;
      max-width: 500px;
      border-radius: 20px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.3);
      object-fit: contain;
      transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
      animation: flotarYrotar 4s ease-in-out infinite;
    }
    .bloque img:hover {
      transform: scale(1.04);
      filter: drop-shadow(0 0 6px var(--rosa-brillante));
    }
    .bloque img:active {
      box-shadow: 0 0 20px var(--rosa-brillante), 0 0 40px var(--morado-principal), 0 0 60px white;
      transform: scale(0.97) rotate(-1deg);
    }
    .texto {
      flex: 1;
      text-align: justify;
      font-size: 1.05rem;
      color: #444;
      min-width: 280px;
      font-family: 'Poppins', sans-serif;
    }
    @keyframes fadeSlideIn {
      0% {
        opacity: 0;
        transform: translateY(40px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .bloque {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .bloque.visible {
      opacity: 1;
      transform: translateY(0);
      animation: fadeSlideIn 1s ease forwards;
    }
    @media screen and (max-width: 768px) {
      .bloque, .bloque:nth-child(even) {
        flex-direction: column;
        text-align: center;
      }
      .decorativas {
        display: none;
      }
      h1 {
        font-size: 1.6rem;
      }
      h2 {
        font-size: 1.4rem;
      }
      .texto {
        font-size: 1rem;
      }
    }
    .decorativas {
      position: fixed;
      top: 20px;
      left: 100px;
      display: flex;
      gap: 12px;
      z-index: 1100;
      align-items: center;
    }
    .circulo {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      border: 2px solid var(--morado-principal);
    }
    .circulo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .titulo-inmujer {
      color: var(--blanco);
      font-weight: bold;
      font-size: 1.3rem;
      animation: brilloInmujer 2.5s infinite ease-in-out;
      transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
      cursor: pointer;
    }
    .titulo-inmujer:hover {
      color: var(--rosa-brillante);
      transform: scale(1.1);
      text-shadow: 0 0 12px var(--rosa-brillante), 0 0 24px var(--rosa-oscuro), 0 0 36px #fff;
    }
    @keyframes brilloInmujer {
      0%, 100% {
        text-shadow: 0 0 4px var(--rosa-brillante), 0 0 8px var(--rosa-oscuro);
        transform: scale(1);
      }
      50% {
        text-shadow: 0 0 14px var(--rosa-brillante), 0 0 28px var(--rosa-oscuro), 0 0 32px white;
      }
    }
    h1, h2 {
      font-family: 'Playfair Display', serif;
      text-align: center;
      margin: 2.5rem auto 1.5rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 12px var(--rosa-brillante), 0 0 25px var(--rosa-brillante);
      transition: all 0.3s ease;
      max-width: 900px;
      font-weight: 700;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid var(--rosa-brillante);
    }
    h1 {
      font-size: 3rem;
      color: #fff;
    }
    h2 {
      font-size: 2.2rem;
      color: var(--morado-principal);
    }
    .hero {
      background: url("img/mujeres-felices-tiro-medio-posando-playa_23-2149313109.jpg") no-repeat center center/cover;
      color: #fff;
      text-align: center;
      padding: 6rem 2rem;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 70vh;
      overflow: hidden;
      margin-top: 0;
      border: none;
    }
    .hero::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
   background: rgba(146, 99, 153, 0.25);
      z-index: 1;
      mix-blend-mode: screen;
      filter: brightness(1.2),contrast(1.3);
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }
    @media screen and (max-width: 1024px) {
  .bloque {
    flex-direction: column !important;
    text-align: center;
  }

  .bloque img {
    max-width: 90%;
  }

  .texto {
    font-size: 1rem;
    padding: 0 1rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 4rem 1rem;
    min-height: 60vh;
  }

  .hero-content {
    font-size: 1rem;
  }

  .hamburguesa {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
    top: 10px;
    left: 10px;
  }

  nav {
    width: 180px;
    padding: 2rem 1rem;
  }

  nav a {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .seccion {
    padding: 1rem;
  }

  .circulo {
    width: 60px;
    height: 60px;
  }

  .titulo-inmujer {
    font-size: 1rem;
  }

  .decorativas {
    top: 12px;
    left: 80px;
    gap: 8px;
  }
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .bloque img {
    max-width: 100%;
  }

  .texto {
    font-size: 0.95rem;
  }

  .circulo {
    width: 50px;
    height: 50px;
  }

  .titulo-inmujer {
    font-size: 0.95rem;
  }

  .hero {
    padding: 3rem 1rem;
    min-height: 50vh;
  }

  .hamburguesa {
    font-size: 0.8rem;
    padding: 0.3rem 0.5rem;
  }

  nav a {
    font-size: 0.85rem;
  }
}