    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #fff0f5;
    }

    header {
      background-color: #e60073;
      padding: 20px 0;
    }

    .contenedor-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
    }

    .titulo-header {
      font-family: 'Chewy', cursive;
      font-size: 50px;
      color: white;
    }

    .menu a {
      margin-left: 20px;
      text-decoration: none;
      color: white;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .menu a:hover {
      color: #ffd6e8;
    }

    .logo img {
      border-radius: 15px;
    }
    
@media (max-width: 600px) {
  .contenedor-header {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 10px 15px !important;
  }

  .logo {
    order: 1; /* que aparezca después */
    margin-bottom: 10px;
  }

  .logo img {
    width: 80px !important;
    height: auto !important;
    display: block !important;
    border-radius: 12px !important;
  }

  .titulo {
    order: 0;
    margin-bottom: 10px;
  }

  .titulo-header {
    font-size: 30px !important;
    color: white !important;
  }

  .menu {
    order: 2;
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px;
    margin-top: 10px;
  }

  .menu a {
    padding: 8px 14px !important;
    background-color: #e60073 !important;
    border-radius: 8px !important;
    color: white !important;
    font-size: 16px !important;
    text-decoration: none !important;
  }

  .menu a:hover {
    background-color: #ff4ca1 !important;
  }
}
