/** Shopify CDN: Minification failed

Line 9:2 All "@import" rules must come first

**/
 @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
  html { scroll-behavior: smooth; }
  body { background: transparent !important; font-family: 'Bebas Neue', sans-serif; margin:0; padding:0; }
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
  
  .premium-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px 20px;
    position: sticky;
    top: 0;
    z-index: 10;
    flex-wrap: wrap;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    font-family: 'Poppins', sans-serif;
  }
  
  .premium-filters button {
    position: relative;
    background: linear-gradient(120deg, #aaa, #fff);
    color: #000;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 300 !important;
    cursor: pointer;
    text-transform: uppercase;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
  }
  
  /* Efecto brillo animado */
  .premium-filters button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.8) 50%,
      rgba(255, 255, 255, 0.1) 100%
    );
    transform: skewX(-25deg);
    animation: shine 2.5s infinite;
  }
  
  @keyframes shine {
    0% {
      left: -75%;
    }
    100% {
      left: 125%;
    }
  }
  
  .premium-filters button:hover {
    background: linear-gradient(120deg, #fff, #dcdcdc);
    transform: scale(1.05);
    color: #111;
  }

  .elegant-services {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
  }
  .service-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    background: rgba(20,20,20,0.2);
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(50px);
  }
  .service-item.reverse { flex-direction: row-reverse; }
  .service-item .media { width: 478px; max-height: 600px; aspect-ratio: 9/16; border-radius: 20px; overflow: hidden; box-shadow: 0 0 30px rgba(255,255,255,0.08); flex-shrink: 0; }
  .service-item .media video { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; display: block; }
  .service-item .img { flex: 1 1 300px; max-width: 500px; }
  .service-item img { width:100%; height:auto; max-height:600px; object-fit:cover; border-radius:12px; box-shadow:0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
  .service-item img:hover { transform: scale(1.03); }
  .service-item .info { flex:1 1 300px; padding:20px; color:#e0e0e0; display:flex; flex-direction:column; justify-content:center; font-size:15px; line-height:1.8; }
  .service-item h2 { font-size:28px; color:#fff; text-transform:uppercase; margin-bottom:10px; letter-spacing:1px; }
  .service-item ul { padding-left:1.2em; list-style:disc; }
  .btn-ghost { padding:12px 30px; border:1.5px solid #888; color:#ddd; border-radius:40px; background:linear-gradient(145deg,#1c1c1c,#2a2a2a); display:inline-flex; align-items:center; gap:12px; font-size:14px; font-weight:500; text-transform:uppercase; box-shadow:inset 0 0 0 0 rgba(255,255,255,0.1); transition:all 0.4s ease; }
  .btn-ghost:hover { background:linear-gradient(135deg,#2e2e2e,#444); color:#fff; box-shadow:0 0 15px rgba(255,255,255,0.2), inset 0 0 15px rgba(255,255,255,0.05); border-color:#ccc; transform:translateY(-2px); }

  @media (max-width: 900px) {
    .premium-filters { z-index: 1; }
    .service-item { flex-direction: column !important; text-align: center; }
    .service-item .media { width: 100%; height: auto; }
    .service-item .info { align-items: center; }
  }
