/* RESET Y BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #1a1a1a;
  font-family: Arial, sans-serif;
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* CABECERA */
.header {
  background-color: #a19fa0;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 80px;
}

.btn-anunciarme {
  background-color: #f70768;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-anunciarme:hover {
  background-color: #c70057;
}

/* FILTROS */
.filtros {
  background-color: #222;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filtros button {
  background-color: #333;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.filtros span {
  color: white;
  font-weight: bold;
}

/* ANUNCIOS */
.anuncios {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 30px;
  background: #1a1a1a;
}

.anuncio, .anuncio-destacado {
  background: #2a2a2a;
  border-radius: 10px;
  width: 240px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  position: relative;
  border: 2px solid transparent;
  transition: transform 0.3s;
}

.anuncio:hover, .anuncio-destacado:hover {
  transform: scale(1.02);
}

.anuncio-destacado {
  border: 3px solid gold;
}

.etiqueta-golden {
  position: absolute;
  top: 0;
  left: 0;
  background: gold;
  color: black;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 13px;
  border-bottom-right-radius: 10px;
  z-index: 1;
}

.anuncio img, .anuncio-destacado img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.anuncio h3, .anuncio p,
.anuncio-destacado h3, .anuncio-destacado p {
  margin: 10px;
  color: #fff;
  font-size: 16px;
  line-height: 1.2em;
}

.etiquetas {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 5px 10px 10px;
}

.etiqueta {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 5px;
  background:#691b4a;
  color: #fcfcfc;
  border: 1px solid #555;
}

.etiqueta.verificada {
  background: #24ab61;
  color: white;
  font-weight: bold;
}
/* 👇 Agrega esto aquí 👇 */
.oculto {
  display: none;
}

/* BOTÓN VER MÁS */
.ver-mas {
  text-align: center;
  margin: 20px 0;
}

#btn-ver-mas {
  background-color: #f70768;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  font-size: 50px;
  cursor: pointer;
}

#btn-ver-mas:hover {
  background-color: #c70057;
}

/* FOOTER MEJORADO */
.footer {
  background-color: #111;
  padding: 20px 10px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-texto {
  flex: 1;
  text-align: center;
}

.footer-texto h2 {
  color: #f70768;
  margin-bottom: 10px;
  font-size: 22px;
}

.footer-texto p {
  color: #ccc;
  margin-bottom: 10px;
}

.footer-img img {
  width: 250px;
  max-width: 100%;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.redes-lineal {
  margin: 10px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.redes-lineal a {
  color: #fff;
  font-size: 32px;
}

.btn-contactanos {
  background-color: #f70768;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Marca de agua */
.imagen-con-agua {
  position: relative;
  display: inline-block;
}

.imagen-con-agua img {
  display: block;
  width: 100%;
  height: auto;
}

.imagen-con-agua::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/marca_agua.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  opacity: 0.3;
}
.boton-scroll {
  position: fixed;
  bottom: 30px;
  right: 25px;
  background-color: rgba(247, 7, 104, 0.8); /* fucsia translúcido */
  color: white;
  font-size: 24px;
  padding: 14px 16px;
  border: none;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.boton-scroll:hover {
  background-color: rgba(199, 0, 87, 0.85); /* más oscuro al pasar mouse */
  transform: scale(1.1);
}



/* RESPONSIVE */
@media (max-width: 768px) {
  .anuncios {
    flex-direction: column;
    align-items: center;
  }

  .anuncio, .anuncio-destacado {
    width: 90%;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn-anunciarme {
    margin-top: 20px;
    text-align: center;
  }
}
