* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0a0a0a;
  color: #fff;
}

/* NAV */
header {
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

.logo i {
  color: #ff2d75;
  font-size: 22px;
}
.logo img {
width: 100%;
  height: 100px;
  object-fit: contain;
  cursor: pointer;
}
nav a {
  margin-left: 20px;
  color: #aaa;
  cursor: pointer;
}

nav .active {
  color: #ff2d75;
}

/* HERO */
.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  margin: 20px 60px;
}

/* SLIDER */
.slider {
  width: 100%;
  height: 100%;
  position: absolute;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY ESCURO */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
  z-index: 1;
}

/* TEXTO */
.hero-text {
  position: relative;
  z-index: 2;
  padding: 60px;
  max-width: 600px;
}

.hero h1 {
  font-size: 42px;
}

.hero span {
  color: #ff2d75;
}

.features span {
  margin-right: 15px;
  font-size: 14px;
  color: #ccc;
}

/* SEARCH */
.search-box {
  /*position: relative;*/
   margin: -50px auto 40px;
  background: rgba(30,30,30,0.95);
  backdrop-filter: blur(10px);
  width: 65%;
  padding: 15px;
  border-radius: 14px;
  display: flex;
  gap: 10px;
  box-shadow: 0 0 20px rgba(255,45,117,0.2);
 
}

.search-box input,
.search-box select {
  flex: 1;
  padding: 10px;
  border: none;
  background: #111;
  color: #fff;
}
.search-box button {
  background: linear-gradient(45deg, #ff2d75, #ff4da6);
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}
.input-group {
  display: flex;
  align-items: center;
  background: #111;
  padding: 10px;
  border-radius: 8px;
  flex: 1;
}

.input-group i {
  color: #ff2d75;
  margin-right: 8px;
}

.input-group input,
.input-group select {
  border: none;
  background: transparent;
  color: #fff;
  width: 100%;
  outline: none;
}

.search-box button:hover {
  box-shadow: 0 0 15px #ff2d75;
}

select {
  background-color: #111;
  color: #fff;
  border: none;
  outline: none;
}

/* opções */
select option {
  background-color: #111;
  color: #ff2d75;
}

/* quando selecionado */
select option:checked {
  background-color: #ff2d75;
  color: #fff;
}
/* CATEGORIAS */
.categories {
  padding: 80px 60px;
  text-align: center;
}


.cat-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 900px; /* controla largura */
  margin: 40px auto 0;
  gap: 20px;
}
.cat {
  background: #111;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

.cat i {
  font-size: 22px;
  color: #ff2d75;
  margin-bottom: 5px;
}

.cat p {
  font-size: 12px;
  color: #ccc;
}
.cat:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 20px rgba(255, 45, 117, 0.6);
}

/* CARDS */
.cards {
  padding: 40px 60px;
}
.card {
  min-width: 220px;
  flex: 0 0 auto;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.card::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.card-slider {
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: auto;   /* 🔥 AQUI resolve */
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 20px 0;
}

/* Chrome / Safari */
.card-slider::-webkit-scrollbar {
  display: none;
}

.card h3, .card p {
  position: absolute;
  left: 10px;
  z-index: 2;
}

.card h3 {
  bottom: 35px;
}
.card p {
  bottom: 15px;
  font-size: 12px;
}

.card:hover {
  transform: scale(1.05);
}
/* BOTÕES */
.nav {
  position: absolute;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 3;
}

.prev { left: -10px; }
.next { right: -10px; }

.nav:hover {
  background: #ff2d75;
}

/* PERFIL GAROTAS */
.perfil-container {
  padding: 40px;
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.perfil-container img {
  width: 100%;
  border-radius: 15px;
}