/* BUSCADOR */
.buscador {
    width: 40%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.buscador form {
    width: 100%;
    display: flex;
    gap: 8px;
}

.buscador-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    background: var(--card-background);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 0;
}

.buscador-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.buscador-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: fit-content;
}

.buscador-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}