/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #111;
  color: #eee;
  line-height: 1.6;
  padding: 0 15px;
}

header {
  position: relative;
  height: 250px;
  background-image: url('https://wallpapers.com/images/high/sexy-body-lingerie-lace-z8cb29s6yqobwhdt.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.header-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  margin-bottom: 8px;
}

header p {
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 20px 0;
  background-color: #1a1a1a;
  border-bottom: 1px solid #333;
}

.filtros select,
.filtros button {
  padding: 10px 15px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background-color: #222;
  color: #eee;
  cursor: pointer;
}

.filtros select:focus,
.filtros button:focus {
  outline: none;
}


/* === SEÇÃO DE DESTAQUES === */
.destaques {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 350px));
  gap: 12px;
  margin: 30px auto;
  padding: 20px;
  background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
  justify-items: center;
}

/* === CARDS DE DESTAQUE === */
.destaques .perfil-card {
  position: relative;
  border: 2px solid gold;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  background-color: #1c1c1c;
  cursor: pointer;
}

.destaques .perfil-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.destaques .perfil-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

/* === ETIQUETA DESTAQUE === */
.destaques .perfil-card::before {
  content: "★ Destaque";
  position: absolute;
  top: 10px;
  left: 10px;
  background: gold;
  color: black;
  font-weight: bold;
  font-size: 0.85rem;
  padding: 3px 8px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* === RESPONSIVO === */
@media (max-width: 1200px) {
  .destaques {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 768px) {
  .destaques {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

@media (max-width: 480px) {
  .destaques {
    grid-template-columns: 1fr;
  }
}

/* Grid com 5 cards por linha */
.perfis {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  padding: 20px 0;
  justify-items: center;
}

.perfil-card {
  background-color: #1c1c1c;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.perfil-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.perfil-info {
  padding: 10px 8px;
}

.perfil-info h3 {
  color: #f9d423;
  margin-bottom: 5px;
  font-size: 1.05rem;
  text-align: center;
}

.perfil-info p {
  font-size: 0.9rem;
  color: #ddd;
  text-align: center;
}

.perfil-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/* === DESTAQUES COM EFEITO DOURADO === */
.destaques .perfil-card {
  border: 2px solid gold;
  position: relative;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  overflow: hidden;
}

/* Efeito de brilho animado */
.destaques .perfil-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 215, 0, 0) 0%,
    rgba(255, 215, 0, 0.5) 50%,
    rgba(255, 215, 0, 0) 100%
  );
  transform: skewX(-25deg);
  animation: brilhoDourado 4s infinite;
}

@keyframes brilhoDourado {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background-color: #1c1c1c;
  padding: 20px;
  border-radius: 12px;
  max-width: 550px;
  width: 90%;
  max-height: 90%;
  overflow-y: auto;
  color: #eee;
  text-align: center;
}

.modal-content img.main-foto {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.modal-content h2 {
  color: #f9d423;
  margin-bottom: 10px;
}

.modal-content .detalhes p {
  margin: 5px 0;
  font-size: 0.9rem;
}

.modal-content .mini-fotos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.modal-content .mini-fotos img {
  width: 60px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s;
}

.modal-content .mini-fotos img:hover {
  transform: scale(1.1);
}

.modal .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top:0;left:0;width:100%;height:100%;
  background-color: rgba(0,0,0,0.95);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:1000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.lightbox .close {
  position:absolute;
  top:20px;
  right:30px;
  font-size:2rem;
  cursor:pointer;
  color:#f9d423;
}

.lightbox .nav {
  position:absolute;
  top:50%;
  width:100%;
  display:flex;
  justify-content:space-between;
  padding:0 20px;
  transform:translateY(-50%);
  color:#f9d423;
  font-size:2rem;
  user-select:none;
  cursor:pointer;
}

/* Responsivo */
@media (max-width: 1200px) {
  .perfis {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .perfis {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .perfis {
    grid-template-columns: repeat(2, 1fr);
  }

}