/* ===== RESET & BASE ===== */


a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== VIDEO WRAPPER ===== */

.video-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 15px 0;
  ;
}

/* ===== PRODUCTS SECTION ===== */


/* ===== EXIT INTENT POPUP ===== */
.exit-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.exit-popup-overlay.active {
  display: flex;
}

.exit-popup-box {
  background: linear-gradient(180deg, #0d2f45 0%, #0a2035 100%);
  border: 2px solid #ffd02f;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 40px rgba(255, 208, 47, 0.3);
  animation: popupIn 0.4s ease;
}

@keyframes popupIn {
  from {
    transform: scale(0.7) translateY(-30px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.exit-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.exit-popup-close:hover {
  color: #fff;
}

.exit-popup-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
  animation: shake 0.6s ease-in-out;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-8px);
  }

  40% {
    transform: translateX(8px);
  }

  60% {
    transform: translateX(-5px);
  }

  80% {
    transform: translateX(5px);
  }
}

.exit-popup-title {
  font-size: 1.6rem;
  color: #ffd02f;
  font-weight: 800;
  margin-bottom: 15px;
}

.exit-popup-text {
  font-size: 1.05rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 10px;
}

.exit-popup-text strong {
  color: #fff;
}

.exit-popup-cta {
  font-size: 1.15rem;
  color: #4caf50;
  font-weight: 700;
  margin-bottom: 25px;
}

.exit-popup-btn {
  background: linear-gradient(135deg, #ffd02f, #f5a623);
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 14px 35px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
}

.exit-popup-btn:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

@media (max-width: 480px) {
  .exit-popup-box {
    padding: 30px 20px;
  }

  .exit-popup-title {
    font-size: 1.3rem;
  }

  .exit-popup-text {
    font-size: 0.95rem;
  }

  .exit-popup-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* --- Products Section --- */
#products-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* max-width: 896px; */
  margin: 0 auto;
  padding: 0 16px;
}

/* --- Titulo Kits --- */
.titulo-kits {
  text-align: center;
  width: 100%;
  padding: 40px 15px 40px;
  background-color: #1a4a5e;
  position: relative;
  margin-bottom: 40px;
}

/* Seta integrada na borda inferior da section */
.titulo-kits::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to right, #1a4a5e 0%, #1a4a5e calc(50% - 40px), transparent calc(50% - 40px)),
    linear-gradient(to right, transparent calc(50% + 40px), #1a4a5e calc(50% + 40px), #1a4a5e 100%);
  clip-path: polygon(0 0,
      calc(50% - 40px) 0,
      50% 100%,
      calc(50% + 40px) 0,
      100% 0,
      100% 0,
      0 0);
  background-color: #1a4a5e;
}

.titulo-kits h2 {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.titulo-kits h2 span.highlight {
  color: #ffd02f;
}

.titulo-kits .countdown {
  color: #fff;
  font-family: inherit;
}

/* --- Products Grid --- */
.products-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 10px 40px;
}

.products-row {
  display: flex;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
}

/* --- Card Item --- */
.item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, #08424e 0%, #0a6c80 100%);
  border: 2px solid #1a4a5e;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  max-width: 340px;
  padding: 0 15px 20px;
}

.item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 200, 255, 0.15);
}

/* Card Promo (destaque - 6 bottles) */
.item.promo {
  border-color: #ffd02f;
  box-shadow: 0 0 25px rgba(255, 208, 47, 0.25);
  transform: scale(1.04);
  z-index: 2;
}

.item.promo:hover {
  transform: scale(1.04) translateY(-5px);
}

/* Item Header (BEST RESULTS) */
.item-header {
  width: calc(100% + 30px);
  margin: 0 -15px 0;
  background: linear-gradient(135deg, #ffd02f, #f5a623);
  color: #000;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 8px 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Supply info */
.supply {
  padding: 15px 0 5px;
}

.supply b {
  font-size: 1.4rem;
  display: block;
  color: #fff;
}

.supply span {
  font-size: 0.85rem;
  color: #8ec8d8;
}

/* Product image */
.item .product-img {
  max-height: 160px;
  margin: 10px auto;
  display: block;
}

.item.promo .product-img {
  max-height: 190px;
}

/* Price */
.price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 0;
}

.price .value {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.price .value sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.price .per-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #8ec8d8;
  text-align: left;
  line-height: 1.2;
}

/* Savings / checks */
.savings {
  padding: 5px 0 10px;
}

.savings .check-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 3px 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: #c8e6c9;
}

