* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background:#050816;
  color:#fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 15px 50px;
}

.hero {
  text-align:center;
  padding: 30px 10px 10px;
}

.logo-text {
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 1.2rem;
  color:#00ffb3;
}

h1 {
  margin-top:10px;
  font-size: 2.2rem;
}

.slogan {
  margin-top:10px;
  font-size: 1rem;
  color:#c5c5c5;
}

.pricing-grid {
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:20px;
  margin-top:35px;
}

.card {
  background: linear-gradient(145deg,#0a1020,#111827);
  border-radius:12px;
  padding:20px 18px 22px;
  border:1px solid rgba(255,255,255,0.08);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  position:relative;
  /* animação suave do card */
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.45);
  border-color: rgba(255,255,255,0.18);
}
.card:focus-within {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.45);
  border-color: rgba(255,255,255,0.18);
}

.badge {
  /*position:absolute;*/
  top:5px;
  /*right:14px;*/
  background:#00ffb3;
  color:#05101b;
  font-size:0.75rem;
  padding:4px 10px;
  border-radius:999px;
  font-weight:700;
  text-transform:uppercase;
  text-align: center;
}

/* IMAGEM RESPONSIVA */
.card-image-wrapper {
  width: 100%;
  margin: 35px auto 15px;
  border-radius: 10px;
  background: radial-gradient(circle at top, #1f2937, #020617);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 10px;
}

.card-image {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 3 / 4;
  display:block;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display:block;
}

.card-title {
  font-size:1.1rem;
  font-weight:700;
  margin-bottom:5px;
  text-align:center;
  margin-top: 10px;
}

.card-sub {
  font-size:0.9rem;
  color:#c5c5c5;
  margin-bottom:10px;
  text-align:center;
}

.price-line {
  margin-bottom:8px;
  font-size:0.95rem;
  text-align:center;
}

.old-price {
  text-decoration: line-through;
  color:#808080;
  margin-right:6px;
}

.new-price {
  font-size:1.4rem;
  font-weight:700;
  color:#00ffb3;
}

.per-bottle {
  font-size:0.85rem;
  color:#c5c5c5;
  margin-bottom:10px;
  text-align:center;
}

.details {
  font-size:0.8rem;
  color:#a1a1a1;
  line-height:1.5;
  margin-bottom:16px;
  text-align:center;
}

.btn {
  display:block;
  text-align:center;
  text-decoration:none;
  padding:12px 16px;
  border-radius:999px;
  font-weight:700;
  margin-top:auto;
  background:#00ffb3;
  color:#05101b;
  font-size:0.95rem;
  cursor: pointer;
  /* animação suave */
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  background:#0ee0a0;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.btn:focus-visible {
  outline: 2px solid #22c55e;
  outline-offset: 3px;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.secure {
  text-align:center;
  font-size:0.75rem;
  color:#9ca3af;
  margin-top:18px;
}

/* RESPONSIVO */
@media (max-width:900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .card:nth-child(2) {
    order:-1;
  }
  .card-image-wrapper {
    max-width: 260px;
  }
}

@media (max-width:480px) {
  h1 {
    font-size:1.6rem;
  }
  .card {
    padding:16px 14px 18px;
  }
  .card-image-wrapper {
    margin: 25px auto 10px;
  }
  .card-image {
    max-width: 200px;
    aspect-ratio: 3 / 5;
  }
}
.disclaimer {
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 20px 15px 0;
  font-size: 0.75rem;
  color: #9ca3af;
  line-height: 1.6;
}

.disclaimer h2 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #e5e7eb;
  text-align: center;
}

.disclaimer p {
  text-align: justify;
}

.site-footer {
  background: #020617;
  border-top: 1px solid rgba(148,163,184,0.25);
  margin-top: 40px;
  padding: 25px 15px 20px;
  color: #9ca3af;
  font-size: 0.8rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto 15px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 24px;
}

.footer-logo {
  font-weight: 700;
  letter-spacing: 2px;
  color: #e5e7eb;
  margin-bottom: 8px;
}

.footer-text {
  line-height: 1.6;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e5e7eb;
  margin-bottom: 8px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li + li {
  margin-top: 4px;
}

.footer-links a,
.footer-contact a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(148,163,184,0.25);
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
}

.footer-bottom-note {
  max-width: 700px;
  margin: 0 auto;
}

/* responsive footer */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
