/* Tipografía y fondo */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #FFD700;
  color: #333;
}

/* Encabezado */
header {
  background-color: #000;
  color: #FFD700;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 1.6rem;
  font-weight: 700;
}

header nav a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 500;
}

/* Contenedor principal */
.anuncio-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fffbe6;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

/* Título */
.anuncio-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000;
}

/* Imagen principal */
.anuncio-imagen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

/* Descripciones */
.descripcion-corta,
.descripcion-larga {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

/* Datos de contacto */
.datos-contacto h3 {
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 5px;
  color: #000;
}

.datos-contacto p,
.datos-contacto a {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 10px;
  text-decoration: none;
}

.datos-contacto a:hover {
  text-decoration: underline;
  color: #000;
}

/* Redes Sociales */
.redes-sociales {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.redes-sociales a {
  background-color: #000;
  color: #FFD700;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.redes-sociales a:hover {
  background-color: #333;
}

/* Mapa */
.mapa {
  margin-top: 30px;
}

.mapa iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
}

/* Footer */
footer {
  background-color: #000;
  color: #FFD700;
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  margin-top: 40px;
}

.anuncio-imagen {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  display: block;
  margin-bottom: 25px;
}

/* Miniaturas */
.imagenes-extra {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.imagenes-extra .miniatura {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.2s;
}
.imagenes-extra .miniatura:hover {
    transform: scale(1.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}
.modal-contenido {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}
.cerrar {
    position: absolute;
    top: 20px; right: 30px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}
