/* Cabeçalho organizado e centralizado */
.vs-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 0 0 0;
  background: none;
}
.vs-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}
.vs-logo img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 14px;
}
.vs-nav {
  display: flex;
  gap: 48px;
  font-size: 1.25rem;
  margin-top: 8px;
  justify-content: center;
}
.vs-cart-btn {
  background: #00b894;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-left: 8px;
  margin-top: 8px;
  transition: background 0.2s;
}
.vs-cart-btn:hover {
  background: #008c6a;
}
.vs-cart-modal-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vs-cart-modal {
  background: #fff;
  border-radius: 12px;
  max-width: 340px;
  width: 90%;
  padding: 28px 18px 18px 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  text-align: center;
  position: relative;
}
.vs-cart-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 22px;
  color: #888;
  cursor: pointer;
}
.vs-cart-modal h2 {
  margin-top: 0;
  font-size: 1.3rem;
}
.vs-cart-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 12px 0;
  color: #444;
  font-size: 1rem;
}
.vs-cart-total {
  font-size: 1.1rem;
  color: #e1306c;
  font-weight: bold;
  margin-bottom: 14px;
}
.vs-credibility {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  padding: 24px 18px;
  margin-bottom: 32px;
  text-align: center;
}
.vs-credibility-list {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.vs-credibility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
}
.vs-credibility-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 8px;
}
.vs-credibility-item span {
  color: #222;
  font-size: 1rem;
  font-weight: 500;
}
.vs-old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 1rem;
  margin-right: 8px;
}
.vs-off {
  background: #e1306c;
  color: #fff;
  font-size: 0.95rem;
  border-radius: 4px;
  padding: 2px 7px;
  margin-left: 8px;
  font-weight: bold;
}
.vs-testimonial-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(135deg, #0f2027 0%, #2c5364 40%, #6a3093 70%, #e1306c 100%);
  color: #222;
  margin: 0;
  padding: 0;
}
  .vs-header {
    background: #fafafd;
    box-shadow: 0 2px 12px #0001;
  }
    background: transparent !important;
  }
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    border-radius: 12px;
    backdrop-filter: blur(0.5px);
    background: rgba(255,255,255,0.10) !important;
  }
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
}
.vs-logo {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
}
.vs-logo span {
  color: #e1306c;
}
.vs-nav a {
  color: #222;
  text-decoration: none;
  margin-left: 24px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.vs-nav a:hover {
  color: #e1306c;
}
.vs-main {
  max-width: 900px;
  margin: 32px auto 0 auto;
  padding: 0 16px;
}
.vs-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  padding: 32px 24px;
  margin-bottom: 32px;
}
.vs-hero-content {
  display: flex;
  flex-direction: column;
}
.vs-hero-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.vs-hero-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-left: 32px;
}
.vs-hero h1 {
  margin: 0 0 12px 0;
  font-size: 2rem;
  color: #222;
}
.vs-hero p {
  color: #444;
  font-size: 1.1rem;
}
.vs-btn {
  background: #e1306c;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 18px;
  display: inline-block;
}
.vs-btn:hover {
  background: #b81e53;
}
.vs-plans {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  padding: 28px 24px;
  margin-bottom: 32px;
}
.vs-plans h2 {
  margin-top: 0;
  color: #222;
  font-size: 1.5rem;
}
.vs-plan-list {
  display: flex;
  gap: 24px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.vs-plan-card {
  background: #fafbfc;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  padding: 18px 24px;
  flex: 1 1 180px;
  min-width: 180px;
  text-align: center;
}
.vs-plan-card h3 {
  margin: 0 0 8px 0;
  color: #e1306c;
  font-size: 1.2rem;
}
.vs-plan-price {
  font-size: 1.5rem;
  color: #222;
  font-weight: bold;
  margin-bottom: 12px;
}
.vs-how {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  padding: 28px 24px;
  margin-bottom: 32px;
}
.vs-how h2 {
  margin-top: 0;
  color: #222;
  font-size: 1.5rem;
}
.vs-how ol {
  color: #444;
  font-size: 1.1rem;
  margin-left: 18px;
}
.vs-testimonials {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  padding: 28px 24px;
  margin-bottom: 32px;
}
.vs-testimonials h2 {
  margin-top: 0;
  color: #222;
  font-size: 1.5rem;
}
.vs-testimonial-list {
  display: flex;
  gap: 24px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.vs-testimonial-card {
  background: #fafbfc;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  padding: 14px 18px;
  flex: 1 1 180px;
  min-width: 180px;
  text-align: center;
  font-size: 1rem;
}
.vs-testimonial-card span {
  color: #e1306c;
  font-size: 0.98rem;
  display: block;
  margin-top: 8px;
}
.vs-contact {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  padding: 28px 24px;
  margin-bottom: 32px;
}
.vs-contact h2 {
  margin-top: 0;
  color: #222;
  font-size: 1.5rem;
}
.vs-contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.vs-contact-form input,
.vs-contact-form textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}
.vs-footer {
  background: #fff;
  text-align: center;
  padding: 18px 0;
  color: #888;
  font-size: 15px;
  margin-top: 48px;
}
@media (max-width: 600px) {
  .vs-plan-list {
    flex-direction: column;
    gap: 18px;
  }
  .vs-plan-card {
    min-width: unset;
    padding: 16px 10px;
  }
  .vs-plan-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .vs-off {
    margin-left: 0 !important;
    margin-top: 6px;
    display: inline-block;
    font-size: 1rem;
    padding: 3px 10px;
  }
  .vs-hero-img {
    width: 100px !important;
    height: 100px !important;
    margin-left: 0 !important;
    display: block;
    margin: 18px auto 0 auto;
  }
  .vs-hero-title-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }
  .vs-hero-img {
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    position: relative;
    top: 6px;
  }
  .vs-hero-title-row h1 {
    font-size: 1.35rem;
  }
}
