
.main-nav {
  margin-top: 40px;
}


.main-nav {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}
.main-nav .logo { height: 60px; }
.main-nav ul.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.main-nav ul.menu li a,
.auth a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}


.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 40px;
  z-index: 1000;
  background: #f39200;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-size: 14px;
}



.sub-nav {
  margin-top: 50px;
}









body {
  margin: 0;
  font-family: 'Poppins', 'Roboto', sans-serif;
  background: #fff;
  color: #333;
}

  background: #f39200;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
  font-size: 14px;
}
#theme-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}



.main-nav ul.menu li a,
.auth a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.sub-nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}
.sub-nav ul li a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
}
.hero-banner {
  background: linear-gradient(to right, #f39200, #f39200);
  color: white;
  padding: 60px 20px;
  text-align: center;
}
.hero-text h1 {
  margin: 0;
}
.planos-section {
  padding: 40px 20px;
  text-align: center;
}
.planos-grid {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.plano-card {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 100%;
  max-width: 300px;
}
.plano-card .price {
  font-size: 20px;
  margin: 10px 0;
}
.plano-btn {
  background: #f39200;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
}
.servicos-section {
  background: #eef1f5;
  padding: 60px 20px;
  text-align: center;
}
.servicos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}
.servico-item {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 220px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.servico-item span {
  font-size: 36px;
  color: #f39200;
}
.main-footer {
  background: #f39200;
  color: white;
  padding: 40px 20px 10px;
  font-size: 14px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
}
.footer-logo {
  flex: 1;
  min-width: 250px;
}
.footer-contact {
  flex: 1;
  min-width: 250px;
}
.footer-contact h4 {
  margin-top: 0;
  margin-bottom: 10px;
}
.footer-contact p, .footer-logo p {
  margin: 6px 0;
}
.footer-bottom {
  text-align: center;
  padding-top: 15px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.modal-content {
  background: white;
  max-width: 400px;
  margin: 100px auto;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}
.modal-content button {
  margin-top: 20px;
  background: #f39200;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
