:root {
  --bg: #f7f6f3;
  /* fundo claro (bege suave) */
  --surface: #ffffff;
  /* cartões/branco puro */
  --text: #1b1f30;
  /* texto principal (escuro) */
  --muted: #4b5477;
  /* texto secundário */
  --brand: #87CEFA;
  /* azul celeste */
  --brand-2: #FFD700;
  /* dourado */
  --success: #16a34a;
  --danger: #ef4444;
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);
  --border: 1px solid rgba(0, 0, 0, .06);
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #faf9f6 0%, var(--bg) 100%);
  color: var(--text);
  font-family: Poppins, system-ui, sans-serif;
}

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

a.disabled {
  pointer-events: none;   /* bloqueia clique */
  cursor: not-allowed;    /* cursor de bloqueado */
  opacity: 0.6;           /* deixa mais claro */
  text-decoration: none;
}

/* Header branco translúcido */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: var(--border);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow);
}


.brand h1 {
  font-size: 22px;
  margin: 0;
  font-weight: 700
}

.tagline {
  font-family: Pacifico, cursive;
  font-size: 13px;
  color: var(--muted)
}

/* Ações no header */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: var(--border);
  background: rgba(255, 255, 255, .6);
}

.btn-icon i {
  font-size: 14px
}

.btn-icon:hover {
  background: #fff
}

.btn.blue {
  background: linear-gradient(135deg, #6ecbff, #1d4ed8);
  color: #fff;
  border: none;
}

.btn.blue:hover {
  background: linear-gradient(135deg, #7bd1ff, #2140c0); /* leve variação */
  box-shadow: 0 8px 20px rgba(29,78,216,.25);
  transform: translateY(-1px);
}



/* CTA principal */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #1a1a1a;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(135, 206, 250, .25);
  transition: .15s;
  border: none;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 34px rgba(135, 206, 250, .35)
}

/* Hero */
.hero {
  text-align: center;
  padding: 56px 20px 24px
}

.hero h2 {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: clamp(26px, 4.5vw, 42px)
}

.hero p {
  margin: 0 auto;
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(14px, 2.6vw, 18px)
}

/* Pricing */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  padding: 28px 20px 60px
}

.card {
  grid-column: span 12;
  background: var(--surface);
  border: var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* .card.personalizado {
  background: linear-gradient(135deg, #fff9e6, #ffffff);
  border: 1px solid rgba(255, 215, 0, 0.5);
} */



.card .features {
  flex-grow: 1;  /* empurra o botão para o final */
}

.card .btn {
  margin-top: auto; /* força o botão ficar grudado embaixo */
}

.card h3 {
  margin: 0 0 6px;
  font-size: 20px
}

/* ===== Destaque azul do plano do meio ===== */
.card.destaque{
  background: linear-gradient(180deg,#ffffff 0%, #f6fbff 100%);
  border: 2px solid #1d4ed8;                    /* borda azul */
  box-shadow: 0 10px 28px rgba(29,78,216,.12);   /* leve glow azul */
}

/* título e preço em azul
.card.destaque h3,
.card.destaque .price strong{
  color:#1d4ed8;
} */

/* checks em azul no destaque (nos demais continuam verdes) */
/* .card.destaque .features i{
  color:#1d4ed8;
} */

/* badge “Mais pedido” azul */
.card.destaque .badge{
  background: rgba(29,78,216,.12);
  color:#1d4ed8;
  border:1px solid rgba(29,78,216,.35);
}

/* botão: já está .btn.blue, mas garantimos o hover */
.card.destaque .btn.blue{
  background: linear-gradient(135deg,#6ecbff,#1d4ed8);
  color:#fff; border:none;
}
.card.destaque .btn.blue:hover{
  background: linear-gradient(135deg,#7bd1ff,#2140c0);
  box-shadow: 0 8px 20px rgba(29,78,216,.25);
  transform: translateY(-1px);
}


.price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin: 8px 0 14px
}

.price strong {
  font-size: 34px;
  line-height: 1
}

.price span {
  color: var(--muted);
  font-size: 14px
}

.desc {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
  min-height: 40px
}

.features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0
}

.features li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px
}

.features i {
  margin-top: 2px;
  color: var(--success)
}

.features .x {
  color: var(--danger)
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 215, 0, .15);
  color: #a87900;
  border: 1px solid rgba(255, 215, 0, .4);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  background: #f0f6ff;
  border: 1px solid rgba(135, 206, 250, .45);
  color: #1b3652;
  transition: .15s;
}

.btn:hover {
  background: #e7f1ff
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #1a1a1a;
  border: none
}

.btn.primary:hover {
  filter: saturate(110%)
}

.destaque {
  border: 1px solid rgba(255, 215, 0, .55)
}

/* Responsive */

@media (max-width: 640px) {
  .header-actions {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
  }
  .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (min-width:720px) {
  .card {
    grid-column: span 6
  }
}

/* Desktop: 3 colunas e último card centralizado */
@media (min-width:1024px){
  .grid{
    grid-template-columns: repeat(12, 1fr);
  }
  .card{ grid-column: span 4; }

  .card:last-child{
    grid-column: 5 / span 4;
  }
}



/* Footer */
footer {
  padding: 26px 20px;
  color: var(--muted);
  text-align: center;
  border-top: var(--border);
}