/** Shopify CDN: Minification failed

Line 393:3 Unexpected "/"

**/
#spin-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: Arial, sans-serif;
}

#spin-popup.active {
  display: flex;
}
.spin-logo{
    display:block;
    width: 220px;
    max-width:80%;
    margin: -15px auto -10px;
}



.spin-content p{
    text-align:center;
    color:#fff;
    font-size:18px;
    margin-bottom:24px;
}

.spin-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
}

.spin-modal {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  min-height: 480px;
  background: #000000ff;
  border-radius: 28px;
  padding: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  color: #fff;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
}

.spin-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  z-index: 5;
}

.spin-wheel-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spin-pointer {
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%) rotate(90deg);
    z-index: 4;
    font-size: 42px;
    color: #fff;
    text-shadow: 0px 6px 9px rgb(0 0 0);
}

.spin-wheel {
  width: 100%;
  max-width: 420px;
  transition: transform 5s cubic-bezier(.12,.75,.18,1) !important;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.35));
}

.spin-center-title {
  font-size: 30px;
  font-weight: 900;
  fill: #ec4899; 
}

.spin-center-subtitle {
  font-size: 18px;
  font-weight: 800;
  fill: #ec4899;
}

.spin-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spin-content h2 {
    font-size: 24px;
    line-height: 1.05;
    margin: 0 0 10px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
}

.spin-content p {
  margin: 0 0 20px;
  font-size: 16px;
  color: rgba(255,255,255,.9);
}

.spin-form {
  display: flex; 
  flex-direction: column;
  gap: 12px;
}

.spin-form input[type="text"],
.spin-form input[type="email"],
.spin-form input[type="tel"] {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 10px 10px;
    font-size: 14px;
    outline: none;
    color: #000;
}

.spin-consent {
  display: flex;
  gap: 8px;
  font-size: 12px;
  line-height: 1.3;
  color: rgba(255,255,255,.9);
}

.spin-consent input {
  margin-top: 2px;
}

#spin-button {
  border: none;
  border-radius: 10px;
  padding: 16px 20px;
  background: #fa8dbe;
  color: #000000ff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0px 0px 20px -3px #fa8dbe;
  text-align: center;
}

#spin-button{
    animation: pulseButton 1.5s infinite;
}

@keyframes pulseButton {

    0%{
        transform: scale(1);
        box-shadow: 0 0 0 0 #fa8dbe;
    }

    70%{
        transform: scale(1.05);
        box-shadow: 0 0 0 18px rgba(255,122,0,0);
    }

    100%{
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,122,0,0);
    }

}
#spin-button:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.spin-result {
  margin-top: 20px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.16);
  text-align: center;
}

.spin-result h3 {
  margin: 0 0 8px;
  color: #fff;
}

.spin-coupon-box {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  align-items: center;
  justify-content: space-between;
}

.spin-coupon-box strong {
  color: #000000ff;
  padding-left: 14px;
  font-size: 18px;
}

.spin-coupon-rule {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255,255,255,.75);
  text-align: center;
}

#spin-copy {
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  background: #fa8dbe;
  color: #000000ff;
  cursor: pointer;
  font-weight: 600;
}

.spin-content small {
  margin-top: 14px;
  color: rgba(255,255,255,.75);
  font-size: 11px;
}

.spin-slice-text {
  fill: #fff;
  font-size: 22px;
  font-weight: 900;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
}
.spin-wheel circle:first-of-type{
    filter: drop-shadow(0 3px 6px rgba(0,0,0,.6));
}


@media (max-width: 768px) {
  #spin-popup {
    padding: 10px;
  }

  .spin-modal {
    grid-template-columns: 1fr;
    max-width: 400px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 20px 18px;
    gap: 8px;
  }

     .spin-wheel {
        max-width: 230px;
        margin: -15px 0px -23px 0px;
    }

  .spin-content h2 {
        font-size: 14px;
        text-align: center;
        font-family: "Montserrat", sans-serif;
        text-transform: uppercase;
        margin: 4px 0 8px;
    }

  .spin-content p {
    text-align: center;
    font-size: 13px;
    margin: 0 0 10px;
  }

  .spin-pointer {
    right: -14px;
    font-size: 24px;
  }

  .spin-form {
    gap: 8px;
  }

  .spin-form input[type="text"],
  .spin-form input[type="email"],
  .spin-form input[type="tel"] {
    padding: 5px 10px;
    font-size: 13px;
  }

  .spin-consent {
    font-size: 11px;
  }

  #spin-button {
    padding: 0px 16px;
    font-size: 14px;
  }

  .spin-content small {
    font-size: 10px;
    margin-top: 8px;
  }

  /* Reordena visualmente no mobile: tÃ­tulo > formulÃ¡rio > texto da roleta > roleta */
  .spin-content {
    display: contents;
  }

  .spin-content p {
    order: 1;
    margin-bottom: 0px;
  }

  .spin-form {
    order: 2;
  }

  .spin-content h2 {
    order: 3;
    margin-top: 10px;
  }

  .spin-wheel-area {
    order: 4;
    margin: 0 auto;
  }

  #spin-result {
    order: 5;
  }

  .spin-content small {
    order: 6;
    display: block;
    text-align: center;
    margin-top: 10px;
  }
}


.spin-wheel-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none; /* não bloqueia o clique/giro da roleta */

  --shadow-color: rgba(0, 0, 0, 0.55);
  --shadow-blur: 40px;
  --shadow-spread: 10px;

  box-shadow: inset 0 0 var(--shadow-blur) var(--shadow-spread) var(--shadow-color);
}
.spin-wheel{
  border-radius:50%;
  overflow:visible;
  filter:
    drop-shadow(0 8px 12px rgba(0,0,0,.38))
    drop-shadow(0 18px 28px rgba(0,0,0,.24));
}

.spin-wheel-wrapper{
  position:relative;
  perspective:900px;
}
.spin-pointer{
  right:-4px;
  filter:drop-shadow(0 3px 4px rgba(0,0,0,.45));
} */