a {
  text-decoration: none;
  display: inline-block;
}

/* ================================
   SEÇÃO PRINCIPAL
================================ */
.planning-section {
  position: relative;
  padding: 120px 20px;
  background: #000;
  overflow: hidden;
}

.planning-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: blur(1px);
}

.planning-container {
  position: relative;
  z-index: 3;
  max-width: 1350px;
  margin: auto;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 70px;
  backdrop-filter: blur(7px);
}

/* CONTEÚDO PRINCIPAL - 2 COLUNAS */
.main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

/* COLUNA ESQUERDA */
.left-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kicker {
  color: #5af1ff;
  font-size: 0.9rem;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}

.title {
  font-family: 'HK Modular', 'League Spartan', sans-serif;
  margin-top: 10px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.02em;
  display: block;
}

.title-line {
  display: block;
  margin-bottom: 5px;
}

.title span {
  color: #ffffff;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

/* Sub-linha com gradiente ciano elegante */
.title span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, 
    #07f3ff 0%,
    #00d2ff 40%,
    rgba(0, 150, 255, 0) 100%
  );
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 195, 255, 0.35);
}

.subtitle {
  margin-top: 18px;
  color: #ccc;
  max-width: 95%;
  line-height: 1.6;
  font-size: 1rem;
}

.subtitle strong {
  color: #fff;
}

/* GRID DE BENEFÍCIOS - COLUNA DIREITA */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefit-item {
  background: rgba(14, 29, 41, 0.581);
  padding: 20px 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(20, 20, 35, 0.5);
  transform: translateY(-2px);
}

/* Ícone com gradiente ciano suave */
.benefit-icon {
  color: #000;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      #a8faff 0%,
      #7ee9ff 40%,
      #52d6ff 75%,
      #2bbfff 100%
  );
  border-radius: 12px;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: #00384e; /* ciano escuro premium */
}


.benefit-text {
  text-align: center;
}

.benefit-item strong { 
  color: #fff; 
  font-size: 0.85rem;
  display: block;
  line-height: 1.3;
  font-weight: 600;
}

.benefit-item p { 
  color: #888; 
  margin-top: 4px; 
  font-size: 0.75rem;
  line-height: 1.3;
}

/* CARTÃO DE PRECIFICAÇÃO */
.pricing-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 40px;
  border-radius: 24px;
  height: fit-content;
}

.pricing-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.pricing-header svg {
  width: 32px;
  height: 32px;
  color: #5a9dff;
}

.pricing-card h3 { 
  color: #fff; 
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.pricing-description {
  color: #bbb;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.pricing-description .highlight {
  color: #5dd4f4;
  font-weight: 600;
}

.cta-test {
  display: block;
  color: #5dd4f4;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  background: rgba(93, 212, 244, 0.08);
  border: 1px solid rgba(93, 212, 244, 0.2);
  transition: all 0.3s ease;
}

.cta-test:hover {
  background: rgba(93, 212, 244, 0.15);
  border-color: rgba(93, 212, 244, 0.3);
  transform: translateY(-1px);
}

.currency { 
  color: #5a9dff; 
  font-size: 1.2rem; 
  font-weight: 700;
}

.value { 
  color: #5a9dff; 
  font-size: 2.5rem; 
  font-weight: 800; 
  line-height: 1;
}

.once { 
  color: #888; 
  margin-top: 8px; 
  font-size: 0.85rem;
  display: block;
}

/* BOTÃO CTA — COM GRADIENTE CIANO PREMIUM */
 .cta-button-plan {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            margin-top: 60px;
            padding: 22px 55px;
            background: linear-gradient(135deg,
    #07f3ff 0%,
    #00d2ff 35%,
    #00b7ff 70%,
    #009dff 100%
);

            color: #000000;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 
                0 10px 40px rgba(14, 191, 255, 0.264),
                0 0 30px rgba(14, 255, 251, 0.189),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 10;
            letter-spacing: 0.8px;
            border: none;
            overflow: hidden;
        }

.cta-primary-plan:hover { 
  opacity: 0.85; 
  transform: translateY(-1px);
}

.guarantee {
  margin-top: 20px;
  color: #888;
  font-size: 0.85rem;
  text-align: center;
}

.cta-card {
  text-align: center;
}

.cta-card1 {
  text-align: center;
  display: none;
}

/* ======================================
   RESPONSIVIDADE
====================================== */
@media (max-width: 1024px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta-card {
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 35px 40px;
  }

   .cta-card1 {
    display: block;
    flex-direction: column;
    text-align: center;
    padding: 1px 10px;
  }
  
  .cta-button {
    white-space: normal;
   
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 1.8rem;
  }
  
  .title span::after {
    height: 2px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .planning-section {
    padding: 80px 15px;
  }
  
  .planning-container {
    padding: 40px 20px;
  }
  
  .cta-card {
    padding: 30px 25px;
  }
  
  .cta-icon-plan {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }
  
  .cta-icon-plan svg {
    width: 30px;
    height: 30px;
  }

  
}

@media (max-width: 768px) {

  .cta-card{
    display: none;
  }

  .cta-button-plan {
    white-space: normal;
    padding: 20px 30px;
  }
}



@media (max-width: 330px) {
  /* BOTÃO CTA — COM GRADIENTE CIANO PREMIUM */
 .cta-button-plan {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            margin-top: 60px;
            padding: 12px 10px;
            background: linear-gradient(135deg,
    #07f3ff 0%,
    #00d2ff 35%,
    #00b7ff 70%,
    #009dff 100%
);

            color: #000000;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 
                0 10px 40px rgba(14, 191, 255, 0.264),
                0 0 30px rgba(14, 255, 251, 0.189),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 10;
            letter-spacing: 0.8px;
            border: none;
            overflow: hidden;
        }
   
}