:root {
  --bg-main: #181829;
  --bg-card: #232347cc;
  --bg-header: #232347ee;
  --color-primary: #7f5af0;
  --color-secondary: #2cb67d;
  --color-accent: #ff8906;
  --color-premium: #f15bb5;
  --color-text: #fff;
  --color-muted: #a7a9be;
  --glass-blur: blur(12px);
}
body {
  background: var(--bg-main);
  color: var(--color-text);
  font-family: 'Segoe UI', Arial, sans-serif;
  min-height: 100vh;
  background: linear-gradient(135deg, #181829 60%, #232347 100%);
}
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  max-width: 480px;
  margin: 40px auto 60px auto;
  padding: 0 8px;
}
.plan-card {
  background: var(--bg-card);
  border-radius: 28px;
  box-shadow: 0 8px 40px 0 #0005, 0 1.5px 8px #7f5af055;
  overflow: hidden;
  transition: box-shadow 0.4s, transform 0.4s;
  position: relative;
  border: 2.5px solid var(--bg-header);
  animation: popin 0.7s cubic-bezier(.68,-0.55,.27,1.55);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 1.2rem 1.2rem 1.2rem 1.2rem;
}
@keyframes popin {
  0% { transform: scale(0.95) translateY(30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.plan-card.destaque {
  border: 2.5px solid var(--color-accent);
  box-shadow: 0 0 32px 0 var(--color-accent), 0 2px 12px #0003;
}
.plan-card.premium {
  border: 2.5px solid var(--color-premium);
  box-shadow: 0 0 40px 0 var(--color-premium), 0 2px 16px #0003;
}
.plan-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1.2rem;
}
.plan-header {
  flex-direction: column;
  align-items: stretch;
}
.plan-header h2 {
  font-size: 1.45rem;
  color: var(--color-primary);
  margin: 0;
  letter-spacing: 0.7px;
  font-weight: 700;
  text-shadow: 0 2px 8px #0002;
}
.plan-card.destaque .plan-header h2 {
  color: var(--color-accent);
}
.plan-card.premium .plan-header h2 {
  color: var(--color-premium);
}
.price {
  font-size: 1.18rem;
  color: var(--color-secondary);
  font-weight: bold;
  background: #1a1a2f;
  border-radius: 12px;
  padding: 0.4rem 1.1rem;
  margin-right: 0.7rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  letter-spacing: 0.5px;
}
.plan-card.destaque .price {
  color: var(--color-accent);
}
.plan-card.premium .price {
  color: var(--color-premium);
}
.expand-btn {
  border: none;
  border-radius: 16px;
  padding: 0.7rem 1.6rem;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.33s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.33s cubic-bezier(.68,-0.55,.27,1.55), transform 0.22s cubic-bezier(.68,-0.55,.27,1.55), color 0.22s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow: 0 4px 18px 0 #0003, 0 0 0 3px #fff1 inset;
  outline: none;
  position: relative;
  z-index: 3;
  border: 2.5px solid #fff3;
  letter-spacing: 0.2px;
  margin: 0.7rem auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #fff !important;
}
.expand-btn-text {
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: 0.1px;
}
.expand-btn-seta {
  font-size: 1.3rem;
  transition: transform 0.33s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  align-items: center;
}
.plan-card.expanded .expand-btn-seta {
  transform: rotate(180deg);
}
.plan-desc {
  font-size: 1.13rem;
  color: var(--color-muted);
  background: #1a1a2fbb;
  padding: 1.1rem 2.1rem 1.1rem 2.1rem;
  border-bottom: 1px solid #232347;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.plan-details {
  max-height: 0;
  overflow: hidden;
  background: #232347f7;
  transition: max-height 0.5s cubic-bezier(.68,-0.55,.27,1.55), padding 0.3s;
  padding: 0 2.1rem;
}
.plan-card.expanded .plan-details {
  max-height: 700px;
  padding: 2.1rem;
}
.plan-card.premium.expanded .plan-details {
  max-height: 1200px;
}
.banner-demo {
  width: 100%;
  min-height: 100px;
  border-radius: 18px;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  font-size: 1.18rem;
  font-weight: 500;
  position: relative;
  border: 2.5px solid var(--color-muted);
  background: linear-gradient(90deg, #232347cc 60%, #181829cc 100%);
  animation: pulse 1.5s infinite alternate;
  box-shadow: 0 2px 16px #0002, 0 0 0 4px #fff1 inset;
}
.banner-icone {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px #0002;
  border: 2.5px solid #fff2;
}
.banner-gratis .banner-icone { background: var(--color-secondary); }
.banner-destaque .banner-icone { background: var(--color-accent); }
.banner-premium .banner-icone { background: var(--color-premium); }
.banner-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff2;
  margin-right: 0.7rem;
  display: inline-block;
  border: 2px solid #fff3;
}
.banner-premium .banner-logo {
  background: linear-gradient(135deg, var(--color-premium) 40%, #fff2 100%);
}
.banner-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.banner-nome {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.13rem;
  letter-spacing: 0.2px;
}
.banner-destaque .banner-nome,
.banner-destaque .banner-botao { color: var(--color-accent); }
.banner-premium .banner-nome,
.banner-premium .banner-catalogo,
.banner-premium .banner-botao { color: var(--color-premium); }
.banner-endereco, .banner-telefone, .banner-catalogo {
  color: var(--color-muted);
  font-size: 1.01rem;
}
.banner-botao {
  background: var(--color-secondary);
  color: #181829;
  border-radius: 8px;
  padding: 3px 14px;
  font-size: 1.01rem;
  margin-top: 2px;
  display: inline-block;
  font-weight: 600;
  box-shadow: 0 1px 4px #0002;
}
@keyframes pulse {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}
.banner-destaque-enfeite .banner-enfeite-left,
.banner-destaque-enfeite .banner-enfeite-right {
  width: 18px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--color-accent) 0%, #fff0 100%);
  position: absolute;
  top: 10px;
  z-index: 1;
  opacity: 0.7;
  box-shadow: 0 0 12px 2px var(--color-accent);
}
.banner-destaque-enfeite .banner-enfeite-left {
  left: 0;
}
.banner-destaque-enfeite .banner-enfeite-right {
  right: 0;
}
.banner-destaque-enfeite {
  position: relative;
  box-shadow: 0 0 24px 0 var(--color-accent), 0 2px 12px #0003;
}
.banner-premium-enfeite {
  position: relative;
  box-shadow: 0 0 32px 0 var(--color-premium), 0 2px 16px #0003;
  border: 2.5px solid var(--color-premium);
}
.banner-premium-coroa {
  position: absolute;
  left: 12px;
  top: -18px;
  font-size: 2.1rem;
  filter: drop-shadow(0 2px 6px #0008);
  z-index: 2;
  transform: rotate(-30deg);
}
.banner-premium-estrela {
  position: absolute;
  right: 18px;
  bottom: -10px;
  font-size: 1.7rem;
  color: var(--color-premium);
  filter: drop-shadow(0 2px 6px #fff8);
  z-index: 2;
}
.menu-demo {
  background: linear-gradient(90deg, #2cb67d22 0%, #f15bb522 100%);
  border-radius: 16px;
  margin: 1.2rem 0 1.5rem 0;
  padding: 1.2rem 1.5rem 1rem 1.5rem;
  box-shadow: 0 2px 12px #0002;
  color: var(--color-text);
  font-size: 1.09rem;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--color-premium);
}
.menu-title {
  font-size: 1.18rem;
  font-weight: bold;
  color: var(--color-premium);
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem 0;
}
.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--color-premium);
  font-size: 1.07rem;
}
.menu-list li:last-child {
  border-bottom: none;
}
.menu-produto {
  color: var(--color-primary);
  font-weight: 500;
}
.menu-preco {
  color: var(--color-accent);
  font-weight: bold;
}
.menu-footer {
  margin-top: 0.7rem;
  color: var(--color-muted);
  font-size: 0.98rem;
  text-align: right;
}
.plan-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.2rem;
}
.plan-details ul li {
  margin: 0.9rem 0;
  font-size: 1.13rem;
  color: var(--color-text);
  position: relative;
  padding-left: 1.4em;
  letter-spacing: 0.1px;
}
.plan-details ul li:before {
  content: '✔';
  color: var(--color-primary);
  position: absolute;
  left: 0;
  font-size: 1.13em;
  filter: drop-shadow(0 1px 2px #0005);
}
.plan-card.destaque .plan-details ul li:before { color: var(--color-accent); }
.plan-card.premium .plan-details ul li:before { color: var(--color-premium); }
@media (max-width: 600px) {
  .pricing-list {
    max-width: 100%;
    padding: 0 2px;
  }
  .plan-header-row {
    flex-direction: row;
    gap: 0.5rem;
  }
  .plan-header {
    padding-top: 1.3rem;
    padding-bottom: 0.7rem;
  }
  .plan-desc {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
  .plan-details {
    font-size: 1.01rem;
    padding: 0 1rem;
  }
  .plan-card.expanded .plan-details {
    padding: 1rem;
  }
  .banner-exemplo {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.7rem 0.5rem;
    margin-left: 0;
    margin-right: 0;
  }
  .banner-premium-exemplo {
    padding-left: 0;
    padding-right: 0;
  }
  .menu-exemplo {
    padding: 0.7rem 0.7rem 0.7rem 0.7rem;
  }
  .menu-exemplo-lista {
    gap: 0.4rem;
  }
  .menu-exemplo-item {
    padding: 0.4rem 0.5rem;
    gap: 0.5rem;
  }
  .menu-exemplo-img {
    width: 32px;
    height: 32px;
  }
  .expand-btn {
    width: 100%;
    margin: 0.7rem 0 0 0;
  }
  .expand-btn-text {
    font-size: 1.07rem;
  }
  .plan-card {
    padding: 0.7rem 0.5rem 0.9rem 0.5rem;
  }
}
.banner-exemplo {
  width: 100%;
  min-height: 90px;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  background: #232347cc;
  box-shadow: 0 2px 16px #0002, 0 0 0 4px #fff1 inset;
  position: relative;
  overflow: hidden;
}
.banner-gratis-exemplo {
  border: 2px solid var(--color-secondary);
}
.banner-barra-simples {
  width: 8px;
  height: 100%;
  background: var(--color-secondary);
  border-radius: 8px 0 0 8px;
  margin-right: 18px;
}
.banner-conteudo {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 0;
}
.banner-titulo {
  font-size: 1.13rem;
  font-weight: bold;
  color: var(--color-secondary);
  margin-bottom: 0.2rem;
}
.banner-info-linha {
  color: var(--color-muted);
  font-size: 1.01rem;
}
.banner-destaque-exemplo {
  border: 2.5px solid var(--color-accent);
  background: linear-gradient(90deg, #ff890622 0%, #232347cc 100%);
  box-shadow: 0 0 24px 0 var(--color-accent), 0 2px 12px #0003;
}
.banner-barra-colorida {
  width: 12px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-accent) 0%, #fff0 100%);
  border-radius: 12px 0 0 12px;
  margin-right: 18px;
  box-shadow: 0 0 12px 2px var(--color-accent);
}
.banner-logo-exemplo {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: #fff;
  font-weight: bold;
  font-size: 1.01rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  box-shadow: 0 2px 8px #0002;
  border: 2px solid #fff3;
}
.banner-destaque-exemplo .banner-titulo {
  color: var(--color-accent);
}
.banner-botao-exemplo {
  background: var(--color-accent);
  color: #181829;
  border-radius: 8px;
  padding: 3px 14px;
  font-size: 1.01rem;
  margin-top: 6px;
  display: inline-block;
  font-weight: 600;
  box-shadow: 0 1px 4px #0002;
  width: fit-content;
}
.banner-premium-exemplo {
  flex-direction: column;
  align-items: flex-start;
  border: 2.5px solid var(--color-premium);
  background: linear-gradient(90deg, #f15bb522 0%, #232347cc 100%);
  box-shadow: 0 0 32px 0 var(--color-premium), 0 2px 16px #0003;
  padding: 0.7rem 0 1.1rem 0;
  position: relative;
  overflow: visible;
}
.banner-premium-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 1.3rem 1.2rem 0.2rem 1.2rem;
  position: relative;
}
.banner-premium-coroa {
  font-size: 2.1rem;
  margin-right: 0.2rem;
  filter: drop-shadow(0 2px 6px #0008);
  position: absolute;
  left: 0;
  top: -1.1rem;
  transform: rotate(-30deg);
}
.banner-premium-logo {
  width: 48px;
  height: 48px;
  background: var(--color-premium);
  color: #fff;
  font-weight: bold;
  font-size: 1.01rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px #0002;
  border: 2px solid #fff3;
}
.banner-premium-nome {
  font-size: 1.13rem;
  font-weight: bold;
  color: var(--color-premium);
  margin-left: 0.5rem;
}
.banner-premium-botoes {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.7rem;
  padding-left: 1.2rem;
}
.banner-premium-botao {
  background: var(--color-premium);
  color: #181829;
  border-radius: 8px;
  padding: 3px 14px;
  font-size: 1.01rem;
  font-weight: 600;
  box-shadow: 0 1px 4px #0002;
  width: fit-content;
  border: 2px solid #fff3;
}
.menu-exemplo {
  background: linear-gradient(90deg, #2cb67d22 0%, #f15bb522 100%);
  border-radius: 16px;
  margin: 1.2rem 0 1.5rem 0;
  padding: 1.2rem 1.5rem 1rem 1.5rem;
  box-shadow: 0 2px 12px #0002;
  color: var(--color-text);
  font-size: 1.09rem;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--color-premium);
}
.menu-exemplo-titulo {
  font-size: 1.18rem;
  font-weight: bold;
  color: var(--color-premium);
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
}
.menu-exemplo-lista {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.menu-exemplo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: #232347cc;
  border-radius: 12px;
  padding: 0.7rem 0.5rem 1rem 0.5rem;
  box-shadow: 0 1px 4px #0002;
  min-width: 0;
}
.menu-exemplo-img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-premium) 40%, #fff2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 1px 4px #0002;
  margin-bottom: 0.3rem;
}
.menu-exemplo-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}
.menu-exemplo-produto {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1.07rem;
}
.menu-exemplo-preco {
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.07rem;
  margin-bottom: 0.3rem;
}
.menu-exemplo-btn {
  background: linear-gradient(90deg, var(--color-premium) 60%, #fbb1e3 100%);
  color: #181829;
  border: none;
  border-radius: 8px;
  padding: 0.35rem 1.1rem;
  font-size: 1.01rem;
  font-weight: 600;
  box-shadow: 0 1px 4px #0002;
  cursor: pointer;
  transition: background 0.2s, transform 0.18s;
  margin-top: 0.2rem;
}
.menu-exemplo-btn:hover {
  background: linear-gradient(90deg, #fbb1e3 0%, var(--color-premium) 100%);
  transform: scale(1.06);
}
.menu-exemplo-footer {
  margin-top: 0.7rem;
  color: var(--color-muted);
  font-size: 0.98rem;
  text-align: right;
}
.banner-premium-infos {
  display: flex;
  gap: 1.1rem;
  margin-top: 0.5rem;
  padding-left: 1.2rem;
}
.banner-premium-info {
  color: var(--color-muted);
  font-size: 1.01rem;
  background: none;
  border-radius: 0;
  padding: 0;
  font-weight: 500;
  box-shadow: none;
  letter-spacing: 0.1px;
}
.banner-premium-botoes {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.7rem;
  padding-left: 1.2rem;
}
.banner-premium-botao {
  background: var(--color-premium);
  color: #181829;
  border-radius: 8px;
  padding: 3px 14px;
  font-size: 1.01rem;
  font-weight: 600;
  box-shadow: 0 1px 4px #0002;
  width: fit-content;
  border: 2px solid #fff3;
}
.expand-btn-gratis {
  background: linear-gradient(90deg, var(--color-secondary) 60%, #2cb67d 100%);
  color: #fff !important;
  border: 2.5px solid var(--color-secondary);
  box-shadow: 0 0 16px 0 var(--color-secondary), 0 4px 18px #0003;
}
.expand-btn-gratis:hover, .plan-card.expanded .expand-btn-gratis {
  background: linear-gradient(90deg, #2cb67d 0%, var(--color-secondary) 100%);
  color: #fff !important;
  box-shadow: 0 0 24px 0 var(--color-secondary), 0 6px 24px #0004;
  transform: scale(1.05);
}
.expand-btn-destaque {
  background: linear-gradient(90deg, var(--color-accent) 60%, #ffb86b 100%);
  color: #fff;
  border: 2.5px solid var(--color-accent);
  box-shadow: 0 0 16px 0 var(--color-accent), 0 4px 18px #0003;
  color: #fff !important;
}
.expand-btn-destaque:hover, .plan-card.expanded .expand-btn-destaque {
  background: linear-gradient(90deg, #ffb86b 0%, var(--color-accent) 100%);
  color: #fff;
  box-shadow: 0 0 24px 0 var(--color-accent), 0 6px 24px #0004;
  transform: scale(1.05);
}
.expand-btn-premium {
  background: linear-gradient(90deg, var(--color-premium) 60%, #fbb1e3 100%);
  color: #fff;
  border: 2.5px solid var(--color-premium);
  box-shadow: 0 0 16px 0 var(--color-premium), 0 4px 18px #0003;
  color: #fff !important;
}
.expand-btn-premium:hover, .plan-card.expanded .expand-btn-premium {
  background: linear-gradient(90deg, #fbb1e3 0%, var(--color-premium) 100%);
  color: #fff;
  box-shadow: 0 0 24px 0 var(--color-premium), 0 6px 24px #0004;
  transform: scale(1.05);
}
.plan-card#gratis .plan-header h2,
.plan-card#gratis .price {
  color: var(--color-secondary);
}
.menu-exemplo-lista.menu-exemplo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 0.7rem;
}
.menu-exemplo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: #232347cc;
  border-radius: 12px;
  padding: 0.7rem 0.5rem 1rem 0.5rem;
  box-shadow: 0 1px 4px #0002;
  min-width: 0;
}
.menu-exemplo-img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-premium) 40%, #fff2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 1px 4px #0002;
  margin-bottom: 0.3rem;
}
.menu-exemplo-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}
.menu-exemplo-produto {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1.07rem;
}
.menu-exemplo-preco {
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.07rem;
  margin-bottom: 0.3rem;
}
.menu-exemplo-btn {
  background: linear-gradient(90deg, var(--color-premium) 60%, #fbb1e3 100%);
  color: #181829;
  border: none;
  border-radius: 8px;
  padding: 0.35rem 1.1rem;
  font-size: 1.01rem;
  font-weight: 600;
  box-shadow: 0 1px 4px #0002;
  cursor: pointer;
  transition: background 0.2s, transform 0.18s;
  margin-top: 0.2rem;
}
.menu-exemplo-btn:hover {
  background: linear-gradient(90deg, #fbb1e3 0%, var(--color-premium) 100%);
  transform: scale(1.06);
}
@media (max-width: 430px) {
  .menu-exemplo-lista.menu-exemplo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .menu-exemplo-item {
    padding: 0.6rem 0.2rem 0.9rem 0.2rem;
  }
  .menu-exemplo-img {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}
@media (max-width: 350px) {
  .menu-exemplo-lista.menu-exemplo-grid {
    grid-template-columns: 1fr;
  }
}
.banner-premium-link {
  margin-top: 1.1rem;
  padding: 0.7rem 1.2rem;
  background: #fff1;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  box-shadow: 0 1px 4px #0002;
  font-size: 1.05rem;
  align-items: flex-start;
}
.banner-premium-link-label {
  color: var(--color-premium);
  font-weight: 600;
  font-size: 1.01rem;
}
.banner-premium-link-url {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.09rem;
  word-break: break-all;
} 