﻿/* Estilos Generales */
body { 
    font-family: Arial, sans-serif; 
    margin: 0; 
    background: #f5f5f5; 
}

header { 
    background: #00a650; 
    color: white; 
    padding: 15px; 
    text-align: center; 
    font-size: 20px; 
}

/* Contenedor de Anuncios */
.grid-anuncio { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px; 
    padding: 20px; 
}

/* Tarjeta de Auto */
.anuncio { 
    background: white; 
    border-radius: 10px; 
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
}

.anuncio h3 { margin: 0 0 5px 0; font-size: 18px; color: #333; }

.precio { 
    color: #00a650; 
    font-weight: bold; 
    margin-bottom: 15px; 
    font-size: 1.1em;
}

/* Links en Gris (WhatsApp y Video) */
.btn-group {
    display: flex;
    gap: 15px;
}

.btn-wa, .btn-info {
    color: #7f8c8d !important; /* Gris suave */
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.2s ease, color 0.2s ease;
}

/* Efecto Hover: Más grande y gris oscuro */
.btn-wa:hover, .btn-info:hover {
    color: #333 !important; /* Casi negro */
    transform: scale(1.1); /* Crece un poco */
    text-decoration: underline; /* Opcional: subraya al pasar el mouse */
}

/* Buscador */
.search-container {
    text-align: center;
    padding: 15px;
}

#buscador {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.search-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 15px;
}
#buscador, #filtroM2 {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}
#buscador { width: 60%; max-width: 300px; }
#filtroM2 { width: 35%; max-width: 150px; }
