/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* BODY */
body {
    background-color: #f4f6f8;
    
}

#google_translate_element{
    display: flex;
    justify-content: center;
}

/* CONTENEDOR PRINCIPAL */
.main-content {
    margin-left: 260px; /* ancho del sidebar */
}

.busquedaUsuarios {
    margin-top: 20px;
    text-align: center;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: auto;
}


.busqueda{
    height: 30px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px grey solid;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    
}

.buscar{
    width: 70px;
    height: 30px;
    background-color: rgb(255, 102, 0);
    border: none;
    border-radius: 10px;
}

#etiqueta, #categoria{
     height: 30px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px grey solid;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.cont{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.ref-web-old{
    font-size: 20px;
    margin-top: 20px;
    display: block;
    width: 100%;
    text-align: center;
    color: #111827;
}
/* GRID DE TARJETAS */

/* TARJETA */
.tarjeta {
    width: 600px;
    background: #ffffff;
    border-radius: 10px;
    margin-top: 50px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.tarjeta:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}



/* CONTENIDO */
.tarjeta h1 {
    font-size: 20px;
    padding: 15px;
    color: #111827;
}

.tarjeta .publisher {
    padding: 0 15px;
    font-size: 13px;
    color: #6b7280;
}

.tarjeta p,
.tarjeta .descripcion {
    padding: 0 15px 15px;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

/* TEXTO DESCRIPCIÓN DIRECTA */
.tarjeta br + text {
    display: none;
}

/* ENLACE IMAGEN */
.tarjeta a {
    display: block;
}

.buttons{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.buttons img{
    width: 50px;
    height: 50px;
}

/* FORM FILTRO */
.form-filtro {
    margin: 20px 0;
    display: flex;
    gap: 10px;
}

.form-filtro input[type="text"] {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
}

.form-filtro button {
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    background: #3b82f6;
    color: white;
    cursor: pointer;
}

.form-filtro button:hover {
    background: #2563eb;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .main-content {
        margin-left: 0;
    }

    .tarjetas-container {
        grid-template-columns: 1fr;
    }
}
