/** Shopify CDN: Minification failed

Line 11:0 Unexpected "{"
Line 11:1 Expected identifier but found "%"
Line 12:0 All "@import" rules must come first
Line 13:0 All "@import" rules must come first
Line 287:0 Unexpected "{"
Line 287:1 Expected identifier but found "%"

**/
{% style %}
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

body {
  font-family: 'Bebas Neue', sans-serif;
  background-color: #0e0e0e;
  color: #f1f1f1;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.bg-elegante {
  background: rgba(20,20,20,0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border-radius: 30px;
}

.btn-brillo {
  position: relative;
  background: linear-gradient(120deg, #aaa, #fff);
  color: #000 !important;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300 !important;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255,255,255,0.2);
}
.btn-brillo::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%; }
}
.btn-brillo:hover {
  background: linear-gradient(120deg, #fff, #dcdcdc);
  transform: scale(1.05);
  color: #111;
}

.d3-portfolio {
  max-width: 1091px;
  margin: 80px auto;
  position: relative;
  padding: 40px 20px;
  overflow: hidden;
}

.d3-slide {
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  transition: all 0.6s ease;
}

.d3-slide.active {
  display: flex;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.d3-video {
  width: 480px;
  max-width: 100%;
  aspect-ratio: 11 / 16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.d3-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  transition: transform 0.3s ease;
}

.d3-video video:hover {
  transform: scale(1.03);
}

.d3-content {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.d3-content h2 {
  font-size: 28px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fff, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.d3-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #bbb;
}

.d3-meta {
  font-size: 14px;
  color: #888;
  font-style: italic;
}

.d3-price {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}

.btn-cta {
  margin-top: 16px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  pointer-events: none;
}

.carousel-arrow {
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-arrow:hover {
  background: rgba(255,255,255,0.3);
}

.carousel-arrow svg {
  stroke: #fff;
  stroke-width: 2;
  width: 24px;
  height: 24px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 40px;
}

.carousel-indicators button {
  background: #444;
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background: #fff;
  transform: scale(1.2);
}

/* ——— Mobile Fixes Sin Cambiar Estética de Botones ——— */
@media (max-width: 900px) {
  .d3-portfolio {
    padding: 40px 16px 60px;
  }

  .d3-slide {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .d3-video {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 9 / 16;
  }

  .d3-content {
    align-items: center;
  }

  .d3-content h2 {
    font-size: 24px;
    text-align: center;
  }

  .d3-content p {
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
  }

  .d3-meta,
  .d3-price {
    text-align: center;
  }

  .btn-cta {
    align-self: center;
  }

  .carousel-controls {
    position: relative;
    top: auto;
    bottom: auto;
    margin-top: 20px;
    transform: none;
    justify-content: center;
    gap: 40px;
    padding: 0;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-arrow svg {
    width: 20px;
    height: 20px;
  }
}

{% endstyle %}