html, body {
  overflow-x: hidden;  /* bloqueia rolagem lateral */
}

.planos-page {
  background: linear-gradient(to bottom, #f8faff, #e6efff);
  text-align: center;
  padding: 5px 0 0 0;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

.planos-page h1 {

  font-size: 20px;
  color: #0055bc;
  font-weight: 700;
  line-height: 1.5;
  margin: 15px 0 0 0;
  text-shadow: 0 1px 10px rgba(255,255,255,0.9);
  text-align: center;
  margin-bottom: 0;
}
.subtitulo {
  color: #555;
  font-size: 15px;
  margin-bottom: 30px;
  margin-top: 0;
}
.planos-page {
  color: #555;
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 1px;
  
}



.planos-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch; /* força mesma altura dos cards */

}

.plano-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* empurra o botão para o fim */
  background: #fff;
  border-radius: 16px;
  padding: 10px 15px 15px;
  width: 300px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-top: 5px solid transparent;
  position: relative;
}


.plano-card.destaque {
  border-top: 5px solid #0077ff;
  box-shadow: 0 8px 25px rgba(0, 85, 188, 0.3);
}

.plano-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0077ff;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.plano-card h2 {
  font-size: 18px;
  color: #484b50;
  margin-bottom: 5px;
}

.plano-card .preco {
  font-size: 20px;
  font-weight: 700;
  color: #0055bc;
  margin: 5px 0 15px 0;
}

.plano-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

.plano-card li {
  margin: 4px 0;
  position: relative;
  padding-left: 16px;
}

.plano-card li::before {
  content: "✓";
  color: #0077ff;
  position: absolute;
  left: 0;
  font-size: 20px;
}

.plano-card .cta-btn {
  margin-top: auto;        /* gruda no bottom */
  align-self: stretch;     /* ocupa 100% da largura */
}


.plano-card .cta-btn:hover {
  transform: translateY(-2px);
  color: #ffd000;
}
.colab-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
}

.colab-control button {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 4px;
  background: #0077ff;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

.colab-control input {
  width: 45px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 3px;
  font-size: 14px;
}

.info-adicional {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 3px;
}

.preco-total {
  font-size: 16px;
  font-weight: 600;
  color: #022957;
  margin-top: 15px;
}
.tooltip {
  position: relative;
  display: inline-block;
  margin-left: 6px;
  color: #0077ff;
  cursor: pointer;
  font-size: 13px;
}

.tooltip .tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: 220px;
  background: linear-gradient(to bottom, #0077ff, #0055cc);
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 8px 10px;
  position: absolute;
  z-index: 999;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.25s ease;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: #0055cc transparent transparent transparent;

}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
.incluso-section {
  background: linear-gradient(to bottom, #ecf3ff, #f8faff);
  text-align: center;
  padding: 40px 15px;
}
.incluso-section h2 {
  color: #0077ff;
  font-size: 20px;
  margin-bottom: 25px;
}
.itens-inclusos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}
.itens-inclusos div {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}
.itens-inclusos i {
  color: #0077ff;
  font-size: 18px;
}
.cta-contato {
  text-align: center;
  background: linear-gradient(to right, #0077ff, #0055cc);
  color: #fff;
  padding: 60px 20px;
  margin: 40px auto;
}
.cta-contato h2 { font-size: 22px; margin-bottom: 10px; }
.cta-contato p { font-size: 15px; margin-bottom: 20px; }

@media (max-width: 768px) {
  .planos-container {
    flex-direction: column;
    align-items: center;
  }
  .plano-card {
    margin: 15px;
    width: calc(90% - 30px);
  }
  .plano-card .cta-btn {
  margin-top: auto;        /* gruda no bottom */
  align-self: stretch;     /* ocupa 100% da largura */
  width: 100%;
}


.plano-card .cta-btn:hover {
  transform: translateY(-2px);
  color: #ffd000;
}
.plano-card ul {

  font-size: 16px;

}
}
