body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

/* ===== Cabeçalho ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1000;
  padding: 12px 0;
  transition: background 0.3s ease;
}

header .navbar-brand img {
  height: 45px;
}

header .nav-link {
  color: #fff !important;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.3rem;
  padding: 0 50px;
}

header .nav-link:hover {
  color: #FF9700 !important;
}

/* ===== Banner ===== */
.banner {
  position: relative;
  text-align: center;
}

.banner img {
  width: 100%;
  height: auto;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Acesso Lojas / Profissional ===== */
.acessos {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.acesso-item {
  flex: 1;
  padding: 15px 0;
  transition: opacity 0.3s;
  cursor: pointer;
}

.acesso-lojas {
  background-color: #FF9700;
  color: #fff;
}

.acesso-prof {
  background-color: #333;
  color: #fff;
}

.acesso-item:hover {
  opacity: 0.9;
}

/* ===== Conteúdo ===== */
section.container {
  margin-top: 60px;
  margin-bottom: 60px;
}

h2 {
  color: #222;
  font-weight: 700;
}

p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ===== Rodapé ===== */
footer {
  background-color: #222;
  color: #ccc;
  font-size: 0.9rem;
  padding: 30px 0 15px;
  text-align: center;
}

footer img {
  height: 50px;
  vertical-align: middle;
}

footer .linha {
  border-top: 1px solid #444;
  margin: 20px auto;
  width: 80%;
}

/* ===== Modal ===== */
.modal-content {
  border-radius: 12px;
  border: none;
}

.modal-header {
  border-bottom: none;
}

.modal-title {
  font-weight: 600;
}

/* ===== Responsividade ===== */
@media (max-width: 768px) {
  .banner-overlay h1 {
    font-size: 1.5rem;
    padding: 0 10px;
  }

  .acesso-item {
    font-size: 0.9rem;
  }
}