.lotes-categoria {
    padding: 20px;
    max-width: 1300px;
    margin: 20px auto;
}

.lotes-categoria h1 {
    font-size: 38px;
    padding: 0 10px;
}
.lotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.lote-card {
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px #A6A6A6 solid;
    padding-bottom: 20px;
}

.lote-img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 10px;
  border: 1px solid #C6C6C6;
}

.lote-sector {
    background: #C6C6C678;
    padding: 0px 14px;
    font-size: 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 5px;
    color: #344958;
}

.lote-info h2 {
    font-size: 22px;
    margin: 5px 0;
    color: #404040;
}

.lote-precio {
    font-weight: bold;
    color: #33BF89;
    margin-bottom: 5px;
    font-size: 18px;
}

.lote-meta {
  font-size: 14px;
  color: #444;
}

.lote-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lote-btn {
    background: #33BF89;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
}

.icon-btn {
    font-size: 14px;
    text-decoration: none;
    color: #404040;
    text-transform: uppercase;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 25px;
}

.icon-btn.whatsapp {
    background-image: url(../img/icon-whatsapp.png);
}
.icon-btn.tel {
    background-image: url(../img/ico-tel.png);
}
.icon-btn.email {
    background-image: url(../img/ico-email.png);
}

.volver-btn {
    display: inline-block;
    margin-bottom: 15px;
    text-decoration: none;
    color: #007B5E;
    font-weight: bold;
    font-size: 14px;
    padding-left: 10px;
}

.volver-btn:hover {
  text-decoration: underline;
}