.savings .check-item .check-icon {
  color: #4caf50;
  font-size: 1rem;
}

/* Add to Cart Button */
.btn-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 10px;
  padding: 12px 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  color: #000;
  background: linear-gradient(135deg, #ffd02f, #f5a623);
  transition: opacity 0.3s, transform 0.2s;
  text-decoration: none;
}

.btn-cart:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.btn-cart .cart-icon {
  margin-right: 6px;
}

.btn-cart .btn-sub {
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
  margin-top: 2px;
}

/* Payment icons */
.payment-img {
  max-width: 200px;
  margin: 5px auto 10px;
  display: block;
}

/* Totals */
.totals h6 {
  padding: 5px 0 10px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #faf8f8;

}

.totals b {
  color: #fff;
}

.totals s {
  color: #888;
}

.totals span.free {
  color: #4caf50;
  font-weight: 700;
}

.totals span.text-danger {
  color: #f44336;
  font-weight: 700;
}

/* ===== ORDER ON MOBILE ===== */
/* Desktop: row | Mobile: column with reorder */
@media (min-width: 769px) {


  .products-row {
    flex-direction: row;
  }

  /* Reorder: 1 bottle left | 6 bottles center | 3 bottles right */
  .card-1bottle {
    order: 1;
  }

  .card-6bottles {
    order: 2;
  }

  .card-3bottles {
    order: 3;
  }

  .mobile-layout {
    display: none;
  }

  .desktop-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 768px) {

  .headline h1 {
    font-size: 28px;
  }

  .products-row {
    flex-direction: column;
    align-items: center;
  }

  /* Reorder: 6 bottles first | 3 bottles second | 1 bottle third */
  .card-6bottles {
    order: 1;
  }

  .card-3bottles {
    order: 2;
  }

  .card-1bottle {
    order: 3;
  }

  .item {
    max-width: 100%;
    width: 100%;
  }

  .item.promo {
    transform: scale(1);
  }

  .item.promo:hover {
    transform: translateY(-5px);
  }

  .desktop-layout {
    display: none;
  }

  .mobile-layout {
    display: block;
    width: 100%;
    /*  */
  }

  .mobile-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
  }

  .mobile-left,
  .mobile-right {
    flex: 1;
    text-align: center;
  }

  .mobile-left .product-img {
    max-height: 110px;
  }

  .mobile-right .price .value {
    font-size: 2.8rem;
  }

  .mobile-right .savings .check-item {
    font-size: 0.75rem;
  }

  .mobile-right .totals {
    font-size: 0.8rem;
    padding: 5px 0;
  }

  .mobile-right .supply b {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .titulo-kits h2 {
    font-size: 1.2rem;
  }

  .mobile-right .price .value {
    font-size: 2.4rem;
  }

  .mobile-left .product-img {
    max-height: 90px;
  }
}

/* ===== GUARANTEE SECTION ===== */
.guarantee {
  padding: 0 15px;
}

