/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
  }

  header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
  }

  header img {
    height: 40px;
  }

  main {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
  }

  .logo-circle {
    margin: 0 auto 20px;
    overflow: hidden;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  h1 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  h2 {
    color: #25d366;
    font-weight: 500;
    margin-bottom: 20px;
  }

  .cta-box {
    background-color: #1f2422;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #ffffff;
  }

  .cta-button {
    background-color: #25d366;
    color: white;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    animation: pulse 1.5s infinite;
    cursor: pointer;
  }

  .xpo-notification-wrap {
    position: fixed;
    background: #1e1e1e;
    color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    width: 280px;
    z-index: 9999;
    border: 1px solid #333;
    backdrop-filter: blur(6px);
    opacity: 0;
    left: -300px;
    bottom: 100px;
    transition: all 0.5s ease;
  }

  .xpo-notification-wrap.show {
    left: 20px;
    opacity: 1;
  }

  .xpo-img-wrap img {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #444;
  }

  .xpo-col {
    margin-left: 12px;
  }

  .xpo-notification-name {
    font-weight: bold;
    font-size: 0.9em;
    color: #fff;
  }

  .xpo-notification-product {
    font-size: 0.85em;
    color: #22d3ee;
  }

  .xpo-location {
    font-size: 0.75em;
    color: #cbd5e1;
  }

  .xpo-location::before {
    content: "📍";
    margin-right: 4px;
  }

  .xpo-notification-wrap {
    position: fixed;
    background: #1e1e1e;
    color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    width: 280px;
    z-index: 9999;
    border: 1px solid #333;
    backdrop-filter: blur(6px);
    opacity: 0;
    left: -300px;
    bottom: 100px;
    transition: all 0.5s ease;
  }
  .xpo-notification-wrap.show { left: 20px; opacity: 1; }
  .xpo-img-wrap img {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #444;
  }
  .xpo-col { margin-left: 12px; }
  .xpo-notification-name { font-weight: bold; font-size: 0.9em; color: #fff; }
  .xpo-notification-product { font-size: 0.85em; color: #22d3ee; }
  .xpo-location { font-size: 0.75em; color: #cbd5e1; }
  .xpo-location::before { content: "📍"; margin-right: 4px; }

  .xpo-notification-wrap {
    position: fixed;
    background: #1e1e1e;
    color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    width: 280px;
    z-index: 9999;
    border: 1px solid #333;
    backdrop-filter: blur(6px);
    opacity: 0;
    left: -300px;
    bottom: 100px;
    transition: all 0.5s ease;
  }
  .xpo-notification-wrap.show { left: 20px; opacity: 1; }
  .xpo-img-wrap img {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #444;
  }
  .xpo-col { margin-left: 12px; }
  .xpo-notification-name { font-weight: bold; font-size: 0.9em; color: #fff; }
  .xpo-notification-product { font-size: 0.85em; color: #22d3ee; }
  .xpo-location { font-size: 0.75em; color: #cbd5e1; }
  .xpo-location::before { content: "📍"; margin-right: 4px; }

  footer {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 60px;
    padding-bottom: 80px;
  }

  .happy-customers {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(45deg, #1cbcc3, #4abf8f 80%);
    border-radius: 50px;
    padding: 8px 15px;
    margin-top: 25px;
    font-size: 12px;
    color: white;
    font-weight: bold;
  }

  .avatars {
    display: flex;
    margin-right: 10px;
  }

  .avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid white;
    margin-left: -6px;
    object-fit: cover;
  }

  .trustpilot-container {
    display: flex;
    align-items: center;
    background-color: #e9fff9;
    border: 1px dashed #898686;
    border-radius: 8px;
    padding: 6px 12px;
    margin-top: 20px;
    gap: 8px;
    justify-content: center;
  }

  .trustpilot-image {
    width: 60px;
  }

  .trustpilot-logo {
    width: 70px;
  }

  .trustpilot-text {
    font-size: 13px;
    font-weight: 600;
    color: #000000;
  }

  .trustpilot-rating {
    font-size: 10px;
    font-weight: 500;
    color: #000000;
  }

  /* 🔥 Barra Fija con Bono Activo */
  .bono-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #16a34a, #25d366);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
    animation: flash 2s infinite;
    z-index: 999;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.05);
    }

    100% {
      transform: scale(1);
    }
  }

  @keyframes flash {

    0%,
    100% {
      opacity: 1;
    }

    50% {
      opacity: 0.7;
    }
  }

  @media (max-width: 480px) {
    h1 {
      font-size: 22px;
    }

    h2 {
      font-size: 18px;
    }

    header {
      padding: 5px;
    }

    .logo-circle {
      width: 150px;
      height: 150px;
    }
  }