* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  color: #222;
  background: #f5f5f5;
}
  .logo-img {
  height: 48px; /* ajuste como preferir */
  width: auto;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Topbar */

.topbar {
  background: #111;
  color: #fff;
  font-size: 13px;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}

/* Navbar */

.navbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo-main {
  font-weight: 800;
  letter-spacing: 2px;
  color: #e30613;
  font-size: 20px;
}

.logo-sub {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: #555;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.nav-links a:hover {
  color: #e30613;
}

.btn-nav {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #e30613;
}

/* Hero */

.hero {
  background: linear-gradient(120deg, #e30613, #8b0000);
  color: #fff;
  padding: 48px 0 56px;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 12px;
}

.hero p {
  font-size: 15px;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 10px;
  border-radius: 999px;
}

/* Buttons */

.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  border-radius: 999px;
  padding: 10px 18px;
  transition: 0.2s ease;
}

.btn-primary {
  background: #fff;
  color: #e30613;
  border: 1px solid #fff;
}

.btn-primary:hover {
  background: #f5f5f5;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline {
  background: transparent;
  color: #e30613;
  border: 1px solid #e30613;
}

.btn-outline:hover {
  background: #e30613;
  color: #fff;
}

.full {
  width: 100%;
}

/* Hero form */

.hero-form {
  background: #fff;
  color: #222;
  border-radius: 12px;
  padding: 20px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero-form h2 {
  font-size: 18px;
  margin-bottom: 6px;
}

.hero-form p {
  font-size: 13px;
  margin-bottom: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 13px;
}

input,
select,
textarea {
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #e30613;
}

small {
  font-size: 11px;
  color: #666;
}

/* Sections */

.section {
  padding: 48px 0;
  background: #f5f5f5;
}

.section.light {
  background: #fff;
}

.section h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 14px;
  color: #555;
  margin-bottom: 24px;
}

/* Cards */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.plano-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.price {
  font-size: 14px;
  margin-bottom: 10px;
}

.price span {
  font-size: 20px;
  font-weight: 700;
}

.plano-card ul {
  list-style: none;
  font-size: 13px;
  margin-bottom: 14px;
}

.plano-card li {
  margin-bottom: 4px;
}

.plano-card.destaque {
  border: 2px solid #e30613;
  transform: translateY(-4px);
}

/* Benefícios */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.benefit-item h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.benefit-item p {
  font-size: 13px;
  color: #555;
}

/* Sobre */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.about-list {
  list-style: none;
  margin-top: 10px;
  font-size: 13px;
}

.about-list li {
  margin-bottom: 4px;
}

.about-highlight {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 16px 14px;
}

.about-highlight ul {
  list-style: none;
  margin-bottom: 10px;
}

.about-highlight li {
  margin-bottom: 4px;
}

/* Passos */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.step-item {
  background: #fff;
  border-radius: 12px;
  padding: 16px 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.step-number {
  display: inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #e30613;
  color: #fff;
  font-size: 13px;
  margin-bottom: 8px;
}

/* Contato */

.contact-section {
  background: #111;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  font-size: 14px;
  margin: 10px 0 16px;
}

.contact-list li {
  margin-bottom: 4px;
}

.contact-note {
  font-size: 11px;
  color: #ccc;
  margin-top: 8px;
}

.contact-section input,
.contact-section textarea {
  background: #222;
  border-color: #444;
  color: #fff;
}

.contact-section input:focus,
.contact-section textarea:focus {
  border-color: #e30613;
}

/* Footer */

.footer {
  background: #000;
  color: #aaa;
  font-size: 12px;
  padding: 14px 0;
}

.footer-content {
  text-align: center;
}

/* Responsivo */

@media (max-width: 900px) {
  .hero-content,
  .cards-grid,
  .benefits-grid,
  .about-grid,
  .steps-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-content {
    gap: 24px;
  }

  .nav-links {
    display: none; /* versão simples sem menu mobile */
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 24px;
  }

  .section {
    padding: 32px 0;
  }
}
@media (max-width: 768px) {
  .topbar-content,
  .nav-content,
  .hero-content,
  .cards-grid,
  .benefits-grid,
  .about-grid,
  .steps-grid,
  .contact-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nav-links {
    display: none; /* Esconde menu horizontal em telas pequenas */
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero p,
  .section-subtitle,
  .plano-card p,
  .benefit-item p,
  .about-list,
  .contact-list {
    font-size: 14px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    font-size: 14px;
    padding: 10px 16px;
  }

  .logo-img {
    height: 40px;
  }

  .hero-form,
  .card,
  .step-item,
  .about-highlight {
    padding: 16px;
  }

  .section {
    padding: 32px 0;
  }

  input,
  select,
  textarea {
    font-size: 15px;
  }
}
#planos {
  background-image: url('fundo1.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #acacac;
  position: relative;
  z-index: 1;
}

#planos::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1); /* escurece para melhor leitura */
  z-index: -1;
}
#sobre {
  background-image: url('fundo2.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #acacac;
  position: relative;
  z-index: 1;
}

#sobre::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* leve escurecimento para contraste */
  z-index: -1;
}

#inicio {
  background-image: url('fundo_padrao.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #acacac;
  position: relative;
  z-index: 1;
}

#inicio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* leve escurecimento para contraste */
  z-index: -1;
}