.guarantee-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.guarantee-box {
  background: linear-gradient(45deg, #08424e, #0a6c80);
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.guarantee-title {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.guarantee-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 700;
  color: #ffd74a;
  margin-bottom: 25px;
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
}

.guarantee-seal {
  flex-shrink: 0;
}

.guarantee-seal img {
  max-width: 180px;
}

.guarantee-text {
  text-align: left;
  font-size: 1rem;
  color: #ddd;
  line-height: 1.7;
}

.guarantee-text p {
  margin: 0;
}

.guarantee-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.guarantee-badges figure {
  margin: 0;
}

.guarantee-badges img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #fff;
  object-fit: contain;
}

@media (max-width: 768px) {
  .guarantee-content {
    flex-direction: column;
    text-align: center;
  }

  .guarantee-text {
    text-align: center;
  }

  .guarantee-seal img {
    max-width: 140px;
  }

  .guarantee-badges img {
    width: 60px;
    height: 60px;
  }

  .guarantee-box {
    padding: 30px 20px;
  }

  .vid-sec {

    padding: 2%;
    /* min-height: auto; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .video-wrapper {
    padding: 10px 10px 0;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 50px 15px;
  background: #fff;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-main-title {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 35px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:first-child {
  border-top: 1px solid #e0e0e0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5px;
  background: none;
  border: none;
  color: #333;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #0a6c80;
}

.faq-arrow {
  font-size: 0.65rem;
  color: #999;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 5px;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 5px 20px;
}

.faq-answer p {
  color: #555;
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0 0 10px;
}

.faq-answer ul,
.faq-answer ol {
  color: #555;
  font-size: 0.93rem;
  line-height: 1.7;
  padding-left: 22px;
  margin: 10px 0 0;
}

.faq-answer ul li,
.faq-answer ol li {
  margin-bottom: 5px;
}

.faq-answer ul li strong,
.faq-answer ol li strong {
  color: #222;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 35px 15px;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 15px 5px;
  }
}

/* ===== PRODUCT HIGHLIGHT SECTION ===== */
.product-highlight-section {
  background: linear-gradient(180deg, #0d2f45 0%, #061a28 100%);
  padding: 0 20px 60px;
}

.product-highlight-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(255, 208, 47, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-highlight-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(255, 208, 47, 0.45);
}

.product-highlight-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

@media (max-width: 600px) {
  .product-highlight-section {
    padding: 0 12px 40px;
  }

  .product-highlight-wrapper {
    border-radius: 14px;
  }

  .product-highlight-img {
    border-radius: 14px;
  }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: linear-gradient(180deg, #0a1f2e 0%, #0d2f45 100%);
  padding: 60px 20px;
}

.testimonials-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.testimonials-header {
  text-align: center;
  margin-bottom: 45px;
}

.testimonials-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #ffd02f;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}

.testimonials-label::before,
.testimonials-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: #ffd02f;
  opacity: 0.5;
}

.testimonials-label::before {
  right: 100%;
}

.testimonials-label::after {
  left: 100%;
}

.testimonials-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin-top: 8px;
}

.testimonials-highlight {
  color: #ffd02f;
}

/* Cards list */
.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Individual card */
.testimonial-card {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  background: linear-gradient(135deg, #0e3548 0%, #0a2a3e 100%);
  border: 1px solid rgba(142, 200, 216, 0.2);
  border-radius: 16px;
  padding: 30px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 7rem;
  font-family: Georgia, serif;
  color: rgba(255, 208, 47, 0.08);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  transform: translateY(-3px);
}

/* Author column */
.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  width: 110px;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffd02f;
  margin-bottom: 10px;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 3px;
}

.testimonial-location {
  font-size: 0.78rem;
  color: #8ec8d8;
  margin: 0;
}

/* Body column */
.testimonial-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 0.93rem;
  line-height: 1.75;
  color: #d0e8f0;
  font-style: italic;
  margin: 0 0 18px;
  border: none;
  padding: 0;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.testimonial-verified {
  font-size: 0.85rem;
  font-weight: 700;
  color: #4caf50;
}

.testimonial-stars {
  height: 18px;
  width: auto;
}

/* Disclaimer */
.testimonials-disclaimer {
  text-align: center;
  color: #5a7a8a;
  font-size: 0.8rem;
  margin-top: 30px;
}

/* Mobile */
@media (max-width: 600px) {
  .testimonials-section {
    padding: 40px 15px;
  }

  .testimonial-card {
    flex-direction: column;
    align-items: center;
    padding: 22px 18px;
  }

  .testimonial-author {
    width: 100%;
    flex-direction: row;
    text-align: left;
    gap: 14px;
  }

  .testimonial-avatar {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .testimonials-label::before,
  .testimonials-label::after {
    display: none;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: #061520;
  padding: 30px 15px;
  border-top: 1px solid #1a4a5e;
}

.footer-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.site-footer p {
  color: #788a96;
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-links a {
  color: #8ec8d8;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffd02f;
}


@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(102, 126, 234, 0.4);
  }

  50% {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(102, 126, 234, 0.6);
  }
}

@keyframes pulse-circle {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .live-counter-section {
    padding: 10px 10px !important;
    margin: 20px auto !important;
    max-width: 100% !important;
    border-radius: 12px !important;
  }

  .live-counter-content {
    gap: 10px !important;
  }

  .live-counter-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .live-counter-icon svg {
    width: 24px !important;
    height: 24px !important;
  }

  .live-counter-icon+span {
    width: 12px !important;
    height: 12px !important;
  }

  .live-label {
    font-size: 11px !important;
  }

  .live-count-text {
    font-size: 20px !important;
  }
}

@media (max-width: 480px) {
  .live-counter-section {

    margin: 15px auto !important;
    max-width: 92% !important;
  }

  .live-counter-content {
    gap: 8px !important;
  }

  .live-counter-icon {
    width: 35px !important;
    height: 35px !important;
  }

  .live-counter-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .live-label {
    font-size: 10px !important;
  }

  .live-count-text {
    font-size: 17px !important;
  }
}


/* ===== CONTAINER DO BOTÃO ===== */


.btn-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}

/* ===== BOTÃO PRINCIPAL ===== */
.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 50px;
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  background: linear-gradient(135deg, #ff416c, #ff4b2b, #ff6a00);
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
  box-shadow:
    0 8px 30px rgba(255, 65, 108, 0.5),
    0 4px 15px rgba(255, 75, 43, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  z-index: 1;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Brilho animado sobre o botão */
.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
  transition: left 0.6s ease;
  z-index: 2;
}

.btn-cta:hover::before {
  left: 120%;
}

/* Anel pulsante ao redor */
.btn-cta::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 60px;
  border: 2px solid rgba(255, 65, 108, 0.6);
  animation: ring-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes ring-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.btn-cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 14px 40px rgba(255, 65, 108, 0.6),
    0 6px 20px rgba(255, 75, 43, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-cta:active {
  transform: translateY(0) scale(0.98);
  box-shadow:
    0 4px 15px rgba(255, 65, 108, 0.4),
    0 2px 8px rgba(255, 75, 43, 0.3);
}

/* Ícone do carrinho */
.btn-icon {
  font-size: 1.3em;
  animation: cart-bounce 1.5s ease-in-out infinite;
}

@keyframes cart-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* Texto principal */
.btn-text {
  position: relative;
  z-index: 3;
}

/* ===== BADGE DE DESCONTO ===== */
.badge {
  position: absolute;
  top: -14px;
  right: -10px;
  background: #ffe600;
  color: #1a1a1a;
  font-size: clamp(10px, 2vw, 13px);
  font-weight: 900;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(255, 230, 0, 0.5);
  animation: badge-pop 0.8s ease infinite alternate;
  z-index: 10;
  white-space: nowrap;
}

@keyframes badge-pop {
  0% {
    transform: scale(1) rotate(-3deg);
  }

  100% {
    transform: scale(1.08) rotate(2deg);
  }
}

/* ===== SETA ANIMADA ===== */
.btn-arrow {
  display: inline-block;
  font-size: 1.2em;
  animation: arrow-move 1s ease-in-out infinite;
  z-index: 3;
}

@keyframes arrow-move {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }
}

/* ===== SUBTEXTO ===== */
.sub-text {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(11px, 2.5vw, 14px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.sub-text .lock-icon {
  font-size: 1em;
}

/* ===== URGÊNCIA ===== */
.urgency {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 65, 108, 0.15);
  border: 1px solid rgba(255, 65, 108, 0.3);
  border-radius: 30px;
  padding: 8px 20px;
  color: #ff6b6b;
  font-size: clamp(12px, 2.5vw, 15px);
  font-weight: 600;
  animation: urgency-pulse 2s ease infinite;
}

@keyframes urgency-pulse {

  0%,
  100% {
    border-color: rgba(255, 65, 108, 0.3);
  }

  50% {
    border-color: rgba(255, 65, 108, 0.7);
  }
}

.urgency .dot {
  width: 8px;
  height: 8px;
  background: #ff416c;
  border-radius: 50%;
  animation: dot-blink 1s infinite;
}

@keyframes dot-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* ===== PARTÍCULAS ===== */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  animation: float-up 3s ease-in infinite;
  opacity: 0;
}

@keyframes float-up {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-80px) scale(1);
  }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 480px) {
  .btn-cta {
    padding: 18px 35px;
    gap: 8px;
    border-radius: 50px;
  }

  .badge {
    top: -12px;
    right: -5px;
    padding: 4px 10px;
  }

  .urgency {
    padding: 6px 14px;
  }
}

@media (max-width: 360px) {
  .btn-cta {
    padding: 16px 28px;
  }
}
