.cta-section {
  background: linear-gradient(125deg, #0A231A 0%, #14C860 70%, #0c3b28 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Fundo abstrato com gradientes */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 35%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(20, 200, 96, 0.15) 0%, transparent 60%);
  z-index: 1;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: 
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%2314C860' fill-rule='evenodd'/%3E%3C/svg%3E"),
    linear-gradient(125deg, transparent 0%, rgba(10, 35, 26, 0.4) 100%);
  opacity: 0.6;
  z-index: 1;
}

.cta-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

/* Card principal que contém toda a oferta */
.offer-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  padding: 3.5rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
}

/* Barra no topo do card */
.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: linear-gradient(90deg, #FFD700, #14C860);
  z-index: 3;
}

/* Efeito de aura ao redor do card */
.offer-card::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: radial-gradient(circle at 50% 0%, rgba(20, 200, 96, 0.3), transparent 70%);
  z-index: -1;
}

.cta-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  color: #FFFFFF;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-title span {
  color: #FFD700;
  position: relative;
  animation: highlight-pulse 3s infinite;
}

@keyframes highlight-pulse {
  0% { color: #FFFFFF; }
  50% { color: #FFD700; }
  100% { color: #FFFFFF; }
}

.cta-title span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #FFD700;
}

/* Layout para componentes principais em grid */
.offer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.offer-left {
  display: flex;
  flex-direction: column;
}

.offer-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cards de benefícios */
.benefits-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(20, 200, 96, 0.3), rgba(20, 200, 96, 0.1));
  border-radius: 12px;
  color: #FFFFFF;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.benefit-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* Estilo do título no topo do card */
.cta-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-title span {
  color: #FFD700;
  position: relative;
  z-index: 1;
}

.cta-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(20, 200, 96, 0.3);
  z-index: -1;
  border-radius: 4px;
}

/* Contador regressivo */
.countdown-container {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
  padding: 1.5rem;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 1px solid rgba(255, 0, 0, 0.2);
  text-align: center;
  margin-bottom: 2rem;
}

.countdown-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(255, 0, 0, 0.15) 0%, 
    rgba(255, 255, 0, 0.15) 25%, 
    rgba(0, 255, 0, 0.15) 50%, 
    rgba(0, 255, 255, 0.15) 75%, 
    rgba(255, 0, 255, 0.15) 100%);
  animation: gradient-pulse 8s infinite linear;
  z-index: -1;
}

.countdown-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #FF3535;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #14C860, #0A231A);
  color: #fff;
  padding: 0.5rem;
  border-radius: 10px;
  min-width: 60px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  animation: countdown-pulse 1s infinite;
}

@keyframes countdown-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); box-shadow: 0 15px 30px rgba(20, 200, 96, 0.4); }
  100% { transform: scale(1); }
}

.countdown-number::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}

