/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #2e2e2e;
  background-color: #ffffff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

/* Header */
.header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #007bff;
}
.logo span {
  color: #2e2e2e;
}

.nav {
  display: flex;
  gap: 25px;
}
.nav a {
  font-weight: 600;
  transition: color 0.3s;
}
.nav a:hover {
  color: #007bff;
}
.nav a[aria-current="page"] {
  color: #007bff;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.btn-primary {
  display: inline-block;
  background-color: #ffffff;
  color: #007bff;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-primary:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}

/* Hero compacto (ex.: página Produtos — destaca a seção de planos abaixo) */
.hero.hero--compact {
  padding: 36px 0 40px;
}
.hero.hero--compact h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}
.hero.hero--compact p {
  font-size: 0.95rem;
  margin-bottom: 16px;
  max-width: 520px;
  opacity: 0.95;
}
.btn-primary--sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

/* Features / Cards */
.features {
  padding: 60px 0;
  text-align: center;
}
.features h2 {
  margin-bottom: 40px;
  font-size: 2rem;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.card h3 {
  color: #007bff;
  margin-bottom: 10px;
}

/* Planos (varejo / PDV) */
.plans-section {
  background: #f5f7fb;
  padding: 60px 0;
  text-align: center;
}
.plans-section h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}
.plans-subtitle {
  margin: 0 auto 40px;
  max-width: 640px;
  color: #555;
  font-size: 1rem;
}
.plans-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}
.plan-card {
  background: #fff;
  width: 100%;
  max-width: 260px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
}
.plan-card:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}
/** Plano recomendado: borda azul contínua (demais cards ficam só com sombra). */
.plan-card.recommended {
  border: 3px solid #1a56db;
  box-shadow: 0 6px 20px rgba(26, 86, 219, 0.18);
}
.plan-card.recommended:hover {
  border-color: #007bff;
  box-shadow: 0 10px 26px rgba(26, 86, 219, 0.28);
}
.plan-card--selected {
  border-color: #007bff;
  box-shadow: 0 10px 32px rgba(0, 123, 255, 0.35);
  transform: translateY(-3px);
}
.plan-card.recommended.plan-card--selected {
  border-color: #0056b3;
  border-width: 3px;
  box-shadow: 0 12px 36px rgba(0, 86, 179, 0.45);
  transform: translateY(-3px);
}
.plan-badge {
  display: inline-block;
  align-self: flex-start;
  background: #007bff;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 6px;
  margin-bottom: 10px;
  font-weight: 600;
}
.plan-card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  color: #2e2e2e;
}
.plan-price {
  font-size: 36px;
  color: #007bff;
  font-weight: 700;
  line-height: 1.2;
}
.plan-cupons {
  margin: 8px 0 16px;
  font-size: 0.95rem;
  color: #555;
}
.plan-card ul {
  padding-left: 18px;
  margin: 0;
  flex-grow: 1;
  font-size: 0.95rem;
}
.plan-card li {
  margin-bottom: 6px;
}
.plan-btn {
  display: block;
  text-align: center;
  background: #007bff;
  color: #fff !important;
  padding: 12px;
  border-radius: 6px;
  margin-top: 20px;
  font-weight: 600;
  transition: background 0.3s;
}
.plan-btn:hover {
  background: #0056b3;
}

/* Page Content */
.page-content {
  padding: 60px 0;
}
.page-content h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
}
.page-content .container > h1 + p {
  text-align: center;
  max-width: 640px;
  margin: -1.25rem auto 2.5rem;
  line-height: 1.65;
  color: #444;
}

/* Quem Somos */
.ul {
  text-align: left;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 40px auto 0;
}
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: #333;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact-form button {
  width: 100%;
}
.form-hint {
  font-size: 0.88rem;
  margin: -8px 0 14px;
  min-height: 1.2em;
  color: #555;
}
.form-hint--ok {
  color: #1b6e1b;
}
.form-hint--err {
  color: #b00020;
}
.form-hint--muted {
  color: #777;
  font-size: 0.82rem;
}
/* Modal agradecimento contato */
.thank-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.45);
  box-sizing: border-box;
}
.thank-modal.thank-modal--open {
  display: flex;
}
.thank-modal__dialog {
  background: #fff;
  max-width: 440px;
  width: 100%;
  border-radius: 10px;
  padding: 28px 24px 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  text-align: center;
}
.thank-modal__title {
  margin: 0 0 14px;
  font-size: 1.45rem;
  color: #2e2e2e;
}
.thank-modal__text {
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.55;
  color: #444;
}
.thank-modal__btn {
  width: auto;
  min-width: 120px;
  margin: 0 auto;
}

/* Footer */
.footer {
  background-color: #2e2e2e;
  color: white;
  text-align: center;
  padding: 25px 0;
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .nav.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero.hero--compact h1 {
    font-size: 1.35rem;
  }
  .hero.hero--compact p {
    font-size: 0.9rem;
  }
  .cards {
    flex-direction: column;
    align-items: center;
  }
}
