/* ======== RESET ======== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ======== CABEÇALHO ======== */
header {
  background: #e5141d;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
}

.search-container {
  display: flex;
  gap: 10px;
}

.search-container input {
  padding: 8px 10px;
  border-radius: 20px;
  border: none;
  outline: none;
  width: 250px;
}

.search-btn {
  background: white;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
}

.user-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn {
  background: white;
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #f2f2f2;
}

.user-icon {
  background: white;
  color: purple;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ======== CARROSSEL ======== */
.banner-container {
  position: relative;
  max-width: 800px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.banner-slide img {
  width: 100%;
  display: none;
  border-radius: 12px;
}

.banner-slide img.active {
  display: block;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  color: black;
  border: none;
  border-radius: 50%;
  padding: 10px;
  font-weight: bold;
  user-select: none;
}

.prev { left: 10px; }
.next { right: 10px; }

/* ======== LOGO ABAIXO ======== */
.logo-container {
  text-align: center;
  margin: 40px 0;
}

.logo-container img {
  width: 200px;
}

/* ======== RODAPÉ ======== */
footer {
  background: #1b1b1b;
  color: white;
  text-align: center;
  padding: 15px 0;
}