.countdown-label {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: #FFFFFF;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Box de preço */
.price-box {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  transform-style: preserve-3d;
  perspective: 1000px;
  transform: rotateY(0deg);
  transition: all 0.5s ease;
  position: relative;
}

/* Faixa promocional */
.promo-banner {
  width: 100%;
  background: linear-gradient(135deg, #FF9900, #FF5500);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-30deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

.price-content {
  padding: 1.5rem;
  text-align: center;
}

.old-price {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 0.5rem;
  text-decoration: line-through;
  text-decoration-color: #FF4919;
  text-decoration-thickness: 2px;
}

.new-price {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.new-price strong {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: #14C860;
  margin-top: 0.5rem;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(20, 200, 96, 0.3);
  position: relative;
}

.new-price strong::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #14C860, transparent);
  border-radius: 3px;
}

.cta-punch {
  font-size: 1.1rem;
  color: #333;
  background: rgba(20, 200, 96, 0.15);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FF9900, #FF5500);
  color: #FFFFFF;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 15px 30px rgba(255, 85, 0, 0.3),
    0 0 0 5px rgba(255, 153, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: button-pulse 2s infinite;
  z-index: 1;
}

@keyframes button-pulse {
  0% { transform: scale(1); box-shadow: 0 15px 30px rgba(255, 85, 0, 0.3), 0 0 0 5px rgba(255, 153, 0, 0.2); }
  50% { transform: scale(1.05); box-shadow: 0 20px 40px rgba(255, 85, 0, 0.4), 0 0 0 8px rgba(255, 153, 0, 0.1); }
  100% { transform: scale(1); box-shadow: 0 15px 30px rgba(255, 85, 0, 0.3), 0 0 0 5px rgba(255, 153, 0, 0.2); }
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 20px 40px rgba(255, 85, 0, 0.4),
    0 0 0 10px rgba(255, 153, 0, 0.1);
  background: linear-gradient(135deg, #FF5500, #FF9900);
}

.cta-button:hover::before {
  left: 100%;
}

.payment-secure {
  margin-top: 1.5rem;
}

.payment-secure img {
  max-width: 300px;
  height: auto;
  border-radius: 10px;
}

/* Área de garantia e disclaimer */
.guarantee-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-image {
  width: 100px;
  flex-shrink: 0;
}

.guarantee-image img {
  width: 100%;
  height: auto;
}

.guarantee-content {
  flex: 1;
}

.guarantee-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.guarantee-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.disclaimer {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.5;
  font-style: italic;
}

/* Etiqueta promocional */
.promo-badge {
  display: none;
}

/* Media queries para responsividade */
@media (max-width: 991px) {
  .offer-content {
    grid-template-columns: 1fr;
  }
  
  .offer-left {
    order: 1;
  }
  
  .offer-right {
    order: 0;
    margin-bottom: 2rem;
  }
  
  .offer-card {
    padding: 2rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-section {
    padding: 4rem 0;
    overflow: visible;
  }
  
  .price-box {
    margin: 0 auto;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .benefits-cards {
    grid-template-columns: 1fr;
  }
  
  .offer-card {
    padding: 1.5rem;
    margin: 0 1rem;
    width: calc(100% - 2rem);
  }
  
  .cta-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .guarantee-footer {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
    margin-top: 1.8rem;
  }
  
  .guarantee-image {
    width: 80px;
  }
  
  .cta-section {
    padding: 3rem 0;
  }
  
  .cta-container {
    padding: 0 1rem;
  }
  
  .price-block {
    padding: 1.2rem;
    text-align: center;
  }
  
  .price-box {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
  }
  
  .price-content {
    padding: 1.8rem 1.5rem;
  }
  
  .price-value {
    font-size: 1.8rem;
  }
  
  .old-price {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #666;
  }
  
  .new-price {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .new-price strong {
    font-size: 2.8rem;
    margin-top: 0.3rem;
  }
  
  .cta-punch {
    font-size: 1rem;
    padding: 0.9rem;
    margin-bottom: 1.2rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    color: #333;
    background: rgba(20, 200, 96, 0.15);
  }
  
  .price-normal, .price-sale {
    font-size: 0.9rem;
  }
  
  .price-value {
    font-size: 2.2rem;
  }
  
  .cta-button {
    padding: 1rem;
    font-size: 1rem;
    width: 100%;
    display: block;
    text-align: center;
  }
  
  .countdown-container {
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  
  .countdown-title {
    font-size: 0.9rem;
    text-align: center;
  }
  
  .countdown-timer {
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }
  
  .disclaimer {
    font-size: 0.75rem;
    margin-top: 1rem;
    text-align: center;
  }
  
  .payment-secure {
    margin-top: 1.5rem;
    text-align: center;
  }
  
  .payment-secure img {
    max-width: 90%;
    margin: 0 auto;
    display: block;
  }
  
  .promo-banner {
    font-size: 0.8rem;
    padding: 0.4rem 0;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 1.3rem;
  }
  
  .offer-card {
    padding: 1.2rem;
    border-radius: 16px;
  }
  
  .benefit-card {
    padding: 1rem;
  }
  
  .benefit-icon {
    min-width: 40px;
    height: 40px;
  }
  
  .benefit-title {
    font-size: 1rem;
  }
  
  .benefit-description {
    font-size: 0.85rem;
  }
  
  .price-box {
    max-width: 280px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
  }
  
  .price-content {
    padding: 1.5rem 1rem;
  }
  
  .price-value {
    font-size: 1.8rem;
  }
  
  .old-price {
    font-size: 1rem;
  }
  
  .new-price {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    color: #333;
  }
  
  .new-price strong {
    font-size: 2.5rem;
    position: relative;
  }
  
  .new-price strong::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #14C860, transparent);
    border-radius: 2px;
  }
  
  .cta-punch {
    font-size: 0.9rem;
    padding: 0.8rem;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    color: #333;
    background: rgba(20, 200, 96, 0.15);
  }
  
  .installments {
    font-size: 0.9rem;
  }
  
  .price-description {
    font-size: 0.85rem;
  }
  
  .cta-button {
    padding: 0.8rem;
    font-size: 0.95rem;
    margin: 0 auto;
  }
  
  /* Corrige o problema de corte */
  .cta-section {
    overflow: hidden;
    height: auto;
    min-height: auto;
  }
  
  .countdown {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .countdown-item {
    width: auto;
    min-width: 55px;
  }
  
  .countdown-number {
    font-size: 1.1rem;
    padding: 0.5rem;
  }
  
  .countdown-label {
    font-size: 0.7rem;
  }
  
  .promo-banner {
    font-size: 0.7rem;
    padding: 0.3rem 0;
  }
}
